Skip to content

Commit

Permalink
Fix wasm js bundle name bug
Browse files Browse the repository at this point in the history
  • Loading branch information
skycloud1030 committed Jan 15, 2020
1 parent b5f4be2 commit 4fb8b4a
Show file tree
Hide file tree
Showing 4 changed files with 630 additions and 633 deletions.
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,27 +28,27 @@
"jest": "jest --coverage"
},
"devDependencies": {
"@babel/core": "^7.8.0",
"@babel/plugin-proposal-class-properties": "^7.8.0",
"@babel/plugin-proposal-decorators": "^7.8.0",
"@babel/plugin-proposal-do-expressions": "^7.8.0",
"@babel/plugin-proposal-export-default-from": "^7.8.0",
"@babel/plugin-proposal-export-namespace-from": "^7.8.0",
"@babel/plugin-proposal-function-bind": "^7.8.0",
"@babel/plugin-proposal-function-sent": "^7.8.0",
"@babel/plugin-proposal-json-strings": "^7.8.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.8.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.0",
"@babel/plugin-proposal-numeric-separator": "^7.8.0",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/plugin-proposal-pipeline-operator": "^7.7.7",
"@babel/plugin-proposal-throw-expressions": "^7.8.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.0",
"@babel/plugin-syntax-import-meta": "^7.8.0",
"@babel/plugin-transform-async-to-generator": "^7.8.0",
"@babel/plugin-transform-runtime": "^7.8.0",
"@babel/preset-env": "^7.8.0",
"@babel/runtime": "^7.8.0",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-do-expressions": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-function-bind": "^7.8.3",
"@babel/plugin-proposal-function-sent": "^7.8.3",
"@babel/plugin-proposal-json-strings": "^7.8.3",
"@babel/plugin-proposal-logical-assignment-operators": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-proposal-pipeline-operator": "^7.8.3",
"@babel/plugin-proposal-throw-expressions": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/runtime": "^7.8.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.0",
"coveralls": "^3.0.9",
Expand Down
2 changes: 1 addition & 1 deletion wasm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ emcc compare.c -o ./dist/array-includes-any.js --post-js post.js -O3 -s WASM=1 -
- Support Both node.js & webpack

```sh
rollup array-includes-any.js --file array-includes-any.esm.js --format umd --name "arrayIA"
rollup array-includes-any.js --file array-includes-any.esm.js --format umd --name arrayIA
```
2 changes: 1 addition & 1 deletion wasm/dist/array-includes-any.esm.js

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

Loading

0 comments on commit 4fb8b4a

Please sign in to comment.