mango-cms 0.1.20 → 0.1.22
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/cli.js +7 -11
- package/default/package.json +33 -32
- package/index.js +2 -2
- package/package.json +1 -2
package/cli.js
CHANGED
|
@@ -1,16 +1,12 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import { fileURLToPath } from 'url';
|
|
11
|
-
|
|
12
|
-
const __filename = fileURLToPath(import.meta.url);
|
|
13
|
-
const __dirname = path.dirname(__filename);
|
|
3
|
+
const { Command } = require('commander');
|
|
4
|
+
const { execSync } = require('child_process');
|
|
5
|
+
const path = require('path');
|
|
6
|
+
const inquirer = require('inquirer');
|
|
7
|
+
const fs = require('fs-extra');
|
|
8
|
+
const axios = require('axios');
|
|
9
|
+
const AdmZip = require('adm-zip');
|
|
14
10
|
|
|
15
11
|
const program = new Command();
|
|
16
12
|
|
package/default/package.json
CHANGED
|
@@ -2,40 +2,41 @@
|
|
|
2
2
|
"name": "mango-front",
|
|
3
3
|
"version": "0.0.0",
|
|
4
4
|
"scripts": {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
"dev": "vite",
|
|
6
|
+
"build": "vite build",
|
|
7
|
+
"preview": "vite preview",
|
|
8
|
+
"mango": "mango"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
11
|
+
"@headlessui/vue": "^1.6.7",
|
|
12
|
+
"@mapbox/mapbox-gl-geocoder": "^5.0.0",
|
|
13
|
+
"@sweetalert2/theme-dark": "^5.0.10",
|
|
14
|
+
"@tinymce/tinymce-vue": "^4",
|
|
15
|
+
"@vitejs/plugin-vue": "^5.2.3",
|
|
16
|
+
"@vueup/vue-quill": "^1.0.0-beta.7",
|
|
17
|
+
"@vueuse/motion": "^2.0.0-beta.12",
|
|
18
|
+
"algoliasearch": "^4.12.0",
|
|
19
|
+
"axios": "^0.24.0",
|
|
20
|
+
"canvas-confetti": "^1.5.1",
|
|
21
|
+
"datebook": "^7.0.8",
|
|
22
|
+
"dayjs": "^1.10.7",
|
|
23
|
+
"express": "^4.18.1",
|
|
24
|
+
"google-maps": "^4.3.3",
|
|
25
|
+
"mango-cms": "^0.1.20",
|
|
26
|
+
"mapbox-gl": "^2.7.0",
|
|
27
|
+
"sweetalert2": "^11.4.0",
|
|
28
|
+
"vite": "^6.2.2",
|
|
29
|
+
"vue": "^3.2.37",
|
|
30
|
+
"vue-router": "4",
|
|
31
|
+
"vue-slider-component": "^4.0.0-beta.4",
|
|
32
|
+
"vue-upload-component": "^3.1.2",
|
|
33
|
+
"vue3-clipboard": "^1.0.0",
|
|
34
|
+
"vue3-touch-events": "^4.1.0",
|
|
35
|
+
"vuedraggable": "^4.1.0"
|
|
34
36
|
},
|
|
35
37
|
"devDependencies": {
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
"vite": "^4.5.9"
|
|
38
|
+
"autoprefixer": "^10.4.0",
|
|
39
|
+
"postcss": "^8.4.5",
|
|
40
|
+
"tailwindcss": "^3.0.2"
|
|
40
41
|
}
|
|
41
|
-
|
|
42
|
+
}
|
package/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { default as mango } from './default/
|
|
2
|
-
export { default as Mango } from './default/
|
|
1
|
+
export { default as mango } from './default/src/helpers/mango.js'
|
|
2
|
+
export { default as Mango } from './default/src/helpers/Mango.vue'
|