cloudcc-cli 1.8.3 → 1.8.5

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 CHANGED
@@ -1,3 +1,10 @@
1
+ # ReleaseV1.8.5
2
+ #### Release Date: 2025-1-24
3
+ #### Release Scope: Full
4
+ #### Release Content
5
+ * Optimization
6
+ * Rollback the create trigger folder function
7
+
1
8
  # ReleaseV1.8.3
2
9
  #### Release Date: 2025-1-22
3
10
  #### Release Scope: Full
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloudcc-cli",
3
- "version": "1.8.3",
3
+ "version": "1.8.5",
4
4
  "description": "cloudcc-cli",
5
5
  "keywords": [
6
6
  "cloudcc",
@@ -23,6 +23,7 @@ System.out.print("hello World");
23
23
 
24
24
  fs.writeFileSync(path.join(triggersPath, body.name + ".java"), javaTmp);
25
25
  body.version = getPackageJson().extandVersion || "2";
26
+ body.isactive = true;
26
27
  fs.writeFileSync(path.join(triggersPath, "config.json"), JSON.stringify(body));
27
28
  console.log();
28
29
  console.log(chalk.green("Successfully Created:" + body.name));