@vue-skuilder/cli 0.1.13-8 → 0.1.13
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.
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.1.13
|
|
6
|
+
"version": "0.1.13",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "./dist-lib/questions.cjs.js",
|
|
9
9
|
"module": "./dist-lib/questions.mjs",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"vue-tsc": "^1.8.0",
|
|
59
59
|
"wait-on": "8.0.2"
|
|
60
60
|
},
|
|
61
|
-
"stableVersion": "0.1.
|
|
61
|
+
"stableVersion": "0.1.13"
|
|
62
62
|
}
|
|
@@ -169,11 +169,18 @@ import config from '../skuilder.config.json';
|
|
|
169
169
|
app.use(piniaPlugin, { pinia });
|
|
170
170
|
|
|
171
171
|
await useAuthStore().init();
|
|
172
|
-
|
|
172
|
+
|
|
173
173
|
// Initialize config store to load user settings (including dark mode)
|
|
174
174
|
const { useConfigStore } = await import('@vue-skuilder/common-ui');
|
|
175
175
|
await useConfigStore().init();
|
|
176
176
|
|
|
177
|
+
// Provide inline markdown components for MarkdownRenderer
|
|
178
|
+
// Enables custom Vue components in markdown via {{ <component-name /> }} syntax
|
|
179
|
+
// See docs: https://patched-network.github.io/vue-skuilder/do/inline-components
|
|
180
|
+
app.provide('markdownComponents', {
|
|
181
|
+
// Empty - add components as needed
|
|
182
|
+
});
|
|
183
|
+
|
|
177
184
|
// Auto-register user for the course in standalone mode
|
|
178
185
|
if (config.course) {
|
|
179
186
|
try {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.1.13
|
|
6
|
+
"version": "0.1.13",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"scripts": {
|
|
9
9
|
"dev": "vite",
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"vite": "^6.0.9",
|
|
33
33
|
"vue-tsc": "^1.8.0"
|
|
34
34
|
},
|
|
35
|
-
"stableVersion": "0.1.
|
|
35
|
+
"stableVersion": "0.1.13"
|
|
36
36
|
}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.1.13
|
|
6
|
+
"version": "0.1.13",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"description": "CLI scaffolding tool for vue-skuilder projects",
|
|
9
9
|
"bin": {
|
|
@@ -38,13 +38,13 @@
|
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@mdi/font": "^7.3.67",
|
|
41
|
-
"@vue-skuilder/common": "0.1.13
|
|
42
|
-
"@vue-skuilder/common-ui": "0.1.13
|
|
43
|
-
"@vue-skuilder/courseware": "0.1.13
|
|
44
|
-
"@vue-skuilder/db": "0.1.13
|
|
45
|
-
"@vue-skuilder/edit-ui": "0.1.13
|
|
46
|
-
"@vue-skuilder/express": "0.1.13
|
|
47
|
-
"@vue-skuilder/mcp": "0.1.13
|
|
41
|
+
"@vue-skuilder/common": "0.1.13",
|
|
42
|
+
"@vue-skuilder/common-ui": "0.1.13",
|
|
43
|
+
"@vue-skuilder/courseware": "0.1.13",
|
|
44
|
+
"@vue-skuilder/db": "0.1.13",
|
|
45
|
+
"@vue-skuilder/edit-ui": "0.1.13",
|
|
46
|
+
"@vue-skuilder/express": "0.1.13",
|
|
47
|
+
"@vue-skuilder/mcp": "0.1.13",
|
|
48
48
|
"chalk": "^5.3.0",
|
|
49
49
|
"commander": "^11.0.0",
|
|
50
50
|
"fs-extra": "^11.2.0",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"@types/node": "^20.0.0",
|
|
64
64
|
"@types/serve-static": "^1.15.0",
|
|
65
65
|
"@vitejs/plugin-vue": "^5.2.1",
|
|
66
|
-
"@vue-skuilder/studio-ui": "0.1.13
|
|
66
|
+
"@vue-skuilder/studio-ui": "0.1.13",
|
|
67
67
|
"typescript": "~5.7.2",
|
|
68
68
|
"vite": "^6.0.9",
|
|
69
69
|
"vue-tsc": "^1.8.0"
|
|
@@ -72,5 +72,5 @@
|
|
|
72
72
|
"node": ">=18.0.0"
|
|
73
73
|
},
|
|
74
74
|
"packageManager": "yarn@4.6.0",
|
|
75
|
-
"stableVersion": "0.1.
|
|
75
|
+
"stableVersion": "0.1.13"
|
|
76
76
|
}
|