cloudcc-cli 2.2.0 → 2.2.1
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/README.md +7 -2
- package/package.json +1 -1
- package/src/plugin/publish1.js +8 -8
package/README.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# ReleaseV2.2.1
|
|
2
|
+
#### Release Date: 2025-11-24
|
|
3
|
+
#### Release Scope: Full
|
|
4
|
+
#### Release Content
|
|
5
|
+
* Optimization
|
|
6
|
+
* update other config
|
|
7
|
+
|
|
1
8
|
# ReleaseV2.2.0
|
|
2
9
|
#### Release Date: 2025-11-24
|
|
3
10
|
#### Release Scope: Full
|
|
@@ -6,8 +13,6 @@
|
|
|
6
13
|
* Update the packaging and parsing of Vue files
|
|
7
14
|
* Add upload dependency tree to custom component
|
|
8
15
|
|
|
9
|
-
|
|
10
|
-
|
|
11
16
|
# ReleaseV2.1.9
|
|
12
17
|
#### Release Date: 2025-9-1
|
|
13
18
|
#### Release Scope: Full
|
package/package.json
CHANGED
package/src/plugin/publish1.js
CHANGED
|
@@ -207,14 +207,14 @@ class Builder {
|
|
|
207
207
|
}
|
|
208
208
|
|
|
209
209
|
// 输出依赖信息到文件
|
|
210
|
-
try {
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
} catch (err) {
|
|
216
|
-
|
|
217
|
-
}
|
|
210
|
+
// try {
|
|
211
|
+
// const outputPath = path.join(process.cwd(), 'dependencies-output.json');
|
|
212
|
+
// fs.writeFileSync(outputPath, JSON.stringify(allDependencies, null, 2), 'utf8');
|
|
213
|
+
// console.log(chalk.green(`Dependencies collected and saved to: ${outputPath}`));
|
|
214
|
+
// console.log(chalk.cyan(`Total files: ${Object.keys(allDependencies).length}`));
|
|
215
|
+
// } catch (err) {
|
|
216
|
+
// console.log(chalk.yellow('Warning: Failed to write dependencies output file:', err.message));
|
|
217
|
+
// }
|
|
218
218
|
|
|
219
219
|
return {
|
|
220
220
|
compName,
|