miniprogram-ci 2.0.6 → 2.0.8

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 +4 -2
  2. package/README.md +4 -0
  3. package/dist/@types/config/config.d.ts +1 -1
  4. package/dist/@types/modules/corecompiler/baseCompiler.d.ts +1 -0
  5. package/dist/@types/modules/corecompiler/originalCompiler.d.ts +1 -0
  6. package/dist/@types/modules/corecompiler/processHandler.d.ts +23 -0
  7. package/dist/@types/modules/corecompiler/summer/graph/appgraph.d.ts +3 -0
  8. package/dist/@types/modules/corecompiler/summer/graph/basegraph.d.ts +3 -0
  9. package/dist/@types/modules/corecompiler/summer/graph/gamegraph.d.ts +3 -0
  10. package/dist/@types/modules/corecompiler/summer/graph/gameplugingraph.d.ts +3 -0
  11. package/dist/@types/modules/corecompiler/summer/graph/plugingraph.d.ts +3 -0
  12. package/dist/@types/modules/corecompiler/summer/summer.d.ts +1 -0
  13. package/dist/@types/modules/corecompiler/summerCompiler.d.ts +17 -1
  14. package/dist/@types/modules/index.d.ts +4 -2
  15. package/dist/@types/modules/nativecompiler/ios/buildCloud.d.ts +2 -2
  16. package/dist/@types/types/devtools.d.ts +7 -0
  17. package/dist/@types/utils/debug.d.ts +3 -0
  18. package/dist/@types/utils/miniappJson.d.ts +1 -0
  19. package/dist/@types/utils/tools.d.ts +1 -0
  20. package/dist/config/config.js +1 -1
  21. package/dist/modules/corecompiler/processHandler.js +1 -0
  22. package/dist/modules/corecompiler/summer/graph/appgraph.js +1 -1
  23. package/dist/modules/corecompiler/summer/graph/basegraph.js +1 -1
  24. package/dist/modules/corecompiler/summer/graph/gamegraph.js +1 -1
  25. package/dist/modules/corecompiler/summer/graph/gameplugingraph.js +1 -1
  26. package/dist/modules/corecompiler/summer/graph/plugingraph.js +1 -1
  27. package/dist/modules/corecompiler/summer/pluginDriver.js +1 -1
  28. package/dist/modules/corecompiler/summer/plugins/sass.js +1 -1
  29. package/dist/modules/corecompiler/summer/summer.js +1 -1
  30. package/dist/modules/corecompiler/summerCompiler.js +1 -1
  31. package/dist/modules/corecompiler/summerEntryProcess.js +1 -1
  32. package/dist/modules/index.js +1 -1
  33. package/dist/modules/nativecompiler/ios/buildCloud.js +1 -1
  34. package/dist/modules/nativecompiler/ios/index.js +1 -1
  35. package/dist/project/baseProject.js +1 -1
  36. package/dist/schema/dist/app.js +4 -1
  37. package/dist/schema/dist/ext.js +4 -1
  38. package/dist/schema/dist/game.js +1 -1
  39. package/dist/schema/dist/page.js +1 -1
  40. package/dist/schema/dist/plugin.js +1 -1
  41. package/dist/schema/dist/pluginpage.js +1 -1
  42. package/dist/schema/dist/projectconfig.js +4 -1
  43. package/dist/schema/dist/projectprivateconfig.js +4 -1
  44. package/dist/schema/dist/sitemap.js +1 -1
  45. package/dist/schema/dist/theme.js +1 -1
  46. package/dist/utils/codesign.js +1 -1
  47. package/dist/utils/debug.js +1 -0
  48. package/dist/utils/miniapp-builder.js +1 -1
  49. package/dist/utils/miniappJson.js +1 -1
  50. package/dist/utils/subprocess/processManager.js +1 -1
  51. package/dist/utils/tools.js +1 -1
  52. package/package.json +101 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "miniprogram-ci",
3
- "version": "2.0.6",
3
+ "version": "2.0.8",
4
4
  "description": "Module that build miniprogram project for web or app extracted from WeChatDevtools.",
5
5
  "homepage": "https://developers.weixin.qq.com/community/homepage",
6
6
  "main": "dist/index.js",
@@ -94,27 +94,127 @@
94
94
  },
