netlify-cli 17.18.0 → 17.18.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/dev/dev.js +2 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/npm-shrinkwrap.json +532 -15
- package/package.json +2 -2
package/dist/commands/dev/dev.js
CHANGED
|
@@ -104,9 +104,9 @@ export const dev = async (options, command) => {
|
|
|
104
104
|
settings = await detectServerSettings(devConfig, options, command);
|
|
105
105
|
if (process.env.NETLIFY_INCLUDE_DEV_SERVER_PLUGIN) {
|
|
106
106
|
if (options.debug) {
|
|
107
|
-
log(`${NETLIFYDEVLOG} Including dev server plugin`);
|
|
107
|
+
log(`${NETLIFYDEVLOG} Including dev server plugin: ${process.env.NETLIFY_INCLUDE_DEV_SERVER_PLUGIN}`);
|
|
108
108
|
}
|
|
109
|
-
settings.plugins = [...(settings.plugins || []),
|
|
109
|
+
settings.plugins = [...(settings.plugins || []), process.env.NETLIFY_INCLUDE_DEV_SERVER_PLUGIN];
|
|
110
110
|
}
|
|
111
111
|
cachedConfig.config = getConfigWithPlugins(cachedConfig.config, settings);
|
|
112
112
|
}
|