Skip to content

Commit

Permalink
refactor: move @types/node to be a devDependency
Browse files Browse the repository at this point in the history
  • Loading branch information
virkt25 committed Apr 10, 2018
1 parent 8ad1b86 commit 59b9e9f
Show file tree
Hide file tree
Showing 19 changed files with 28 additions and 15 deletions.
2 changes: 1 addition & 1 deletion examples/hello-world/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
},
"devDependencies": {
"@loopback/build": "^0.4.2",
"@types/node": "^8.10.2"
"@types/node": "^8.10.4"
},
"keywords": [
"loopback",
Expand Down
1 change: 1 addition & 0 deletions examples/log-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"@loopback/build": "^0.4.2",
"@loopback/testlab": "^0.5.3",
"@types/debug": "0.0.30",
"@types/node": "^8.10.4",
"source-map-support": "^0.5.4"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion examples/rpc-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"@loopback/build": "^0.4.2",
"@loopback/testlab": "^0.5.3",
"@types/express": "^4.11.1",
"@types/node": "^8.10.2",
"@types/node": "^8.10.4",
"@types/p-event": "^1.3.0",
"source-map-support": "^0.5.4"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/todo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"devDependencies": {
"@loopback/build": "^0.4.2",
"@loopback/testlab": "^0.5.3",
"@types/node": "^8.10.2",
"@types/node": "^8.10.4",
"source-map-support": "^0.5.4",
"typescript": "^2.6.2"
},
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
"@commitlint/config-conventional": "^6.1.3",
"@commitlint/config-lerna-scopes": "^6.1.3",
"@types/mocha": "^5.0.0",
"@types/node": "^8.10.0",
"coveralls": "^3.0.0",
"cz-conventional-changelog": "^2.1.0",
"lerna": "^2.9.1"
Expand Down
1 change: 1 addition & 0 deletions packages/authentication/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"@loopback/build": "^0.4.2",
"@loopback/openapi-spec-builder": "^0.4.3",
"@loopback/testlab": "^0.5.3",
"@types/node": "^8.10.4",
"@types/passport": "^0.4.4",
"@types/passport-http": "^0.3.6",
"passport-http": "^0.3.0"
Expand Down
3 changes: 2 additions & 1 deletion packages/boot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
"@loopback/build": "^0.4.2",
"@loopback/openapi-v3": "^0.5.3",
"@loopback/rest": "^0.5.3",
"@loopback/testlab": "^0.5.3"
"@loopback/testlab": "^0.5.3",
"@types/node": "^8.10.4"
},
"files": [
"README.md",
Expand Down
2 changes: 1 addition & 1 deletion packages/build/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"license": "MIT",
"dependencies": {
"@types/mocha": "^5.0.0",
"@types/node": "^8.10.2",
"@types/node": "^8.10.4",
"cross-spawn": "^6.0.5",
"debug": "^3.1.0",
"fs-extra": "^5.0.0",
Expand Down
1 change: 1 addition & 0 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"devDependencies": {
"@loopback/build": "^0.4.2",
"@loopback/testlab": "^0.5.3",
"@types/node": "^8.10.4",
"eslint-config-google": "^0.9.1",
"glob": "^7.1.2",
"mem-fs": "^1.1.3",
Expand Down
1 change: 1 addition & 0 deletions packages/context/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"devDependencies": {
"@loopback/build": "^0.4.2",
"@loopback/testlab": "^0.5.3",
"@types/node": "^8.10.4",
"@types/bluebird": "^3.5.20",
"@types/debug": "^0.0.30",
"@types/uuid": "^3.4.3",
Expand Down
3 changes: 2 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
},
"devDependencies": {
"@loopback/build": "^0.4.2",
"@loopback/testlab": "^0.5.3"
"@loopback/testlab": "^0.5.3",
"@types/node": "^8.10.4"
},
"files": [
"README.md",
Expand Down
3 changes: 2 additions & 1 deletion packages/metadata/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
"@loopback/build": "^0.4.2",
"@loopback/testlab": "^0.5.3",
"@types/debug": "^0.0.30",
"@types/lodash": "^4.14.106"
"@types/lodash": "^4.14.106",
"@types/node": "^8.10.4"
},
"keywords": [
"LoopBack",
Expand Down
3 changes: 2 additions & 1 deletion packages/openapi-spec-builder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
"@loopback/openapi-v3-types": "^0.3.3"
},
"devDependencies": {
"@loopback/build": "^0.4.2"
"@loopback/build": "^0.4.2",
"@types/node": "^8.10.4"
},
"files": [
"README.md",
Expand Down
3 changes: 2 additions & 1 deletion packages/openapi-v3-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"openapi3-ts": "^0.8.0"
},
"devDependencies": {
"@loopback/build": "^0.4.2"
"@loopback/build": "^0.4.2",
"@types/node": "^8.10.4"
},
"scripts": {
"build": "lb-tsc es2017",
Expand Down
3 changes: 2 additions & 1 deletion packages/openapi-v3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"@loopback/repository": "^0.5.0",
"@loopback/testlab": "^0.5.3",
"@types/debug": "0.0.30",
"@types/lodash": "^4.14.106"
"@types/lodash": "^4.14.106",
"@types/node": "^8.10.4"
},
"scripts": {
"build": "lb-tsc es2017",
Expand Down
3 changes: 2 additions & 1 deletion packages/repository-json-schema/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
"devDependencies": {
"@loopback/build": "^0.4.2",
"@loopback/testlab": "^0.5.3",
"@types/lodash": "^4.14.106"
"@types/lodash": "^4.14.106",
"@types/node": "^8.10.4"
},
"files": [
"README.md",
Expand Down
3 changes: 2 additions & 1 deletion packages/repository/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
"license": "MIT",
"devDependencies": {
"@loopback/build": "^0.4.2",
"@loopback/testlab": "^0.5.3"
"@loopback/testlab": "^0.5.3",
"@types/node": "^8.10.4"
},
"dependencies": {
"@loopback/context": "^0.5.3",
Expand Down
3 changes: 2 additions & 1 deletion packages/rest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
"@loopback/testlab": "^0.5.3",
"@types/debug": "0.0.30",
"@types/js-yaml": "^3.11.1",
"@types/lodash": "^4.14.106"
"@types/lodash": "^4.14.106",
"@types/node": "^8.10.4"
},
"files": [
"README.md",
Expand Down
3 changes: 2 additions & 1 deletion packages/testlab/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
"swagger2openapi": "^2.11.16"
},
"devDependencies": {
"@loopback/build": "^0.4.2"
"@loopback/build": "^0.4.2",
"@types/node": "^8.10.4"
},
"files": [
"README.md",
Expand Down

0 comments on commit 59b9e9f

Please sign in to comment.