@tmsfe/tmskit 0.0.19 → 0.0.20
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 +6 -1
- package/dist/index.cjs.js +963 -812
- package/package.json +10 -8
- package/src/compile/build.js +2 -2
- package/src/compile/dev.js +30 -25
- package/src/compile/watch.js +31 -12
- package/src/config/constant.js +24 -3
- package/src/core/buildAppJson.js +14 -21
- package/src/core/checkDependencies.js +34 -17
- package/src/core/cloneModules.js +5 -7
- package/src/core/handleError.js +7 -1
- package/src/core/npm.js +7 -2
- package/src/core/tmsMpconfig.js +87 -74
- package/src/entry.js +3 -3
- package/src/scripts/create/generator.js +1 -2
- package/src/scripts/create/index.js +73 -32
- package/src/scripts/run/build/index.js +5 -4
- package/src/scripts/run/dev/index.js +14 -13
- package/src/scripts/run/index.js +68 -54
- package/src/scripts/run/init/index.js +13 -12
- package/src/scripts/run/install/index.js +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -42,4 +42,9 @@
|
|
|
42
42
|
* 修改模板名称tmskit-template
|
|
43
43
|
* tms.private.config.js 作为 tms.config.js的复写文件,不再是补充文件
|
|
44
44
|
* module.config.json 支持`preloadRule`字段
|
|
45
|
-
* 处理miniprogram_npm 不构建问题
|
|
45
|
+
* 处理miniprogram_npm 不构建问题
|
|
46
|
+
11. [0.0.20]
|
|
47
|
+
* tmskit create 支持创建模块
|
|
48
|
+
* 模板压缩zip包,存到cdn,支持外部同学下载
|
|
49
|
+
* package.json更新时,判断版本变动,然后给出重新tmskit run dev的提示
|
|
50
|
+
* module.config.json增加分包的描述文件
|