@aerobuilt/template-minimal 0.1.0 → 0.1.1

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/README.md +2 -2
  2. package/package.json +24 -24
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @aerobuilt/template-minimal
2
2
 
3
- Minimal Aero template: one layout, index + about, `site.ts` only. No server, no content collections, no Alpine/HTMX. Use with `pnpm create aero my-app` (default) or `pnpm create aero my-app --template minimal`.
3
+ Minimal Aero template: one layout, index + about, `site.ts` only. No server, no content collections, no Alpine/HTMX. Use with `pnpm create aerobuilt my-app` (default) or `pnpm create aerobuilt my-app --template minimal`.
4
4
 
5
5
  ## Structure
6
6
 
@@ -11,7 +11,7 @@ Minimal Aero template: one layout, index + about, `site.ts` only. No server, no
11
11
 
12
12
  ## Commands
13
13
 
14
- From the scaffolded project (after `pnpm create aero my-app`):
14
+ From the scaffolded project (after `pnpm create aerobuilt my-app`):
15
15
 
16
16
  - `pnpm dev` — Vite dev server
17
17
  - `pnpm build` — Static build to `dist/`
package/package.json CHANGED
@@ -1,25 +1,25 @@
1
1
  {
2
- "name": "@aerobuilt/template-minimal",
3
- "version": "0.1.0",
4
- "type": "module",
5
- "license": "MIT",
6
- "author": "Jamie Wilson",
7
- "repository": {
8
- "type": "git",
9
- "url": "https://github.com/aerobuilt/aero.git",
10
- "directory": "packages/templates/minimal"
11
- },
12
- "homepage": "https://github.com/aerobuilt/aero",
13
- "dependencies": {
14
- "aerobuilt": "0.1.0"
15
- },
16
- "devDependencies": {
17
- "autoprefixer": "^10.4.24",
18
- "vite": "8.0.0-beta.15"
19
- },
20
- "scripts": {
21
- "dev": "vite dev",
22
- "build": "vite build",
23
- "preview": "vite build && vite preview"
24
- }
25
- }
2
+ "name": "@aerobuilt/template-minimal",
3
+ "version": "0.1.1",
4
+ "type": "module",
5
+ "license": "MIT",
6
+ "author": "Jamie Wilson",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/aerobuilt/aero.git",
10
+ "directory": "packages/templates/minimal"
11
+ },
12
+ "homepage": "https://github.com/aerobuilt/aero",
13
+ "scripts": {
14
+ "dev": "vite dev",
15
+ "build": "vite build",
16
+ "preview": "vite build && vite preview"
17
+ },
18
+ "dependencies": {
19
+ "aerobuilt": "workspace:*"
20
+ },
21
+ "devDependencies": {
22
+ "autoprefixer": "^10.4.24",
23
+ "vite": "8.0.0-beta.15"
24
+ }
25
+ }