uniweb 0.2.23 → 0.2.24

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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/src/versions.js +5 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uniweb",
3
- "version": "0.2.23",
3
+ "version": "0.2.24",
4
4
  "description": "Create structured Vite + React sites with content/code separation",
5
5
  "type": "module",
6
6
  "bin": {
@@ -36,9 +36,9 @@
36
36
  "js-yaml": "^4.1.0",
37
37
  "prompts": "^2.4.2",
38
38
  "tar": "^7.0.0",
39
- "@uniweb/build": "0.1.9",
40
- "@uniweb/kit": "0.1.4",
41
39
  "@uniweb/core": "0.1.6",
42
- "@uniweb/runtime": "0.2.3"
40
+ "@uniweb/build": "0.1.10",
41
+ "@uniweb/runtime": "0.2.4",
42
+ "@uniweb/kit": "0.1.4"
43
43
  }
44
44
  }
package/src/versions.js CHANGED
@@ -67,11 +67,11 @@ export function getResolvedVersions() {
67
67
  // When publishing with pnpm, workspace:* gets resolved to actual versions.
68
68
  // Fallbacks are only used during local development.
69
69
  resolvedVersions = {
70
- '@uniweb/build': resolveVersionSpec(deps['@uniweb/build'], '^0.1.0'),
71
- '@uniweb/core': resolveVersionSpec(deps['@uniweb/core'], '^0.1.0'),
72
- '@uniweb/kit': resolveVersionSpec(deps['@uniweb/kit'], '^0.1.0'),
73
- '@uniweb/runtime': resolveVersionSpec(deps['@uniweb/runtime'], '^0.1.0'),
74
- '@uniweb/templates': resolveVersionSpec(deps['@uniweb/templates'], '^0.1.0'),
70
+ '@uniweb/build': resolveVersionSpec(deps['@uniweb/build'], '^0.1.10'),
71
+ '@uniweb/core': resolveVersionSpec(deps['@uniweb/core'], '^0.1.6'),
72
+ '@uniweb/kit': resolveVersionSpec(deps['@uniweb/kit'], '^0.1.4'),
73
+ '@uniweb/runtime': resolveVersionSpec(deps['@uniweb/runtime'], '^0.2.3'),
74
+ '@uniweb/templates': resolveVersionSpec(deps['@uniweb/templates'], '^0.1.6'),
75
75
 
76
76
  // CLI itself (use current version)
77
77
  'uniweb': `^${pkg.version}`,