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

Commit

Permalink
Update to latest version of rollup-pluginutils
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed May 11, 2018
1 parent fb60b3e commit 032da3d
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 20 deletions.
14 changes: 4 additions & 10 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 @@ -29,7 +29,7 @@
"license": "MIT",
"repository": "rollup/rollup-plugin-json",
"dependencies": {
"rollup-pluginutils": "^2.1.1"
"rollup-pluginutils": "^2.2.0"
},
"peerDependencies": {
"rollup": "< 0.59.0"
Expand Down
10 changes: 7 additions & 3 deletions test/samples/form/customIndent.js
@@ -1,7 +1,11 @@
export var validKey = true;
export var nested = { subKey:"ok" };
export var array = [ 1,
"2" ];
export var nested = {
subKey: "ok"
};
export var array = [
1,
"2"
];
export default {
validKey: validKey,
"invalid-key": 1,
Expand Down
10 changes: 7 additions & 3 deletions test/samples/form/default.js
@@ -1,7 +1,11 @@
export var validKey = true;
export var nested = {subKey:"ok" };
export var array = [1,
"2" ];
export var nested = {
subKey: "ok"
};
export var array = [
1,
"2"
];
export default {
validKey: validKey,
"invalid-key": 1,
Expand Down
10 changes: 7 additions & 3 deletions test/samples/form/preferConst.js
@@ -1,7 +1,11 @@
export const validKey = true;
export const nested = {subKey:"ok" };
export const array = [1,
"2" ];
export const nested = {
subKey: "ok"
};
export const array = [
1,
"2"
];
export default {
validKey: validKey,
"invalid-key": 1,
Expand Down

0 comments on commit 032da3d

Please sign in to comment.