miolo 3.0.0-beta.212 → 3.0.0-beta.213
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
|
@@ -105,9 +105,9 @@ export function init_context_cache(config, logger) {
|
|
|
105
105
|
const versions = {}
|
|
106
106
|
for (const key of keys) {
|
|
107
107
|
const parts = key.split(":")
|
|
108
|
-
if (parts.length
|
|
109
|
-
const name = parts
|
|
110
|
-
const item = parts[
|
|
108
|
+
if (parts.length >= 3) {
|
|
109
|
+
const name = parts.slice(1, -1).join(":")
|
|
110
|
+
const item = parts[parts.length - 1]
|
|
111
111
|
const version = await cache_mother.getItem(key)
|
|
112
112
|
if (!versions[name]) {
|
|
113
113
|
versions[name] = {}
|
package/template/package.json
CHANGED
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"intre": "^3.0.0-beta.4",
|
|
46
46
|
"joi": "^18.2.3",
|
|
47
47
|
"lucide-react": "^1.21.0",
|
|
48
|
-
"miolo-cli": "^3.0.0-beta.
|
|
48
|
+
"miolo-cli": "^3.0.0-beta.213",
|
|
49
49
|
"miolo-model": "file:../miolo-model",
|
|
50
|
-
"miolo-react": "^3.0.0-beta.
|
|
50
|
+
"miolo-react": "^3.0.0-beta.213",
|
|
51
51
|
"next-themes": "^0.4.6",
|
|
52
52
|
"radix-ui": "^1.6.0",
|
|
53
53
|
"react": "^19.2.7",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"@biomejs/biome": "2.5.1",
|
|
65
|
-
"miolo": "^3.0.0-beta.
|
|
65
|
+
"miolo": "^3.0.0-beta.213",
|
|
66
66
|
"sass-embedded": "^1.100.0"
|
|
67
67
|
},
|
|
68
68
|
"overrides": {
|