cloudcc-cli 1.8.8 → 1.8.9

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.9
2
+ #### Release Date: 2025-2-6
3
+ #### Release Scope: Full
4
+ #### Release Content
5
+ * Optimization
6
+ * delete console
7
+
1
8
  # ReleaseV1.8.8
2
9
  #### Release Date: 2025-2-6
3
10
  #### Release Scope: Full
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloudcc-cli",
3
- "version": "1.8.8",
3
+ "version": "1.8.9",
4
4
  "description": "cloudcc-cli",
5
5
  "keywords": [
6
6
  "cloudcc",
@@ -35,7 +35,6 @@ async function publish(argvs) {
35
35
  const bodyEnd = functionStr.lastIndexOf('}');
36
36
 
37
37
  scriptContent = functionStr.substring(bodyStart, bodyEnd);
38
- console.log("scriptContent", scriptContent)
39
38
  let configContent = JSON.parse(fs.readFileSync(srcPath + "config.json", 'utf8'));
40
39
  let configContentOld = JSON.parse(JSON.stringify(configContent))
41
40