sumor 1.2.7 → 1.2.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/package.json CHANGED
@@ -1 +1 @@
1
- {"name":"sumor","type":"module","bin":{"sumor":"cli.js","sr":"cli.js"},"main":"./index.es.js","module":"./index.es.js","exports":{".":{"import":"./index.es.js"}},"dependencies":{"@vitejs/plugin-vue":"^4.2.3","chalk":"^5.3.0","commander":"^11.0.0","esbuild":"^0.19.3","fs-extra":"^11.1.1","vite":"^4.4.9","axios":"^1.4.0","@alicloud/sms-sdk":"^1.1.6","ali-oss":"6.1.1","body-parser":"^1.20.1","compression":"^1.7.4","cookie-parser":"^1.4.6","express":"^4.18.2","knex":"^2.1.0","multer":"^1.4.2","mysql2":"^3.1.0","serve-static":"^1.14.1","spdy":"^4.0.2","uuid":"^3.3.2","glob":"^10.3.4","jsrsasign":"^10.8.6","yaml":"^2.3.2","chokidar":"^3.5.3","http-proxy-middleware":"^2.0.6","archiver":"^2.1.1","extract-zip":"^1.6.6","inquirer":"^8.2.5","node-ssh":"^6.0.0","os-utils":"0.0.14","vite-plugin-rewrite-all":"^1.0.1"},"version":"1.2.7"}
1
+ {"name":"sumor","type":"module","bin":{"sumor":"cli.js","sr":"cli.js"},"main":"./index.es.js","module":"./index.es.js","exports":{".":{"import":"./index.es.js"}},"dependencies":{"@vitejs/plugin-vue":"^4.2.3","chalk":"^5.3.0","commander":"^11.0.0","esbuild":"^0.19.3","fs-extra":"^11.1.1","vite":"^4.4.9","axios":"^1.4.0","@alicloud/sms-sdk":"^1.1.6","ali-oss":"6.1.1","body-parser":"^1.20.1","compression":"^1.7.4","cookie-parser":"^1.4.6","express":"^4.18.2","knex":"^2.1.0","multer":"^1.4.2","mysql2":"^3.1.0","serve-static":"^1.14.1","spdy":"^4.0.2","uuid":"^3.3.2","glob":"^10.3.4","jsrsasign":"^10.8.6","yaml":"^2.3.2","chokidar":"^3.5.3","http-proxy-middleware":"^2.0.6","archiver":"^2.1.1","extract-zip":"^1.6.6","inquirer":"^8.2.5","node-ssh":"^6.0.0","os-utils":"0.0.14","vite-plugin-rewrite-all":"^1.0.1"},"version":"1.2.9"}
@@ -1,8 +1,9 @@
1
1
  import { createApp } from './main'
2
2
 
3
- const { app, router } = await createApp()
4
-
3
+ createApp().then(({ app, router }) => {
5
4
  // wait until router is ready before mounting to ensure hydration match
6
- router.isReady().then(() => {
7
- app.mount('#app')
8
- })
5
+ router.isReady().then(() => {
6
+ app.mount('#app')
7
+ })
8
+ });
9
+
@@ -87,11 +87,11 @@ h1,h2,h3,h4,h5,h6 {
87
87
  font-weight: 500;
88
88
  transition: color 0.3s ease;
89
89
  }
90
- html.dark{
91
- h1, h2, h3, h4, h5, h6 {
92
- color: $color-light;
93
- }
94
- }
90
+ //html.dark{
91
+ // h1, h2, h3, h4, h5, h6 {
92
+ // color: $color-light;
93
+ // }
94
+ //}
95
95
 
96
96
  p {
97
97
  margin-top: 0;
@@ -166,14 +166,14 @@ sup {
166
166
  }
167
167
 
168
168
  a {
169
+ color: inherit;
169
170
  text-decoration: none;
170
171
  outline: none;
171
172
  cursor: pointer;
172
173
  transition: color .3s;
173
- -webkit-text-decoration-skip: objects
174
+ -webkit-text-decoration-skip: objects;
174
175
  }
175
176
 
176
-
177
177
  a:active,a:hover {
178
178
  text-decoration: none;
179
179
  outline: 0
@@ -356,31 +356,31 @@ html{
356
356
  font-size: $font-size;
357
357
  color: $color-dark;
358
358
  background-color: $color-light;
359
- a{
360
- color:$color-dark;
361
- background-color: transparent;
362
-
363
- &:hover {
364
- color:rgba($color-dark, .9);
365
- }
366
- &:active {
367
- color:rgba($color-dark, .8);
368
- }
369
- }
359
+ //a{
360
+ // color:$color-dark;
361
+ // background-color: transparent;
362
+ //
363
+ // &:hover {
364
+ // color:rgba($color-dark, .9);
365
+ // }
366
+ // &:active {
367
+ // color:rgba($color-dark, .8);
368
+ // }
369
+ //}
370
370
  }
371
371
  html.dark{
372
372
  color: $color-light;
373
373
  background-color: $color-dark;
374
- a{
375
- color:$color-light;
376
-
377
- &:hover {
378
- color:rgba($color-light, .9);
379
- }
380
- &:active {
381
- color:rgba($color-light, .8);
382
- }
383
- }
374
+ //a{
375
+ // color:$color-light;
376
+ //
377
+ // &:hover {
378
+ // color:rgba($color-light, .9);
379
+ // }
380
+ // &:active {
381
+ // color:rgba($color-light, .8);
382
+ // }
383
+ //}
384
384
  }
385
385
 
386
386
  #app{