uniweb 0.2.23 → 0.2.25
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 +4 -4
- package/src/versions.js +5 -5
- package/templates/multi/sites/main/pages/about/1-about.md.hbs +13 -0
- package/templates/multi/sites/main/pages/about/page.yml +2 -0
- package/templates/multi/sites/main/pages/home/1-welcome.md.hbs +1 -1
- package/templates/single/site/pages/about/1-about.md.hbs +13 -0
- package/templates/single/site/pages/about/page.yml +2 -0
- package/templates/single/site/pages/home/1-welcome.md.hbs +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uniweb",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.25",
|
|
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.
|
|
40
|
+
"@uniweb/runtime": "0.2.5",
|
|
41
|
+
"@uniweb/build": "0.1.10",
|
|
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.
|
|
71
|
-
'@uniweb/core': resolveVersionSpec(deps['@uniweb/core'], '^0.1.
|
|
72
|
-
'@uniweb/kit': resolveVersionSpec(deps['@uniweb/kit'], '^0.1.
|
|
73
|
-
'@uniweb/runtime': resolveVersionSpec(deps['@uniweb/runtime'], '^0.
|
|
74
|
-
'@uniweb/templates': resolveVersionSpec(deps['@uniweb/templates'], '^0.1.
|
|
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}`,
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
type: Section
|
|
3
|
+
theme: dark
|
|
4
|
+
align: center
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# About {{projectName}}
|
|
8
|
+
|
|
9
|
+
## A second page to demonstrate routing
|
|
10
|
+
|
|
11
|
+
This page uses a dark theme. Click the link below to navigate back to the home page and see the theme change.
|
|
12
|
+
|
|
13
|
+
[Back to Home](/)
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
type: Section
|
|
3
|
+
theme: dark
|
|
4
|
+
align: center
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# About {{projectName}}
|
|
8
|
+
|
|
9
|
+
## A second page to demonstrate routing
|
|
10
|
+
|
|
11
|
+
This page uses a dark theme. Click the link below to navigate back to the home page and see the theme change.
|
|
12
|
+
|
|
13
|
+
[Back to Home](/)
|
|
@@ -10,5 +10,5 @@ align: center
|
|
|
10
10
|
|
|
11
11
|
This is a minimal starting point for your Uniweb project. Edit the content in `site/pages/` and customize the components in `foundation/src/components/`.
|
|
12
12
|
|
|
13
|
-
[
|
|
13
|
+
[About](/about)
|
|
14
14
|
[Documentation](https://github.com/uniweb)
|