Skip to content

Commit

Permalink
fix(): move webpack types to dev deps
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Mar 26, 2021
1 parent 43b0929 commit e39e95c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/compiler/defaults/webpack-defaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const webpackDefaultsFactory = (
output: {
filename: join(relativeSourceRoot, `${entryFilename}.js`),
},
externals: [nodeExternals()],
externals: [nodeExternals() as any],
module: {
rules: [
{
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nestjs/cli",
"version": "7.5.7",
"version": "7.5.7-next.1",
"description": "Nest - modern, fast, powerful node.js web framework (@cli)",
"publishConfig": {
"access": "public"
Expand Down Expand Up @@ -47,7 +47,6 @@
"@angular-devkit/schematics": "11.2.6",
"@angular-devkit/schematics-cli": "0.1102.6",
"@nestjs/schematics": "^7.3.0",
"@types/webpack": "5.0.0",
"chalk": "3.0.0",
"chokidar": "3.5.1",
"cli-table3": "0.5.1",
Expand Down Expand Up @@ -78,6 +77,7 @@
"@types/os-name": "3.1.0",
"@types/rimraf": "3.0.0",
"@types/shelljs": "0.8.8",
"@types/webpack": "5.0.0",
"@types/webpack-node-externals": "2.5.1",
"@typescript-eslint/eslint-plugin": "4.19.0",
"@typescript-eslint/parser": "4.19.0",
Expand Down

0 comments on commit e39e95c

Please sign in to comment.