Tryna get export right

This commit is contained in:
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 ## 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", "name": "unitfile-parser",
"version": "1.0.2", "version": "1.0.3",
"description": "Parse systemd unit files", "description": "Parse systemd unit files",
"main": "src/mod.mjs", "main": "./src/mod.mjs",
"exports": "src/mod.mjs", "exports": "./src/mod.mjs",
"scripts": { "scripts": {
"test": "./scripts/run-tests" "test": "./scripts/run-tests"
}, },