cloudcc-cli 1.6.6 → 1.6.7

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 (54) hide show
  1. package/README.md +1183 -1176
  2. package/bin/cc.js +49 -49
  3. package/bin/plugin.js +6 -6
  4. package/bin/project.js +6 -6
  5. package/core/core/ServiceResult.java +35 -35
  6. package/core/core/UserInfo.java +45 -45
  7. package/package.json +34 -34
  8. package/src/classes/create.js +40 -40
  9. package/src/classes/index.js +8 -8
  10. package/src/classes/publish.js +43 -43
  11. package/src/config/get.js +20 -20
  12. package/src/config/index.js +8 -8
  13. package/src/config/use.js +14 -14
  14. package/src/object/get.js +14 -14
  15. package/src/object/index.js +7 -7
  16. package/src/plugin/create.js +70 -70
  17. package/src/plugin/create1.js +58 -58
  18. package/src/plugin/index.js +8 -8
  19. package/src/plugin/publish.js +265 -265
  20. package/src/plugin/publish1.js +256 -256
  21. package/src/project/create.js +87 -87
  22. package/src/project/create1.js +109 -109
  23. package/src/project/index.js +7 -7
  24. package/src/recordType/get.js +13 -13
  25. package/src/recordType/index.js +7 -7
  26. package/src/script/create.js +29 -29
  27. package/src/script/index.js +8 -8
  28. package/src/script/publish.js +62 -62
  29. package/src/timer/create.js +26 -26
  30. package/src/timer/index.js +8 -8
  31. package/src/timer/publish.js +43 -43
  32. package/src/token/get.js +11 -11
  33. package/src/token/index.js +7 -7
  34. package/src/triggers/create.js +27 -27
  35. package/src/triggers/index.js +8 -8
  36. package/src/triggers/publish.js +48 -48
  37. package/template/Appvue +24 -29
  38. package/template/babelconfigjs +5 -5
  39. package/template/demojava +14 -14
  40. package/template/gitignore +11 -11
  41. package/template/index.js +57 -57
  42. package/template/indexhtml +21 -21
  43. package/template/indexvue +29 -34
  44. package/template/javaconfigjson +2 -2
  45. package/template/mainjs +13 -13
  46. package/template/package-lockjson +12115 -12115
  47. package/template/packagejson +42 -42
  48. package/template/vueconfigjs +21 -26
  49. package/tool/branch/index.js +25 -25
  50. package/tool/checkLange/checkLang.js +68 -68
  51. package/tool/checkLange/clearLang.js +85 -85
  52. package/utils/checkVersion.js +94 -94
  53. package/utils/http.js +122 -122
  54. package/utils/utils.js +57 -57
package/template/indexvue CHANGED
@@ -1,35 +1,30 @@
1
- <template>
2
- <div class="cc-container">
3
- <div>Hello CloudCC</div>
4
- <div>
5
- <a href="https://cloudccone.feishu.cn/wiki/JZ7CwcRfriU8taknCKCcwKEmncd">
6
- 开发者文档</a
7
- >
8
- </div>
9
- </div>
10
- </template>
11
-
12
- <script>
13
- export default {
14
- data() {
15
- return {
16
- componentInfo: {
17
- // Component unique identifier, globally unique
18
- component: "cloudcc-demo-01",
19
- // 组件名称,在页面编辑器显示的名字
20
- compName: "cloudcc-demo-01",
21
- // Component description information
22
- compDesc: "Component description information",
23
- },
24
- isLock: false,
25
- };
26
- },
27
- };
28
- </script>
29
- <style lang="scss" scoped>
30
- .cc-container {
31
- text-align: center;
32
- padding: 8px;
33
- background: goldenrod;
34
- }
1
+ <template>
2
+ <div class="cc-container">
3
+ <div>Hello CloudCC</div>
4
+ </div>
5
+ </template>
6
+
7
+ <script>
8
+ export default {
9
+ data() {
10
+ return {
11
+ componentInfo: {
12
+ // Component unique identifier, globally unique
13
+ component: "cloudcc-demo-01",
14
+ // Component name, the name displayed in the page editor
15
+ compName: "cloudcc-demo-01",
16
+ // Component description information
17
+ compDesc: "Component description information",
18
+ },
19
+ isLock: false,
20
+ };
21
+ },
22
+ };
23
+ </script>
24
+ <style lang="scss" scoped>
25
+ .cc-container {
26
+ text-align: center;
27
+ padding: 8px;
28
+ background: goldenrod;
29
+ }
35
30
  </style>
@@ -1,3 +1,3 @@
1
- {
2
- "name": "demo"
1
+ {
2
+ "name": "demo"
3
3
  }
package/template/mainjs CHANGED
@@ -1,13 +1,13 @@
1
- import Vue from 'vue';
2
- import ElementUI from 'element-ui';
3
- Vue.use(ElementUI);
4
- import 'element-ui/lib/theme-chalk/index.css';
5
-
6
- import App from './App.vue';
7
-
8
- Vue.prototype.$Components = new Map()
9
- Vue.config.productionTip = false
10
-
11
- new Vue({
12
- render: h => h(App),
13
- }).$mount('#app')
1
+ import Vue from 'vue';
2
+ import ElementUI from 'element-ui';
3
+ Vue.use(ElementUI);
4
+ import 'element-ui/lib/theme-chalk/index.css';
5
+
6
+ import App from './App.vue';
7
+
8
+ Vue.prototype.$Components = new Map()
9
+ Vue.config.productionTip = false
10
+
11
+ new Vue({
12
+ render: h => h(App),
13
+ }).$mount('#app')