@lazycatcloud/lzc-cli 1.1.1 → 1.1.4
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/cmds/app.js +137 -0
- package/cmds/config.js +55 -0
- package/cmds/create.js +55 -0
- package/cmds/dev.js +122 -0
- package/cmds/init.js +125 -0
- package/cmds/log.js +103 -0
- package/cmds/publish.js +116 -0
- package/lib/api.js +34 -36
- package/lib/archiver.js +50 -31
- package/lib/box/check_qemu.js +27 -0
- package/lib/box/hportal.js +114 -0
- package/lib/box/index.js +152 -0
- package/lib/box/qemu_vm_mgr.js +625 -0
- package/lib/box/schemes/vm_box_system_debian.json +47 -0
- package/lib/builder.js +154 -35
- package/lib/dev.js +51 -32
- package/lib/env.js +276 -57
- package/lib/generator.js +31 -0
- package/lib/git/git-commit.sh +7 -0
- package/lib/git/git-reset.sh +15 -0
- package/lib/key.js +14 -11
- package/lib/sdk.js +7 -10
- package/lib/utils.js +149 -53
- package/package.json +18 -5
- package/scripts/cli.js +134 -70
- package/template/_lazycat/app-config +1 -0
- package/template/_lazycat/docker-compose.yml.in +3 -5
- package/template/golang/README.md +3 -4
- package/template/golang/assets/css/bootstrap-responsive.css +26 -23
- package/template/golang/assets/css/bootstrap-responsive.min.css +1065 -1
- package/template/golang/assets/css/bootstrap.css +733 -362
- package/template/golang/assets/css/bootstrap.min.css +5299 -1
- package/template/golang/assets/css/rego.css +17 -17
- package/template/golang/assets/js/bootstrap.js +1340 -1311
- package/template/golang/assets/js/bootstrap.min.js +1240 -5
- package/template/golang/assets/js/rego.js +80 -69
- package/template/golang/index.html +61 -59
- package/template/ionic_vue3/README.md +46 -0
- package/template/ionic_vue3/_eslintrc.cjs +24 -0
- package/template/ionic_vue3/_gitignore +29 -0
- package/template/ionic_vue3/_vscode/extensions.json +6 -0
- package/template/ionic_vue3/capacitor.config.ts +10 -0
- package/template/ionic_vue3/env.d.ts +1 -0
- package/template/ionic_vue3/index.html +13 -0
- package/template/ionic_vue3/ionic.config.json +7 -0
- package/template/ionic_vue3/package.json +52 -0
- package/template/ionic_vue3/postcss.config.js +6 -0
- package/template/ionic_vue3/public/favicon.ico +0 -0
- package/template/ionic_vue3/src/App.vue +11 -0
- package/template/ionic_vue3/src/assets/logo.svg +1 -0
- package/template/ionic_vue3/src/index.css +3 -0
- package/template/ionic_vue3/src/main.ts +35 -0
- package/template/ionic_vue3/src/router/index.ts +15 -0
- package/template/ionic_vue3/src/theme/variables.css +231 -0
- package/template/ionic_vue3/src/views/Home.vue +38 -0
- package/template/ionic_vue3/tailwind.config.js +7 -0
- package/template/ionic_vue3/tsconfig.json +16 -0
- package/template/ionic_vue3/tsconfig.vite-config.json +8 -0
- package/template/ionic_vue3/vite.config.ts +28 -0
- package/template/release/golang/build.sh +1 -2
- package/template/release/ionic_vue3/Dockerfile +10 -0
- package/template/release/ionic_vue3/build.sh +9 -0
- package/template/release/ionic_vue3/docker-compose.yml.in +8 -0
- package/template/release/vue/Dockerfile +3 -2
- package/template/release/vue/build.sh +4 -2
- package/template/vue/README.md +5 -0
- package/template/vue/babel.config.js +2 -4
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
width: 100%;
|
|
37
37
|
min-height: 30px;
|
|
38
38
|
-webkit-box-sizing: border-box;
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
-moz-box-sizing: border-box;
|
|
40
|
+
box-sizing: border-box;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
.hidden {
|
|
@@ -209,8 +209,8 @@
|
|
|
209
209
|
margin-left: 2.564102564102564%;
|
|
210
210
|
*margin-left: 2.5109110747408616%;
|
|
211
211
|
-webkit-box-sizing: border-box;
|
|
212
|
-
|
|
213
|
-
|
|
212
|
+
-moz-box-sizing: border-box;
|
|
213
|
+
box-sizing: border-box;
|
|
214
214
|
}
|
|
215
215
|
.row-fluid [class*="span"]:first-child {
|
|
216
216
|
margin-left: 0;
|
|
@@ -559,8 +559,8 @@
|
|
|
559
559
|
margin-left: 2.7624309392265194%;
|
|
560
560
|
*margin-left: 2.709239449864817%;
|
|
561
561
|
-webkit-box-sizing: border-box;
|
|
562
|
-
|
|
563
|
-
|
|
562
|
+
-moz-box-sizing: border-box;
|
|
563
|
+
box-sizing: border-box;
|
|
564
564
|
}
|
|
565
565
|
.row-fluid [class*="span"]:first-child {
|
|
566
566
|
margin-left: 0;
|
|
@@ -827,15 +827,15 @@
|
|
|
827
827
|
width: 100%;
|
|
828
828
|
margin-left: 0;
|
|
829
829
|
-webkit-box-sizing: border-box;
|
|
830
|
-
|
|
831
|
-
|
|
830
|
+
-moz-box-sizing: border-box;
|
|
831
|
+
box-sizing: border-box;
|
|
832
832
|
}
|
|
833
833
|
.span12,
|
|
834
834
|
.row-fluid .span12 {
|
|
835
835
|
width: 100%;
|
|
836
836
|
-webkit-box-sizing: border-box;
|
|
837
|
-
|
|
838
|
-
|
|
837
|
+
-moz-box-sizing: border-box;
|
|
838
|
+
box-sizing: border-box;
|
|
839
839
|
}
|
|
840
840
|
.row-fluid [class*="offset"]:first-child {
|
|
841
841
|
margin-left: 0;
|
|
@@ -851,8 +851,8 @@
|
|
|
851
851
|
width: 100%;
|
|
852
852
|
min-height: 30px;
|
|
853
853
|
-webkit-box-sizing: border-box;
|
|
854
|
-
|
|
855
|
-
|
|
854
|
+
-moz-box-sizing: border-box;
|
|
855
|
+
box-sizing: border-box;
|
|
856
856
|
}
|
|
857
857
|
.input-prepend input,
|
|
858
858
|
.input-append input,
|
|
@@ -985,15 +985,15 @@
|
|
|
985
985
|
font-weight: bold;
|
|
986
986
|
color: #777777;
|
|
987
987
|
-webkit-border-radius: 3px;
|
|
988
|
-
|
|
989
|
-
|
|
988
|
+
-moz-border-radius: 3px;
|
|
989
|
+
border-radius: 3px;
|
|
990
990
|
}
|
|
991
991
|
.nav-collapse .btn {
|
|
992
992
|
padding: 4px 10px 4px;
|
|
993
993
|
font-weight: normal;
|
|
994
994
|
-webkit-border-radius: 4px;
|
|
995
|
-
|
|
996
|
-
|
|
995
|
+
-moz-border-radius: 4px;
|
|
996
|
+
border-radius: 4px;
|
|
997
997
|
}
|
|
998
998
|
.nav-collapse .dropdown-menu li + li a {
|
|
999
999
|
margin-bottom: 2px;
|
|
@@ -1026,11 +1026,11 @@
|
|
|
1026
1026
|
background-color: transparent;
|
|
1027
1027
|
border: none;
|
|
1028
1028
|
-webkit-border-radius: 0;
|
|
1029
|
-
|
|
1030
|
-
|
|
1029
|
+
-moz-border-radius: 0;
|
|
1030
|
+
border-radius: 0;
|
|
1031
1031
|
-webkit-box-shadow: none;
|
|
1032
|
-
|
|
1033
|
-
|
|
1032
|
+
-moz-box-shadow: none;
|
|
1033
|
+
box-shadow: none;
|
|
1034
1034
|
}
|
|
1035
1035
|
.nav-collapse .open > .dropdown-menu {
|
|
1036
1036
|
display: block;
|
|
@@ -1053,9 +1053,12 @@
|
|
|
1053
1053
|
margin: 10px 0;
|
|
1054
1054
|
border-top: 1px solid #f2f2f2;
|
|
1055
1055
|
border-bottom: 1px solid #f2f2f2;
|
|
1056
|
-
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1),
|
|
1057
|
-
|
|
1058
|
-
|
|
1056
|
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1),
|
|
1057
|
+
0 1px 0 rgba(255, 255, 255, 0.1);
|
|
1058
|
+
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1),
|
|
1059
|
+
0 1px 0 rgba(255, 255, 255, 0.1);
|
|
1060
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1),
|
|
1061
|
+
0 1px 0 rgba(255, 255, 255, 0.1);
|
|
1059
1062
|
}
|
|
1060
1063
|
.navbar-inverse .nav-collapse .navbar-form,
|
|
1061
1064
|
.navbar-inverse .nav-collapse .navbar-search {
|