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

Commit

Permalink
fix: use rollup to bundle worker and main
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Apr 5, 2021
1 parent 1d9db83 commit 376dbae
Show file tree
Hide file tree
Showing 4 changed files with 709 additions and 4 deletions.
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@
"test.lint": "eslint .",
"test": "npm run build && atom --test spec",
"clean": "shx rm -rf dist",
"dev": "npm run build -- --watch",
"build": "tsc -p lib/tsconfig.json || echo done",
"tsc.dev": "npm run build -- --watch",
"tsc.build": "tsc -p lib/tsconfig.json || echo done",
"dev": "npm run clean && cross-env NODE_ENV=development rollup -c -w",
"build": "npm run clean && cross-env NODE_ENV=production rollup -c",
"build-commit": "build-commit -o dist",
"prepare": "npm run build"
},
Expand Down Expand Up @@ -59,9 +61,12 @@
"@types/node": "^14.14.37",
"@types/resolve": "^1.20.0",
"build-commit": "^0.1.4",
"cross-env": "^7.0.3",
"eslint": "7.23.0",
"eslint-config-atomic": "^1.12.5",
"jasmine-fix": "1.3.1",
"rollup": "^2.44.0",
"rollup-plugin-atomic": "^2.2.0",
"shx": "^0.3.3"
},
"eslintConfig": {
Expand Down
Loading

0 comments on commit 376dbae

Please sign in to comment.