@cocojs/cli 0.0.1-alpha.16 → 0.0.1-alpha.17

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.
@@ -299,7 +299,8 @@ var buildInConfig = {
299
299
  loader: require.resolve('ts-loader'),
300
300
  options: {
301
301
  context: process.cwd(),
302
- transpileOnly: false
302
+ // TODO: 如果开启类型检查的话,编译过程会比较慢,待优化
303
+ transpileOnly: true
303
304
  }
304
305
  }, {
305
306
  loader: require.resolve('@cocojs/webpack-loader-mvc')
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cocojs/cli",
3
3
  "description": "命令行工具,支持开发和构建功能",
4
- "version": "0.0.1-alpha.16",
4
+ "version": "0.0.1-alpha.17",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "bin": {
@@ -45,7 +45,7 @@
45
45
  "webpack-merge": "^6.0.1",
46
46
  "@cocojs/rollup-plugin-mvc": "0.0.1-alpha.7",
47
47
  "@cocojs/type-extractor": "0.0.16",
48
- "@cocojs/webpack-loader-mvc": "0.0.1-alpha.5"
48
+ "@cocojs/webpack-loader-mvc": "0.0.1-alpha.6"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@types/node": "^22.15.18"