Skip to content

Commit

Permalink
Enable prettier for package.json and rollup.config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
fheft committed Sep 15, 2021
1 parent d7ae3f1 commit 1e1c68a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
2 changes: 0 additions & 2 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
package.json
package-lock.json
rollup.config.js
14 changes: 5 additions & 9 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ export default [
format: "umd",
name: "tales",
sourcemap: true,
}
},
],
plugins: [
resolve({
dedupe: ["flyps"]
dedupe: ["flyps"],
}),
commonjs(),
babel({ exclude: "node_modules/**" })
babel({ exclude: "node_modules/**" }),
],
},
{
Expand All @@ -30,13 +30,9 @@ export default [
format: "cjs",
name: "tales-desktop",
sourcemap: true,
}
},
],
external: ["child_process", "electron", "path"],
plugins: [
resolve(),
commonjs(),
babel({ exclude: "node_modules/**" })
],
plugins: [resolve(), commonjs(), babel({ exclude: "node_modules/**" })],
},
];

0 comments on commit 1e1c68a

Please sign in to comment.