Tryna get export right

main
Benjamin Bädorf 2020-11-25 16:29:32 +01:00
parent 151e691727
commit 148157d0fd
No known key found for this signature in database
GPG Key ID: 4406E80E13CD656C
2 changed files with 4 additions and 4 deletions

View File

@ -119,5 +119,5 @@ Function that takes a parser and returns a visitor for that parser that would no
## Motivation
There already is a `systemd-unitfile` package on npm, but it is unmaintainted and has some bad behaviour, like not recognizing multiline values.
There already is a `systemd-unitfile` package on npm, but it is unmaintained and has some bad behaviour, like not recognizing multiline values.

View File

@ -1,9 +1,9 @@
{
"name": "unitfile-parser",
"version": "1.0.2",
"version": "1.0.3",
"description": "Parse systemd unit files",
"main": "src/mod.mjs",
"exports": "src/mod.mjs",
"main": "./src/mod.mjs",
"exports": "./src/mod.mjs",
"scripts": {
"test": "./scripts/run-tests"
},