kn-cli 1.0.38 → 1.0.39

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.
@@ -369,7 +369,6 @@ const plugins= [
369
369
  ...API_HOST,
370
370
  PM_TYPE: JSON.stringify(process.env.pm_type),
371
371
  }),
372
- new MiniCssExtractPlugin({ filename: `[name]${hashMode ? '-[chunkhash:8]' : ''}.css` }),
373
372
  new webpack.SourceMapDevToolPlugin({
374
373
  filename: 'sourcemap/[file].map',
375
374
  // publicPath: '..',//resource_path_relative,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kn-cli",
3
- "version": "1.0.38",
3
+ "version": "1.0.39",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/readme.md CHANGED
@@ -65,6 +65,9 @@ module.exports = {
65
65
  ```
66
66
 
67
67
  # 更新日志
68
+ * 1.0.39
69
+ 两个MiniCssExtractPlugin插件引起的sourcemap异常
70
+
68
71
  * 1.0.38
69
72
  编译环境被强制变为localdebug的问题
70
73