@atomicservice/ascf-toolkit 1.0.15 → 1.0.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.
- package/jest.config.js +29 -0
- package/lib/ascf-compiler/appjson-loader.js +1 -1
- package/lib/ascf-compiler/common/ascf-console.js +1 -0
- package/lib/ascf-compiler/common/ascfRootPath.js +1 -0
- package/lib/ascf-compiler/common/beforeLoaderProcess.js +1 -1
- package/lib/ascf-compiler/common/exp-utils.js +1 -1
- package/lib/ascf-compiler/common/fixComponentName.js +1 -1
- package/lib/ascf-compiler/common/hdc-executor.js +1 -1
- package/lib/ascf-compiler/common/hxml-validator.js +1 -1
- package/lib/ascf-compiler/common/manifest-handler.js +1 -1
- package/lib/ascf-compiler/common/manifest-manager.js +1 -1
- package/lib/ascf-compiler/common/quick-generate-subpackage.js +1 -1
- package/lib/ascf-compiler/common/utils.js +1 -1
- package/lib/ascf-compiler/compile-mode-adapter.js +1 -0
- package/lib/ascf-compiler/css-process-loader.js +1 -1
- package/lib/ascf-compiler/hcss-loader.js +1 -1
- package/lib/ascf-compiler/hxml-loader.js +1 -1
- package/lib/ascf-compiler/js-parser/parser-babel.js +1 -1
- package/lib/ascf-compiler/js-parser/parser-swc.js +1 -1
- package/lib/ascf-compiler/plugin/ascyn-requrire-plugin.js +1 -0
- package/lib/ascf-compiler/plugin/before-loader-plugin.js +1 -1
- package/lib/ascf-compiler/plugin/copy-ascf-console-plugin.js +1 -0
- package/lib/ascf-compiler/plugin/html-generator-plugin.js +1 -1
- package/lib/ascf-compiler/plugin/manifest-generator-plugin.js +1 -1
- package/lib/ascf-compiler/plugin/resource-plugin.js +1 -1
- package/lib/ascf-compiler/require-loader.js +1 -1
- package/lib/ascf-compiler/server/dev-server.js +1 -1
- package/lib/ascf-compiler/template/attr-utils.js +1 -1
- package/lib/ascf-compiler/trustlist-verify/config.js +1 -1
- package/lib/ascf-compiler/vue-compiler/vue-compiler.js +1 -1
- package/lib/ascf-compiler/web.webpack.config.js +1 -1
- package/lib/ascf-converter/ascfApisDiff.json +1862 -733
- package/lib/ascf-converter/common/commonConfig.js +1 -1
- package/lib/ascf-converter/common/commonUtils.js +1 -1
- package/lib/ascf-converter/convertManager.js +1 -1
- package/lib/ascf-converter/features/fileHandle.js +1 -1
- package/lib/ascf-converter/report/index.html +9 -1
- package/lib/ascf-converter/report/js/index.js +1 -1
- package/lib/bin/ascf.js +1 -1
- package/lib/commands/build-npm/index.js +1 -1
- package/lib/commands/generate/index.js +1 -1
- package/lib/commands/sign/generateCsr.js +1 -0
- package/lib/commands/sign/generateP12.js +1 -0
- package/lib/commands/sign/getEncryptPassword.js +1 -0
- package/lib/common/config.js +1 -1
- package/lib/common/generatorSign.js +1 -0
- package/lib/common/utils.js +1 -1
- package/lib/common/version-check.js +1 -1
- package/lib/index.js +1 -1
- package/notice/openSourceSoftwareNotice.docx +0 -0
- package/package.json +15 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atomicservice/ascf-toolkit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.17",
|
|
4
4
|
"author": "atomicservice",
|
|
5
5
|
"title": "ASCF toolkit for atomicservice",
|
|
6
6
|
"description": "ASCF toolkit for atomicservice",
|
|
@@ -11,16 +11,16 @@
|
|
|
11
11
|
"webpack"
|
|
12
12
|
],
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@atomicservice/ascf-base": "1.0.
|
|
15
|
-
"@babel/core": "7.
|
|
16
|
-
"@babel/generator": "7.
|
|
17
|
-
"@babel/parser": "7.
|
|
14
|
+
"@atomicservice/ascf-base": "1.0.17",
|
|
15
|
+
"@babel/core": "7.27.1",
|
|
16
|
+
"@babel/generator": "7.27.1",
|
|
17
|
+
"@babel/parser": "7.27.1",
|
|
18
18
|
"@babel/plugin-transform-class-properties": "7.27.1",
|
|
19
19
|
"@babel/plugin-transform-modules-commonjs": "7.27.1",
|
|
20
|
-
"@babel/plugin-transform-runtime": "7.
|
|
21
|
-
"@babel/preset-env": "7.
|
|
22
|
-
"@babel/runtime": "7.
|
|
23
|
-
"@babel/traverse": "7.
|
|
20
|
+
"@babel/plugin-transform-runtime": "7.27.1",
|
|
21
|
+
"@babel/preset-env": "7.27.1",
|
|
22
|
+
"@babel/runtime": "7.27.1",
|
|
23
|
+
"@babel/traverse": "7.27.1",
|
|
24
24
|
"@rsdoctor/webpack-plugin": "1.4.0",
|
|
25
25
|
"@swc/core": "1.10.14",
|
|
26
26
|
"@swc/helpers": "0.5.17",
|
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
"sass-loader": "16.0.5",
|
|
44
44
|
"semver": "7.5.4",
|
|
45
45
|
"tar": "7.5.6",
|
|
46
|
+
"terser-webpack-plugin": "5.4.0",
|
|
46
47
|
"webpack": "5.104.1",
|
|
47
48
|
"webpack-dev-server": "5.2.0",
|
|
48
49
|
"inquirer": "12.6.3"
|
|
@@ -54,7 +55,9 @@
|
|
|
54
55
|
"gulp-javascript-obfuscator": "1.1.6",
|
|
55
56
|
"gulp-plumber": "1.2.1",
|
|
56
57
|
"gulp-uglify": "3.0.2",
|
|
57
|
-
"rollup-plugin-babel": "4.4.0"
|
|
58
|
+
"rollup-plugin-babel": "4.4.0",
|
|
59
|
+
"jest": "30.2.0",
|
|
60
|
+
"jest-html-reporter": "4.3.0"
|
|
58
61
|
},
|
|
59
62
|
"overrides": {
|
|
60
63
|
"minipass": "3.3.6",
|
|
@@ -128,6 +131,7 @@
|
|
|
128
131
|
"bep": "gulp dev && pnpm pack",
|
|
129
132
|
"dev": "gulp dev",
|
|
130
133
|
"build": "gulp release",
|
|
131
|
-
"release": "gulp release && pnpm pack"
|
|
134
|
+
"release": "gulp release && pnpm pack",
|
|
135
|
+
"test": "jest --coverage"
|
|
132
136
|
}
|
|
133
137
|
}
|