@nuasite/nua 0.0.6 → 0.0.7
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/README.md +21 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,15 +1,28 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @nuasite/nua
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
`@nuasite/nua` is the meta package that mirrors the toolchain Nua Site uses
|
|
4
|
+
during the build phase. Add it to your project to pull in the exact versions of
|
|
5
|
+
Astro, Tailwind CSS, and the Nua Site packages that deploy your site so local
|
|
6
|
+
runs behave exactly like the hosted service.
|
|
4
7
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
+
## What's included
|
|
9
|
+
|
|
10
|
+
Installing `@nuasite/nua` brings along:
|
|
11
|
+
|
|
12
|
+
- `astro` plus the Nua-specific `nua-build` wrapper (`@nuasite/build`)
|
|
13
|
+
- Official Astro integrations (`@astrojs/check`, `@astrojs/mdx`, `@astrojs/rss`,
|
|
14
|
+
`@astrojs/sitemap`)
|
|
15
|
+
- Tailwind CSS 4 + Flowbite, wired through `@tailwindcss/vite`
|
|
16
|
+
- Shared UI primitives from `@nuasite/components`
|
|
17
|
+
- The baseline dependency manifest from `@nuasite/core`
|
|
8
18
|
|
|
9
|
-
|
|
19
|
+
## Install
|
|
10
20
|
|
|
11
21
|
```bash
|
|
12
|
-
bun
|
|
22
|
+
bun add -d @nuasite/nua
|
|
13
23
|
```
|
|
14
24
|
|
|
15
|
-
This
|
|
25
|
+
This ensures every developer machine and CI job installs the same stack that
|
|
26
|
+
Nua Site uses when publishing your project. After installing, run your normal
|
|
27
|
+
build command (for example `bunx nua-build` or `bun run build`) and the exact
|
|
28
|
+
same toolchain will execute locally.
|