@tmsfe/tmskit 0.0.14 → 0.0.15-beta.3
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/CHANGELOG.md +10 -1
- package/dist/index.cjs.js +466 -440
- package/package.json +4 -2
- package/src/compile/compile.js +56 -35
- package/src/compile/dev.js +25 -21
- package/src/compile/watch.js +31 -14
- package/src/core/buildAppJson.js +3 -0
- package/src/entry.js +1 -1
- package/src/scripts/run/dev/index.js +12 -9
- package/src/scripts/run/init/index.js +26 -2
- package/src/scripts/run/install/index.js +2 -9
- package/src/utils/log.js +4 -4
- package/src/utils/widgets.js +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -20,4 +20,13 @@
|
|
|
20
20
|
* 日志添加时间戳
|
|
21
21
|
* 编译代码有更新时,增加提示日志
|
|
22
22
|
* 删除源码文件或文件夹时,支持监听文件变动,删除编译文件
|
|
23
|
-
* fix window中tar命令的兼容性问题
|
|
23
|
+
* fix window中tar命令的兼容性问题
|
|
24
|
+
7. [0.0.15]
|
|
25
|
+
* 删除原函数软连功能
|
|
26
|
+
* fix 修复dist node_module.tar.gz没有删除bug
|
|
27
|
+
8. [-]
|
|
28
|
+
* fix: 日志打印多空行问题
|
|
29
|
+
* add: 增加--noCache的参数,支持不使用缓存运行dev
|
|
30
|
+
* add: package.json、module.config.json更新后,提示重新启动dev
|
|
31
|
+
* fix: gulp-watch更新某个文件时,编译多个文件的问题
|
|
32
|
+
* 策略:拉取第三方代码,dev流程都会执行
|