Skip to content

Commit

Permalink
chore(wasm): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Jul 31, 2020
1 parent 236d7f1 commit 8ac8237
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 23 deletions.
17 changes: 10 additions & 7 deletions packages/wasm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"homepage": "https://github.com/rollup/plugins/tree/master/packages/wasm/#readme",
"bugs": "https://github.com/rollup/plugins/issues",
"main": "dist/index.js",
"module": "dist/index.es.js",
"engines": {
"node": ">=10.0.0"
},
Expand All @@ -21,7 +22,7 @@
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
"ci:test": "pnpm run test -- --verbose",
"lint": "pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package",
"lint:docs": "prettier --single-quote --write README.md",
"lint:docs": "prettier --single-quote --arrow-parens avoid --write README.md",
"lint:js": "eslint --fix --cache src test --ext .js,.ts",
"lint:package": "prettier --write package.json --plugin=prettier-plugin-package",
"prebuild": "del-cli dist",
Expand Down Expand Up @@ -50,12 +51,16 @@
"rollup": "^1.20.0 || ^2.0.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^4.1.1",
"del-cli": "^3.0.0",
"rollup": "^2.0.0",
"@rollup/plugin-typescript": "^5.0.2",
"del-cli": "^3.0.1",
"rollup": "^2.23.0",
"source-map": "^0.7.3"
},
"types": "types/index.d.ts",
"ava": {
"babel": {
"compileEnhancements": false
},
"files": [
"!**/fixtures/**",
"!**/helpers/**",
Expand All @@ -66,7 +71,5 @@
"contributors": [
"Jamen Marz <jamenmarz+gh@gmail.com>",
"Colin Eberhardt <colin.eberhardt@gmail.com>"
],
"module": "dist/index.es.js",
"types": "types/index.d.ts"
]
}
2 changes: 2 additions & 0 deletions packages/wasm/test/fixtures/worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ const realProcess = process;
// eslint-disable-next-line no-global-assign, no-undefined
process = undefined;
sample({});
// eslint-disable-next-line no-global-assign
process = realProcess;
realProcess.exit(0);
18 changes: 2 additions & 16 deletions pnpm-lock.yaml

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

0 comments on commit 8ac8237

Please sign in to comment.