Skip to content

Commit

Permalink
fix(package): [email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
arlac77 committed Jan 2, 2019
1 parent 6bdb0fb commit 26dc0e7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 15 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"test": "ava"
},
"dependencies": {
"expression-expander": "^6.1.2",
"expression-expander": "^7.0.0",
"pratt-parser": "^7.0.9"
},
"devDependencies": {
Expand Down
27 changes: 13 additions & 14 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,26 +1,25 @@
import json from "rollup-plugin-json";
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import executable from 'rollup-plugin-executable';
import cleanup from 'rollup-plugin-cleanup';
import pkg from './package.json';
import resolve from "rollup-plugin-node-resolve";
import commonjs from "rollup-plugin-commonjs";
import executable from "rollup-plugin-executable";
import cleanup from "rollup-plugin-cleanup";
import pkg from "./package.json";

export default {
output: {
file: pkg.main,
format: 'cjs',
format: "cjs",
interop: false
},
plugins: [resolve(), commonjs(), cleanup()],
external: [
'os',
'util',
'child_process',
'path',
'fs',
'crypto',
'expression-expander',
'pratt-parser'
"os",
"util",
"child_process",
"path",
"fs",
"crypto",
"pratt-parser"
],
input: pkg.module
};

0 comments on commit 26dc0e7

Please sign in to comment.