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 mocha to devDependencies to prevent downstream errors #441

Merged
merged 7 commits into from Feb 20, 2019
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -10,6 +10,7 @@

### Bug fixes

- Move mocha dependencies to devDependencies (https://github.com/pulumi/pulumi-kubernetes/pull/441)
- Include managed-by label in diff preview (https://github.com/pulumi/pulumi-kubernetes/pull/431)

## 0.20.2 (Released February 13, 2019)
Expand Down
4 changes: 2 additions & 2 deletions pkg/gen/nodejs-templates/package.json.mustache
Expand Up @@ -21,12 +21,12 @@
"@types/tmp": "^0.0.33",
"glob": "^7.1.2",
"@types/glob": "^5.0.35",
"mocha": "^5.2.0",
"@types/mocha": "^5.2.5",
"node-fetch": "^2.3.0",
"@types/node-fetch": "^2.1.4"
},
"devDependencies": {
"mocha": "^5.2.0",
"@types/mocha": "^5.2.5",
"typescript": "^2.6.2",
"@types/shell-quote": "^1.6.0"
},
Expand Down
4 changes: 2 additions & 2 deletions sdk/nodejs/package.json
Expand Up @@ -21,12 +21,12 @@
"@types/tmp": "^0.0.33",
"glob": "^7.1.2",
"@types/glob": "^5.0.35",
"mocha": "^5.2.0",
"@types/mocha": "^5.2.5",
"node-fetch": "^2.3.0",
"@types/node-fetch": "^2.1.4"
},
"devDependencies": {
"mocha": "^5.2.0",
"@types/mocha": "^5.2.5",
"typescript": "^2.6.2",
"@types/shell-quote": "^1.6.0"
},
Expand Down