@nuasite/nua 0.0.6 → 0.0.8

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 +21 -8
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1,15 +1,28 @@
1
- # core
1
+ # @nuasite/nua
2
2
 
3
- To install dependencies:
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
- ```bash
6
- bun install
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
- To run:
19
+ ## Install
10
20
 
11
21
  ```bash
12
- bun run src/index.ts
22
+ bun add -d @nuasite/nua
13
23
  ```
14
24
 
15
- This project was created using `bun init` in bun v1.3.2. [Bun](https://bun.com) is a fast all-in-one JavaScript runtime.
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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuasite/nua",
3
- "version": "0.0.6",
3
+ "version": "0.0.8",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -12,9 +12,9 @@
12
12
  "@astrojs/mdx": "4.3.0",
13
13
  "@astrojs/rss": "4.0.11",
14
14
  "@astrojs/sitemap": "3.4.1",
15
- "@nuasite/build": "workspace:*",
16
- "@nuasite/components": "workspace:*",
17
- "@nuasite/core": "workspace:*",
15
+ "@nuasite/build": "0.0.8",
16
+ "@nuasite/components": "0.0.8",
17
+ "@nuasite/core": "0.0.8",
18
18
  "@tailwindcss/vite": "^4.1.11",
19
19
  "astro": "^5.12.4",
20
20
  "flowbite": "^3.1.2",