kn-cli 1.0.29 → 1.0.30

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.
@@ -102,7 +102,7 @@ const output= {
102
102
  };
103
103
  // 当非hash模式时,未防止chunk缓存,所以在资源后面增加参数用于区分
104
104
  if(!hashMode){
105
- output.chunkFilename = '[name].chunk.js?v='+NowDateTime;
105
+ output.chunkFilename = '[name].js?v='+NowDateTime;
106
106
  }
107
107
 
108
108
  ////////////// OUTPUT-END ///////////////
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kn-cli",
3
- "version": "1.0.29",
3
+ "version": "1.0.30",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/readme.md CHANGED
@@ -63,6 +63,7 @@ module.exports = {
63
63
  ```
64
64
 
65
65
  # 更新日志
66
+ * 1.0.30
66
67
  * 1.0.29
67
68
  1. 修复因多entry情况下,生成runtime会导致入口js变为chunk的问题
68
69