Skip to content
This repository has been archived by the owner on Aug 4, 2021. It is now read-only.

Commit

Permalink
Update rollup-pluginutils to support null values in json (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
jnields authored and lukastaegert committed Sep 13, 2018
1 parent 2b2fd1c commit 8de10c0
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -34,6 +34,6 @@
"license": "MIT",
"repository": "rollup/rollup-plugin-json",
"dependencies": {
"rollup-pluginutils": "^2.2.0"
"rollup-pluginutils": "^2.3.0"
}
}
3 changes: 2 additions & 1 deletion test/samples/form/customIndent.js
Expand Up @@ -11,5 +11,6 @@ export default {
"invalid-key": 1,
nested: nested,
array: array,
"function": "not used"
"function": "not used",
"null": null
};
3 changes: 2 additions & 1 deletion test/samples/form/default.js
Expand Up @@ -11,5 +11,6 @@ export default {
"invalid-key": 1,
nested: nested,
array: array,
"function": "not used"
"function": "not used",
"null": null
};
3 changes: 2 additions & 1 deletion test/samples/form/input.json
Expand Up @@ -5,5 +5,6 @@
"subKey": "ok"
},
"array": [1, "2"],
"function": "not used"
"function": "not used",
"null": null
}
3 changes: 2 additions & 1 deletion test/samples/form/preferConst.js
Expand Up @@ -11,5 +11,6 @@ export default {
"invalid-key": 1,
nested: nested,
array: array,
"function": "not used"
"function": "not used",
"null": null
};

0 comments on commit 8de10c0

Please sign in to comment.