@orkestrel/scaffold 0.0.13 → 0.0.15
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/dist/host/claude/agents/orkestrel.md +41 -38
- package/dist/host/guides/src/scaffold.md +28 -17
- package/dist/src/core/index.cjs +57 -57
- package/dist/src/core/index.cjs.map +1 -1
- package/dist/src/core/index.d.cts +10 -8
- package/dist/src/core/index.d.ts +10 -8
- package/dist/src/core/index.js +57 -57
- package/dist/src/core/index.js.map +1 -1
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orkestrel/scaffold",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"description": "Blueprint-to-plan package scaffolding, auditing, dependency guide/version pulling, and fleet-wide shared-file upkeep for the @orkestrel line.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"audit",
|
|
@@ -84,13 +84,14 @@
|
|
|
84
84
|
"test:equivalence": "node -e \"const c=require('node:child_process'),n=process.platform==='win32'?'npm.cmd':'npm',r=c.spawnSync(n,['run','test:integration'],{stdio:'inherit',env:{...process.env,SCAFFOLD_BOUNDARY_EQUIVALENCE:'1'}});process.exit(r.status??1)\"",
|
|
85
85
|
"test:policy": "vitest run --config vite.config.ts --no-cache --reporter=dot --project policy",
|
|
86
86
|
"test:guides": "vitest run --config vite.config.ts --reporter=dot --project guides",
|
|
87
|
+
"pin": "vitest run --config vite.config.ts --no-cache --project src:core -t pinPlan -u",
|
|
87
88
|
"build": "npm run clean && npm run build:src && npm run build:host",
|
|
88
89
|
"build:src": "npm run build:src:core && npm run build:src:server && npm run build:src:bin",
|
|
89
90
|
"build:src:core": "vite build --config configs/src/vite.core.config.ts && npm run copy dist/src/core/index.d.ts dist/src/core/index.d.cts",
|
|
90
91
|
"build:src:server": "vite build --config configs/src/vite.server.config.ts && npm run copy dist/src/server/index.d.ts dist/src/server/index.d.cts",
|
|
91
92
|
"build:src:bin": "vite build --config configs/src/vite.bin.config.ts",
|
|
92
93
|
"build:host": "node -e \"import('./dist/src/server/index.js').then((m)=>{const n=m.stageHost(process.cwd(),'dist/host').length;console.log('build-host: staged '+n+' file(s) into dist/host')})\"",
|
|
93
|
-
"prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test && npm run test:integration"
|
|
94
|
+
"prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm run pin && npm test && npm run test:integration"
|
|
94
95
|
},
|
|
95
96
|
"dependencies": {
|
|
96
97
|
"@orkestrel/console": "^0.0.4",
|
|
@@ -109,7 +110,7 @@
|
|
|
109
110
|
"oxlint": "^1.76.0",
|
|
110
111
|
"playwright": "^1.62.1",
|
|
111
112
|
"typescript": "^6.0.3",
|
|
112
|
-
"vite": "
|
|
113
|
+
"vite": "~8.2.0",
|
|
113
114
|
"vite-plugin-dts": "^5.0.3",
|
|
114
115
|
"vitest": "^4.1.10"
|
|
115
116
|
},
|