Skip to content

Commit

Permalink
Merge pull request #24 from dumlj/fix/example-deps
Browse files Browse the repository at this point in the history
fix: node types in example
  • Loading branch information
DavidKk authored Feb 28, 2024
2 parents d899b28 + bba4423 commit 32c922e
Show file tree
Hide file tree
Showing 16 changed files with 167 additions and 111 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
},
"devDependencies": {
"webpack": "^5.89.0",
"webpack-cli": "^5"
"webpack-cli": "^5",
"@types/node": "latest"
},
"optionalDependencies": {
"@babel/core": "^7.23.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"concurrently": "^8.2.2",
"express": "^4.18.2",
"http-proxy-middleware": "^2.0.6",
"webpack-cli": "^5"
"webpack-cli": "^5",
"@types/node": "latest"
},
"optionalDependencies": {
"@babel/core": "^7.23.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
},
"devDependencies": {
"webpack": "^5.89.0",
"webpack-cli": "^5"
"webpack-cli": "^5",
"@types/node": "latest"
},
"optionalDependencies": {
"@babel/core": "^7.23.2",
Expand Down
3 changes: 2 additions & 1 deletion @webpack-plugin/dts-webpack-plugin/__example__/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"typescript": "^5.2.2",
"typescript-transform-paths": "^3.4.6",
"webpack": "^5",
"webpack-cli": "^5"
"webpack-cli": "^5",
"@types/node": "latest"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"webpack-cli": "^5"
},
"devDependencies": {
"@types/webpack": "^5.28.4"
"@types/webpack": "^5.28.4",
"@types/node": "latest"
},
"optionalDependencies": {
"@babel/core": "^7.23.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
},
"devDependencies": {
"@types/webpack": "^5.28.4",
"serve-static-cli": "^1.0.2"
"serve-static-cli": "^1.0.2",
"@types/node": "latest"
},
"optionalDependencies": {
"@babel/core": "^7.23.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
},
"devDependencies": {
"@types/webpack": "^5.28.4",
"serve-static-cli": "^1.0.2"
"serve-static-cli": "^1.0.2",
"@types/node": "latest"
},
"optionalDependencies": {
"@babel/core": "^7.23.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
"webpack-cli": "^5"
},
"devDependencies": {
"@types/webpack": "^5.28.4"
"@types/webpack": "^5.28.4",
"@types/node": "latest"
},
"optionalDependencies": {
"@babel/core": "^7.23.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
"webpack-cli": "^5"
},
"devDependencies": {
"@types/webpack": "^5.28.4"
"@types/webpack": "^5.28.4",
"@types/node": "latest"
},
"optionalDependencies": {
"@babel/core": "^7.23.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
"webpack-cli": "^5"
},
"devDependencies": {
"@types/webpack": "^5.28.4"
"@types/webpack": "^5.28.4",
"@types/node": "latest"
},
"optionalDependencies": {
"@babel/core": "^7.23.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"@babel/preset-typescript": "^7.23.2",
"@babel/register": "^7.22.15",
"webpack": "^5",
"webpack-cli": "^5"
"webpack-cli": "^5",
"@types/node": "latest"
}
}
3 changes: 2 additions & 1 deletion @webpack-plugin/seed-webpack-plugin/__example__/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
},
"devDependencies": {
"webpack": "^5",
"webpack-cli": "^5"
"webpack-cli": "^5",
"@types/node": "latest"
},
"optionalDependencies": {
"@babel/core": "^7.23.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"webpack-dev-server": "4.x"
},
"devDependencies": {
"@types/webpack": "^5.28.4"
"@types/webpack": "^5.28.4",
"@types/node": "latest"
},
"optionalDependencies": {
"@babel/core": "^7.23.2",
Expand Down
3 changes: 2 additions & 1 deletion @webpack-plugin/zip-webpack-plugin/__example__/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"webpack-cli": "^5"
},
"devDependencies": {
"@types/webpack": "^5.28.4"
"@types/webpack": "^5.28.4",
"@types/node": "latest"
},
"optionalDependencies": {
"@babel/core": "^7.23.2",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"@dumlj/create-cli": "workspace:^2.5.22"
},
"devDependencies": {
"@types/node": "^20.10.1",
"@types/node": "latest",
"lodash": "^4.17.21",
"micromatch": "^4.0.5"
},
Expand Down
Loading

0 comments on commit 32c922e

Please sign in to comment.