95
95
  "dependencies": {
96
96
  "@babel/core": "7.21.4",
97
+ "@babel/code-frame": "7.22.10",
98
+ "@babel/compat-data": "7.22.9",
99
+ "@babel/eslint-parser": "7.22.10",
97
100
  "@babel/generator": "7.21.4",
101
+ "@babel/helper-annotate-as-pure": "7.22.5",
102
+ "@babel/helper-builder-binary-assignment-operator-visitor": "7.22.10",
103
+ "@babel/helper-compilation-targets": "7.22.10",
104
+ "@babel/helper-create-class-features-plugin": "7.22.10",
105
+ "@babel/helper-create-regexp-features-plugin": "7.22.9",
106
+ "@babel/helper-define-polyfill-provider": "0.3.3",
107
+ "@babel/helper-environment-visitor": "7.22.5",
108
+ "@babel/helper-function-name": "7.22.5",
109
+ "@babel/helper-hoist-variables": "7.22.5",
110
+ "@babel/helper-member-expression-to-functions": "7.22.5",
98
111
  "@babel/helper-module-imports": "7.21.4",
112
+ "@babel/helper-module-transforms": "7.22.9",
113
+ "@babel/helper-optimise-call-expression": "7.22.5",
114
+ "@babel/helper-plugin-utils": "7.24.6",
115
+ "@babel/helper-remap-async-to-generator": "7.22.9",
116
+ "@babel/helper-replace-supers": "7.22.9",
117
+ "@babel/helper-simple-access": "7.22.5",
118
+ "@babel/helper-skip-transparent-expression-wrappers": "7.24.6",
119
+ "@babel/helper-split-export-declaration": "7.22.6",
120
+ "@babel/helper-string-parser": "7.24.6",
121
+ "@babel/helper-validator-identifier": "7.24.6",
122
+ "@babel/helper-validator-option": "7.22.5",
123
+ "@babel/helper-wrap-function": "7.22.10",
99
124
  "@babel/helpers": "7.21.0",
125
+ "@babel/highlight": "7.22.10",
100
126
  "@babel/parser": "7.21.4",
127
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "7.24.6",
128
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "7.24.6",
129
+ "@babel/plugin-proposal-async-generator-functions": "7.20.7",
101
130
  "@babel/plugin-proposal-class-properties": "7.18.6",
131
+ "@babel/plugin-proposal-class-static-block": "7.21.0",
102
132
  "@babel/plugin-proposal-decorators": "7.21.0",
103
133
  "@babel/plugin-proposal-do-expressions": "7.18.6",
134
+ "@babel/plugin-proposal-dynamic-import": "7.18.6",
104
135
  "@babel/plugin-proposal-export-default-from": "7.18.10",
136
+ "@babel/plugin-proposal-export-namespace-from": "7.18.9",
105
137
  "@babel/plugin-proposal-function-bind": "7.18.9",
106
138
  "@babel/plugin-proposal-function-sent": "7.18.6",
139
+ "@babel/plugin-proposal-json-strings": "7.18.6",
140
+ "@babel/plugin-proposal-logical-assignment-operators": "7.20.7",
141
+ "@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
142
+ "@babel/plugin-proposal-numeric-separator": "7.18.6",
143
+ "@babel/plugin-proposal-object-rest-spread": "7.20.7",
144
+ "@babel/plugin-proposal-optional-catch-binding": "7.18.6",
145
+ "@babel/plugin-proposal-optional-chaining": "7.21.0",
107
146
  "@babel/plugin-proposal-pipeline-operator": "7.18.9",
108
147
  "@babel/plugin-proposal-private-methods": "7.18.6",
109
148
  "@babel/plugin-proposal-private-property-in-object": "7.21.0",
110
149
  "@babel/plugin-proposal-throw-expressions": "7.18.6",
150
+ "@babel/plugin-proposal-unicode-property-regex": "7.18.6",
151
+ "@babel/plugin-syntax-async-generators": "7.8.4",
152
+ "@babel/plugin-syntax-bigint": "7.8.3",
153
+ "@babel/plugin-syntax-class-properties": "7.12.13",
154
+ "@babel/plugin-syntax-class-static-block": "7.14.5",
155
+ "@babel/plugin-syntax-decorators": "7.22.10",
156
+ "@babel/plugin-syntax-do-expressions": "7.22.5",
157
+ "@babel/plugin-syntax-dynamic-import": "7.8.3",
158
+ "@babel/plugin-syntax-export-default-from": "7.22.5",
159
+ "@babel/plugin-syntax-export-namespace-from": "7.8.3",
160
+ "@babel/plugin-syntax-function-bind": "7.22.5",
161
+ "@babel/plugin-syntax-function-sent": "7.22.5",
162
+ "@babel/plugin-syntax-import-assertions": "7.24.6",
163
+ "@babel/plugin-syntax-import-meta": "7.10.4",
164
+ "@babel/plugin-syntax-json-strings": "7.8.3",
165
+ "@babel/plugin-syntax-logical-assignment-operators": "7.10.4",
166
+ "@babel/plugin-syntax-nullish-coalescing-operator": "7.8.3",
167
+ "@babel/plugin-syntax-numeric-separator": "7.10.4",
168
+ "@babel/plugin-syntax-object-rest-spread": "7.8.3",
169
+ "@babel/plugin-syntax-optional-catch-binding": "7.8.3",
170
+ "@babel/plugin-syntax-optional-chaining": "7.8.3",
171
+ "@babel/plugin-syntax-pipeline-operator": "7.22.5",
172
+ "@babel/plugin-syntax-private-property-in-object": "7.14.5",
173
+ "@babel/plugin-syntax-throw-expressions": "7.22.5",
174
+ "@babel/plugin-syntax-top-level-await": "7.14.5",
175
+ "@babel/plugin-syntax-typescript": "7.22.5",
176
+ "@babel/plugin-transform-arrow-functions": "7.22.5",
177
+ "@babel/plugin-transform-async-to-generator": "7.22.5",
178
+ "@babel/plugin-transform-block-scoped-functions": "7.22.5",
179
+ "@babel/plugin-transform-block-scoping": "7.22.10",
180
+ "@babel/plugin-transform-classes": "7.22.6",
181
+ "@babel/plugin-transform-computed-properties": "7.22.5",
182
+ "@babel/plugin-transform-destructuring": "7.22.10",
183
+ "@babel/plugin-transform-dotall-regex": "7.22.5",
184
+ "@babel/plugin-transform-duplicate-keys": "7.22.5",
185
+ "@babel/plugin-transform-exponentiation-operator": "7.22.5",
186
+ "@babel/plugin-transform-for-of": "7.22.5",
187
+ "@babel/plugin-transform-function-name": "7.22.5",
188
+ "@babel/plugin-transform-literals": "7.22.5",
189
+ "@babel/plugin-transform-member-expression-literals": "7.22.5",
190
+ "@babel/plugin-transform-modules-amd": "7.22.5",
111
191
  "@babel/plugin-transform-modules-commonjs": "7.21.2",
192
+ "@babel/plugin-transform-modules-systemjs": "7.22.5",
193
+ "@babel/plugin-transform-modules-umd": "7.22.5",
194
+ "@babel/plugin-transform-named-capturing-groups-regex": "7.22.5",
195
+ "@babel/plugin-transform-new-target": "7.22.5",
196
+ "@babel/plugin-transform-object-super": "7.22.5",
197
+ "@babel/plugin-transform-optional-chaining": "7.24.6",
198
+ "@babel/plugin-transform-parameters": "7.22.5",
199
+ "@babel/plugin-transform-property-literals": "7.22.5",
200
+ "@babel/plugin-transform-regenerator": "7.22.10",
201
+ "@babel/plugin-transform-reserved-words": "7.22.5",
112
202
  "@babel/plugin-transform-runtime": "7.21.4",
203
+ "@babel/plugin-transform-shorthand-properties": "7.22.5",
204
+ "@babel/plugin-transform-spread": "7.22.5",
205
+ "@babel/plugin-transform-sticky-regex": "7.22.5",
206
+ "@babel/plugin-transform-template-literals": "7.22.5",
207
+ "@babel/plugin-transform-typeof-symbol": "7.22.5",
113
208
  "@babel/plugin-transform-typescript": "7.21.3",
209
+ "@babel/plugin-transform-unicode-escapes": "7.22.10",
210
+ "@babel/plugin-transform-unicode-regex": "7.22.5",
114
211
  "@babel/preset-env": "7.21.4",
212
+ "@babel/preset-modules": "0.1.6",
213
+ "@babel/regjsgen": "0.8.0",
115
214
  "@babel/runtime": "7.21.0",
116
215
  "@babel/template": "7.20.7",
117
216
  "@babel/traverse": "7.21.4",
217
+ "@babel/types": "7.24.6",
118
218
  "@swc/core": "1.4.14",
119
219
  "@vue/reactivity": "3.0.5",
120
220
  "acorn": "^6.1.1",