-
Notifications
You must be signed in to change notification settings - Fork 201
Implement threads.js and parcel-bundler #131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
3c31602
refactor: implement Pool with threads.js
PacoDu e35f431
test: add worker pool test
PacoDu 03c0648
refactor: implement pool with threadjs
PacoDu 829257c
chore: remove worker-loader
PacoDu f0ba72c
tests: force tests to fail at the right step
PacoDu c6da7fa
chore: lint
PacoDu 19a56e8
fix: build
PacoDu 0a9bcdb
chore: add browser target to package.json
PacoDu 1030807
chore: configure polyfill with core-js instead of @babel/polyfill
PacoDu c659360
tests: disable worker test, not working with mocha 7.1
PacoDu e45c517
feat: parcel-bundler working with same features as webpack
PacoDu f5bd519
chore: cleanup webpack artifacts
PacoDu f3f7094
chore: cleanup and small fixes
PacoDu 18e72af
chore: remove core-js (not necessary with parcel)
PacoDu 148d933
chore: set prepublish to prepublishOnly to prevent double build on np…
PacoDu a8f2eb1
doc: update README to match parcel-bundler configuration
PacoDu 6eb6717
chore: upgrade thread.js dependency to 1.3.1
PacoDu 2056d48
chore: remove regenerator-runtime and swithc back to babel plugin-tra…
PacoDu 5535774
chore: remove unecessary index from import
PacoDu ab6fd32
chore: add missing changes to babelrc and main, set dev port to 8090
PacoDu be71193
chore: remove unused lzw test file
PacoDu d382901
chore: remove unnecessary *tif from test/.gitignore
PacoDu 2afabed
chore: remove eslint fix quirks
PacoDu 157d0ab
chore: apply eslint rule curly 'all' and brace-style 1tbs
PacoDu bbd5a9c
chore: resolve merge conflicts
PacoDu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,4 @@ | ||
{ | ||
"presets": ["env"], | ||
"plugins": [ | ||
[ | ||
"transform-runtime", | ||
{ | ||
"polyfill": false, | ||
"regenerator": true | ||
} | ||
] | ||
] | ||
"presets": ["@babel/preset-env"], | ||
"plugins": ["@babel/plugin-transform-runtime"] | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
node_modules | ||
dist/ | ||
.cache | ||
dist | ||
dist-node | ||
dist-browser | ||
.DS_Store |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.