@leanspec/ui 0.2.6-dev.20251126030344 → 0.2.6-dev.20251126033915
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/.next/standalone/packages/ui/.next/BUILD_ID +1 -1
- package/.next/standalone/packages/ui/.next/build-manifest.json +2 -2
- package/.next/standalone/packages/ui/.next/prerender-manifest.json +3 -3
- package/.next/standalone/packages/ui/.next/server/app/_global-error.html +2 -2
- package/.next/standalone/packages/ui/.next/server/app/_global-error.rsc +1 -1
- package/.next/standalone/packages/ui/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
- package/.next/standalone/packages/ui/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
- package/.next/standalone/packages/ui/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
- package/.next/standalone/packages/ui/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/.next/standalone/packages/ui/.next/server/app/_not-found.html +2 -2
- package/.next/standalone/packages/ui/.next/server/app/_not-found.rsc +1 -1
- package/.next/standalone/packages/ui/.next/server/app/_not-found.segments/_full.segment.rsc +1 -1
- package/.next/standalone/packages/ui/.next/server/app/_not-found.segments/_index.segment.rsc +1 -1
- package/.next/standalone/packages/ui/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +1 -1
- package/.next/standalone/packages/ui/.next/server/app/_not-found.segments/_not-found.segment.rsc +1 -1
- package/.next/standalone/packages/ui/.next/server/app/_not-found.segments/_tree.segment.rsc +1 -1
- package/.next/standalone/packages/ui/.next/server/app/projects.html +2 -2
- package/.next/standalone/packages/ui/.next/server/app/projects.rsc +1 -1
- package/.next/standalone/packages/ui/.next/server/app/projects.segments/_full.segment.rsc +1 -1
- package/.next/standalone/packages/ui/.next/server/app/projects.segments/_index.segment.rsc +1 -1
- package/.next/standalone/packages/ui/.next/server/app/projects.segments/_tree.segment.rsc +1 -1
- package/.next/standalone/packages/ui/.next/server/app/projects.segments/projects/__PAGE__.segment.rsc +1 -1
- package/.next/standalone/packages/ui/.next/server/app/projects.segments/projects.segment.rsc +1 -1
- package/.next/standalone/packages/ui/.next/server/pages/404.html +2 -2
- package/.next/standalone/packages/ui/.next/server/pages/500.html +2 -2
- package/.next/standalone/packages/ui/.next/server/server-reference-manifest.js +1 -1
- package/.next/standalone/packages/ui/.next/server/server-reference-manifest.json +1 -1
- package/.next/standalone/packages/ui/package.json +2 -2
- package/.next/standalone/packages/ui/scripts/post-build.mjs +9 -8
- package/package.json +2 -2
- package/.next/standalone/packages/ui/leanspec.db +0 -0
- /package/.next/standalone/packages/ui/.next/static/{rG2VrO48F14t3Q-GiojJI → q0z6ezEMRW6qTGZQexGHV}/_buildManifest.js +0 -0
- /package/.next/standalone/packages/ui/.next/static/{rG2VrO48F14t3Q-GiojJI → q0z6ezEMRW6qTGZQexGHV}/_clientMiddlewareManifest.json +0 -0
- /package/.next/standalone/packages/ui/.next/static/{rG2VrO48F14t3Q-GiojJI → q0z6ezEMRW6qTGZQexGHV}/_ssgManifest.js +0 -0
- /package/.next/static/{rG2VrO48F14t3Q-GiojJI → q0z6ezEMRW6qTGZQexGHV}/_buildManifest.js +0 -0
- /package/.next/static/{rG2VrO48F14t3Q-GiojJI → q0z6ezEMRW6qTGZQexGHV}/_clientMiddlewareManifest.json +0 -0
- /package/.next/static/{rG2VrO48F14t3Q-GiojJI → q0z6ezEMRW6qTGZQexGHV}/_ssgManifest.js +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leanspec/ui",
|
|
3
|
-
"version": "0.2.6-dev.
|
|
3
|
+
"version": "0.2.6-dev.20251126033915",
|
|
4
4
|
"description": "LeanSpec web UI launcher for visual spec management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
10
|
"dev": "next dev",
|
|
11
|
-
"build": "
|
|
11
|
+
"build": "next build && node ./scripts/post-build.mjs",
|
|
12
12
|
"start": "next start",
|
|
13
13
|
"lint": "eslint",
|
|
14
14
|
"typecheck": "tsc --noEmit",
|
|
@@ -6,6 +6,7 @@ import { fileURLToPath } from 'node:url';
|
|
|
6
6
|
const __filename = fileURLToPath(import.meta.url);
|
|
7
7
|
const __dirname = dirname(__filename);
|
|
8
8
|
const pkgDir = join(__dirname, '..');
|
|
9
|
+
const repoRoot = join(pkgDir, '../..');
|
|
9
10
|
|
|
10
11
|
// Copy static assets into standalone build
|
|
11
12
|
const staticSrc = join(pkgDir, '.next', 'static');
|
|
@@ -14,9 +15,9 @@ const staticDest = join(pkgDir, '.next', 'standalone', 'packages', 'ui', '.next'
|
|
|
14
15
|
const publicSrc = join(pkgDir, 'public');
|
|
15
16
|
const publicDest = join(pkgDir, '.next', 'standalone', 'packages', 'ui', 'public');
|
|
16
17
|
|
|
17
|
-
// Copy
|
|
18
|
-
const
|
|
19
|
-
const
|
|
18
|
+
// Copy specs directory to standalone build (for filesystem mode)
|
|
19
|
+
const specsSrc = join(repoRoot, 'specs');
|
|
20
|
+
const specsDest = join(pkgDir, '.next', 'standalone', 'specs');
|
|
20
21
|
|
|
21
22
|
try {
|
|
22
23
|
await cp(staticSrc, staticDest, { recursive: true, force: true });
|
|
@@ -25,13 +26,13 @@ try {
|
|
|
25
26
|
await cp(publicSrc, publicDest, { recursive: true, force: true });
|
|
26
27
|
console.log('✓ Copied public assets to standalone build');
|
|
27
28
|
|
|
28
|
-
// Copy
|
|
29
|
+
// Copy specs directory for filesystem mode
|
|
29
30
|
try {
|
|
30
|
-
await access(
|
|
31
|
-
await cp(
|
|
32
|
-
console.log('✓ Copied
|
|
31
|
+
await access(specsSrc, constants.F_OK);
|
|
32
|
+
await cp(specsSrc, specsDest, { recursive: true, force: true });
|
|
33
|
+
console.log('✓ Copied specs to standalone build');
|
|
33
34
|
} catch {
|
|
34
|
-
console.log('⚠ No
|
|
35
|
+
console.log('⚠ No specs directory found (skipping specs copy)');
|
|
35
36
|
}
|
|
36
37
|
} catch (error) {
|
|
37
38
|
console.error('Failed to copy assets:', error);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leanspec/ui",
|
|
3
|
-
"version": "0.2.6-dev.
|
|
3
|
+
"version": "0.2.6-dev.20251126033915",
|
|
4
4
|
"description": "LeanSpec web UI launcher for visual spec management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
10
|
"dev": "next dev",
|
|
11
|
-
"build": "
|
|
11
|
+
"build": "next build && node ./scripts/post-build.mjs",
|
|
12
12
|
"start": "next start",
|
|
13
13
|
"lint": "eslint",
|
|
14
14
|
"typecheck": "tsc --noEmit",
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/.next/static/{rG2VrO48F14t3Q-GiojJI → q0z6ezEMRW6qTGZQexGHV}/_clientMiddlewareManifest.json
RENAMED
|
File without changes
|
|
File without changes
|