Skip to content

Commit

Permalink
feat: set default value for 'manualRestart' to false
Browse files Browse the repository at this point in the history
  • Loading branch information
m4tt72 committed May 16, 2023
1 parent 8148e82 commit 6e3e397
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/configuration/defaults.ts
Expand Up @@ -15,7 +15,7 @@ export const defaultConfiguration: Required<Configuration> = {
webpackConfigPath: 'webpack.config.js',
plugins: [],
assets: [],
manualRestart: true,
manualRestart: false,
},
generateOptions: {},
};
Expand Down
4 changes: 2 additions & 2 deletions test/lib/configuration/nest-configuration.loader.spec.ts
Expand Up @@ -52,7 +52,7 @@ describe('Nest Configuration Loader', () => {
tsConfigPath: 'tsconfig.json',
webpack: false,
webpackConfigPath: 'webpack.config.js',
manualRestart: true,
manualRestart: false,
},
generateOptions: {},
});
Expand All @@ -77,7 +77,7 @@ describe('Nest Configuration Loader', () => {
tsConfigPath: 'tsconfig.json',
webpack: false,
webpackConfigPath: 'webpack.config.js',
manualRestart: true,
manualRestart: false,
},
generateOptions: {},
});
Expand Down

0 comments on commit 6e3e397

Please sign in to comment.