Skip to content
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

Move GPU.js to devDependencies and add it to optionalDependencies. #644

Merged
merged 2 commits into from
Apr 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed
- **Breaking change**: Moved `GPU.js` from `dependencies` to `devDependencies` and `optionalDependencies`. (#642)

### Added
- Added two new fired events, for suspending and resuming execution. (#637)

Expand Down
2 changes: 1 addition & 1 deletion docs/guide/dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ features.
| Name | License | Author |
| :--- | :--- | :--- |
| [Chevrotain](https://github.com/SAP/chevrotain) | Apache v2.0 | SAP SE or an SAP affiliate company |
| [GPU.js](https://github.com/gpujs/gpu.js/) | The MIT License | gpu.js Team |
| [GPU.js](https://github.com/gpujs/gpu.js/) ([optional](enabling-gpu-acceleration.md)) | The MIT License | gpu.js Team |
| [core-js](https://github.com/zloirock/core-js) | The MIT License | Denis Pushkarev |
| [tiny-emitter](https://github.com/scottcorgan/tiny-emitter) | The MIT License | Scott Corgan |
| [regenerator-runtime](https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime) | The MIT License | Facebook, Inc. |
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@
"eslint": "^6.8.0",
"eslint-plugin-license-header": "^0.2.0",
"full-icu": "^1.3.1",
"gpu.js": "2.3.0",
"jasmine": "^3.5.0",
"jest": "^26.1.0",
"jsdom": "^16.2.2",
Expand Down Expand Up @@ -142,8 +143,10 @@
"dependencies": {
"chevrotain": "^6.5.0",
"core-js": "^3.6.4",
"gpu.js": "2.3.0",
"regenerator-runtime": "^0.13.3",
"tiny-emitter": "^2.1.0"
},
"optionalDependencies": {
"gpu.js": "2.3.0"
}
}