@web/dev-server
Advanced tools
Comparing version 0.0.16 to 0.0.17
# @web/dev-server | ||
## 0.0.17 | ||
### Patch Changes | ||
- 835d16f: add koa types dependency | ||
- Updated dependencies [835d16f] | ||
- @web/dev-server-core@0.2.14 | ||
## 0.0.16 | ||
@@ -4,0 +12,0 @@ |
@@ -54,2 +54,3 @@ "use strict"; | ||
finalConfig.rootDir = path_1.default.resolve(finalConfig.rootDir); | ||
console.log('resolved', finalConfig.rootDir); | ||
} | ||
@@ -56,0 +57,0 @@ // generate a default random port |
@@ -28,7 +28,7 @@ "use strict"; | ||
debugLogging: false, | ||
clearTerminalOnReload: !!config.clearTerminalOnReload, | ||
clearTerminalOnReload: !!config.watch && !!config.clearTerminalOnReload, | ||
logStartMessage: !!logStartMessage, | ||
}); | ||
config.plugins = (_a = config.plugins) !== null && _a !== void 0 ? _a : []; | ||
config.plugins.push(loggerPlugin); | ||
config.plugins.unshift(loggerPlugin); | ||
const server = new dev_server_core_1.DevServer(config, logger); | ||
@@ -35,0 +35,0 @@ if (autoExitProcess) { |
{ | ||
"name": "@web/dev-server", | ||
"version": "0.0.16", | ||
"version": "0.0.17", | ||
"publishConfig": { | ||
@@ -57,3 +57,3 @@ "access": "public" | ||
"@web/dev-server-cli": "^0.0.3", | ||
"@web/dev-server-core": "^0.2.13", | ||
"@web/dev-server-core": "^0.2.14", | ||
"@web/dev-server-rollup": "^0.2.10", | ||
@@ -60,0 +60,0 @@ "camelcase": "^6.0.0", |
@@ -67,2 +67,3 @@ import { getPortPromise } from 'portfinder'; | ||
finalConfig.rootDir = path.resolve(finalConfig.rootDir); | ||
console.log('resolved', finalConfig.rootDir); | ||
} | ||
@@ -69,0 +70,0 @@ |
@@ -67,7 +67,7 @@ import { DevServer } from '@web/dev-server-core'; | ||
debugLogging: false, | ||
clearTerminalOnReload: !!config.clearTerminalOnReload, | ||
clearTerminalOnReload: !!config.watch && !!config.clearTerminalOnReload, | ||
logStartMessage: !!logStartMessage, | ||
}); | ||
config.plugins = config.plugins ?? []; | ||
config.plugins.push(loggerPlugin); | ||
config.plugins.unshift(loggerPlugin); | ||
@@ -74,0 +74,0 @@ const server = new DevServer(config, logger); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
75775
1275
Updated@web/dev-server-core@^0.2.14