@cocos/ccbuild 1.1.4 → 1.1.6

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.
Files changed (52) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +14 -14
  3. package/lib/api-builder.js +1 -1
  4. package/lib/build-engine/engine-js/index.d.ts +2 -2
  5. package/lib/build-engine/engine-js/index.d.ts.map +1 -1
  6. package/lib/build-engine/engine-js/index.js +412 -413
  7. package/lib/build-engine/engine-js/index.js.map +1 -1
  8. package/lib/build-engine/engine-js/rollup-plugins/external-wasm-loader.d.ts +40 -36
  9. package/lib/build-engine/engine-js/rollup-plugins/external-wasm-loader.d.ts.map +1 -1
  10. package/lib/build-engine/engine-js/rollup-plugins/external-wasm-loader.js +92 -91
  11. package/lib/build-engine/engine-js/rollup-plugins/external-wasm-loader.js.map +1 -1
  12. package/lib/build-engine/engine-js/rollup-plugins/remove-deprecated-features.d.ts +2 -2
  13. package/lib/build-engine/engine-js/rollup-plugins/remove-deprecated-features.js +37 -37
  14. package/lib/build-engine/engine-js/rollup-plugins/ts-paths.d.ts +4 -4
  15. package/lib/build-engine/engine-js/rollup-plugins/ts-paths.js +42 -42
  16. package/lib/build-engine/engine-ts/engine-builder.d.ts +57 -57
  17. package/lib/build-engine/engine-ts/engine-builder.js +631 -631
  18. package/lib/build-engine/engine-ts/field-decorator-helper.d.ts +9 -9
  19. package/lib/build-engine/engine-ts/field-decorator-helper.js +54 -54
  20. package/lib/build-engine/engine-ts/index.d.ts +2 -2
  21. package/lib/build-engine/engine-ts/index.js +34 -34
  22. package/lib/build-engine/engine-ts/plugins/external-wasm-loader.d.ts +6 -6
  23. package/lib/build-engine/engine-ts/plugins/external-wasm-loader.js +65 -65
  24. package/lib/build-engine/engine-ts/plugins/interface.d.ts +20 -20
  25. package/lib/build-engine/engine-ts/plugins/interface.js +1 -1
  26. package/lib/build-engine/index.d.ts +130 -125
  27. package/lib/build-engine/index.d.ts.map +1 -1
  28. package/lib/build-engine/index.js +138 -138
  29. package/lib/build-engine/index.js.map +1 -1
  30. package/lib/index.d.ts +4 -4
  31. package/lib/index.js +33 -33
  32. package/lib/module-resolver.d.ts +7 -7
  33. package/lib/module-resolver.js +28 -28
  34. package/lib/stats-query/config-interface.d.ts +129 -129
  35. package/lib/stats-query/config-interface.js +3 -3
  36. package/lib/stats-query/index.d.ts +163 -162
  37. package/lib/stats-query/index.d.ts.map +1 -1
  38. package/lib/stats-query/index.js +531 -531
  39. package/lib/stats-query/index.js.map +1 -1
  40. package/lib/stats-query/path-utils.d.ts +2 -2
  41. package/lib/stats-query/path-utils.js +35 -35
  42. package/lib/transformer/babel.d.ts +5 -5
  43. package/lib/transformer/babel.js +34 -34
  44. package/lib/transformer/index.d.ts +2 -2
  45. package/lib/transformer/index.js +28 -28
  46. package/lib/utils.d.ts +3 -3
  47. package/lib/utils.js +19 -19
  48. package/package.json +1 -1
  49. package/static/helper-dynamic-constants.txt +13 -13
  50. package/static/helper-file-decorator.ts +20 -20
  51. package/static/helper-global-exporter.txt +8 -8
  52. package/static/lib.dom.d.ts +20227 -20227
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @cocos/ccbuild
2
2
 
3
+ ## 1.1.6
4
+
5
+ ### Patch Changes
6
+
7
+ - fix bullet wasm emit
8
+
9
+ ## 1.1.5
10
+
11
+ ### Patch Changes
12
+
13
+ - caffe4d: add FORCE_BANNING_BULLET_WASM constant, controlled by ammoJsWasm option
14
+
3
15
  ## 1.1.4
4
16
 
5
17
  ### Patch Changes
package/README.md CHANGED
@@ -1,15 +1,15 @@
1
- # CCBUILD
2
-
3
- The next generation of build tool for Cocos engine.
4
-
5
- # What problems does this build tool solve ?
6
-
7
- - To merge `@editor/quick-compiler` and `@cocos/build-engine`
8
- - To support build cache management
9
- - To support generating ts engine for AOT optimization on Open Harmony
10
- - To support API generation
11
- - To support API report
12
- - To support API document model generation
13
- - To support build modular engine
14
- - More human-friendly log info
1
+ # CCBUILD
2
+
3
+ The next generation of build tool for Cocos engine.
4
+
5
+ # What problems does this build tool solve ?
6
+
7
+ - To merge `@editor/quick-compiler` and `@cocos/build-engine`
8
+ - To support build cache management
9
+ - To support generating ts engine for AOT optimization on Open Harmony
10
+ - To support API generation
11
+ - To support API report
12
+ - To support API document model generation
13
+ - To support build modular engine
14
+ - More human-friendly log info
15
15
  -
@@ -1,2 +1,2 @@
1
- "use strict";
1
+ "use strict";
2
2
  //# sourceMappingURL=api-builder.js.map
@@ -1,3 +1,3 @@
1
- import type { buildEngine } from '../index';
2
- export declare function buildJsEngine(options: buildEngine.Options): Promise<buildEngine.Result>;
1
+ import type { buildEngine } from '../index';
2
+ export declare function buildJsEngine(options: buildEngine.Options): Promise<buildEngine.Result>;
3
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/build-engine/engine-js/index.ts"],"names":[],"mappings":"AAsBA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,UAAU,CAAA;AAuB3C,wBAAsB,aAAa,CAAC,OAAO,EAAE,WAAW,CAAC,OAAO,GAAG,OAAO,CAAC,WAAW,CAAC,MAAM,CAAC,CAqZ7F"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/build-engine/engine-js/index.ts"],"names":[],"mappings":"AAsBA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,UAAU,CAAA;AAuB3C,wBAAsB,aAAa,CAAC,OAAO,EAAE,WAAW,CAAC,OAAO,GAAG,OAAO,CAAC,WAAW,CAAC,MAAM,CAAC,CAoZ7F"}