cloudcc-cli 1.2.9 → 1.3.0

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 (43) hide show
  1. package/README.md +896 -888
  2. package/bin/build.js +6 -6
  3. package/bin/buildccbasesdk.js +6 -6
  4. package/bin/buildccsdk.js +6 -6
  5. package/bin/buildtag.js +6 -6
  6. package/bin/create.js +6 -6
  7. package/bin/publish.js +6 -6
  8. package/bin/publishh5.js +6 -6
  9. package/package.json +39 -39
  10. package/src/buildTag.js +74 -74
  11. package/src/builderBaseSDK.js +89 -89
  12. package/src/builderPlugin.js +209 -209
  13. package/src/builderSDK.js +160 -160
  14. package/src/creatorTemProject.js +90 -90
  15. package/src/publishProject.js +239 -239
  16. package/src/publishProjectH5.js +180 -180
  17. package/template/Appvue +35 -35
  18. package/template/babelconfigjs +5 -5
  19. package/template/generateIDjs +4 -4
  20. package/template/httpjs +107 -108
  21. package/template/index.js +65 -65
  22. package/template/indexhtml +21 -21
  23. package/template/indexvue +343 -343
  24. package/template/mainjs +16 -16
  25. package/template/package-lockjson +12154 -12154
  26. package/template/packagejson +58 -58
  27. package/template/vueconfigjs +20 -20
  28. package/test/index.html +14 -14
  29. package/test/test.js +5 -5
  30. package/utils/askTool.js +95 -95
  31. package/utils/changeVersion copy.js +74 -74
  32. package/utils/changeVersion.js +26 -26
  33. package/utils/checkVersion.js +90 -90
  34. package/utils/deploy.js +8 -8
  35. package/utils/encryption.js +20 -20
  36. package/utils/github-markdown.min.css +1 -1
  37. package/utils/http.js +95 -95
  38. package/utils/md2html.js +88 -88
  39. package/utils/notifyIM.js +86 -86
  40. package/utils/pushCode.js +186 -186
  41. package/utils/test.js +1 -1
  42. package/utils/trigger.js +15 -15
  43. package/utils/updatei18n.js +126 -126
package/template/mainjs CHANGED
@@ -1,16 +1,16 @@
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
- import App from './App.vue';
6
-
7
- import * as CCDK from "cloudcc-ccdk/lib/ccdk.min.js";
8
- Vue.prototype.$CCDK = CCDK
9
- window.$CCDK = CCDK
10
-
11
- Vue.prototype.$Components = new Map()
12
- Vue.config.productionTip = false
13
-
14
- new Vue({
15
- render: h => h(App),
16
- }).$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
+ import App from './App.vue';
6
+
7
+ import * as CCDK from "cloudcc-ccdk/lib/ccdk.min.js";
8
+ Vue.prototype.$CCDK = CCDK
9
+ window.$CCDK = CCDK
10
+
11
+ Vue.prototype.$Components = new Map()
12
+ Vue.config.productionTip = false
13
+
14
+ new Vue({
15
+ render: h => h(App),
16
+ }).$mount('#app')