@viliha/vui-ui 1.6.1 → 1.6.2
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/CHANGELOG.md +9 -0
- package/package.json +1 -1
- package/template/next.config.ts +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,15 @@ backward-compatible features, **major** for breaking changes.
|
|
|
7
7
|
|
|
8
8
|
To upgrade, see [Upgrading](./AGENT.md#upgrading) in the agent guide.
|
|
9
9
|
|
|
10
|
+
## 1.6.2 — 2026-07-25
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- The scaffolded `next.config.ts` now pins `turbopack.root` to the app dir, so
|
|
15
|
+
Next.js no longer infers the workspace root from a stray lockfile higher up the
|
|
16
|
+
tree (a home-dir `bun.lock`, or an outer monorepo) and emits the "inferred your
|
|
17
|
+
workspace root, but it may not be correct" warning.
|
|
18
|
+
|
|
10
19
|
## 1.6.1 — 2026-07-25
|
|
11
20
|
|
|
12
21
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@viliha/vui-ui",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.2",
|
|
4
4
|
"description": "Vui UI — a clean, token-driven React admin/CRM component library built on Tailwind CSS v4, shadcn-style patterns, and Radix Icons. Ships as TypeScript source (Just-in-Time), compiled by the consuming app.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Suman Bonakurthi",
|
package/template/next.config.ts
CHANGED
|
@@ -2,6 +2,9 @@ import type { NextConfig } from "next";
|
|
|
2
2
|
|
|
3
3
|
const nextConfig: NextConfig = {
|
|
4
4
|
reactStrictMode: true,
|
|
5
|
+
// Pin the workspace root to this app so Next doesn't infer it from a stray
|
|
6
|
+
// lockfile higher up the tree (e.g. a home-dir bun.lock or an outer monorepo).
|
|
7
|
+
turbopack: { root: __dirname },
|
|
5
8
|
// VUI ships as TypeScript source — Next must transpile it.
|
|
6
9
|
transpilePackages: ["@viliha/vui-ui"],
|
|
7
10
|
// Static export makes the open-tabs keep-alive work (all client at runtime).
|