Skip to content
This repository has been archived by the owner on Nov 12, 2024. It is now read-only.

Commit

Permalink
Move test dependencies to devDependencies #35
Browse files Browse the repository at this point in the history
it is saving space in the final vsix binary

Signed-off-by: Aurélien Pupier <apupier@redhat.com>
  • Loading branch information
apupier committed Jul 9, 2019
1 parent 8a73877 commit 0e5c873
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 20 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ All notable changes to the "vscode-camelk" extension will be documented in this
- Added ability to 'refresh' the integrations view when Use Proxy is specified (using a GET rest API call through Kubernetes)
- Removed "Stop Camel-K Integration" menu, since it duplicates the "Remove Integration" menu on the integrations view
- Removed the streaming data from all integrations started in the VS Code workspace in favor of adding a "View log snapshot" menu for running integrations that opens a new Output channel and shows the Camel log up to that moment. This works for both proxied and local executable methods
- reduce size of extension by moving test dependencies to devDependencies

## 0.0.3

Expand Down
54 changes: 39 additions & 15 deletions package-lock.json

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

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -141,26 +141,26 @@
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha-jenkins-reporter": "^0.4.1",
"@types/chai": "^4.1.7",
"@types/mocha": "^2.2.42",
"@types/nock": "^10.0.3",
"@types/node": "^7.0.43",
"@types/sinon": "^7.0.13",
"@types/sinon-chai": "^3.2.2",
"nock": "^10.0.6",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"tslint": "^5.8.0"
},
"dependencies": {
"@types/nock": "^10.0.3",
"@types/request-promise": "^4.1.44",
"chai": "^4.2.0",
"child_process": "^1.0.2",
"path": "^0.12.7",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0"
"request-promise": "^4.2.4"
}
}

0 comments on commit 0e5c873

Please sign in to comment.