@pieai/pro-gov 0.3.4 → 0.3.5
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.
|
@@ -114,7 +114,9 @@ The workflow must keep:
|
|
|
114
114
|
- a GitHub-hosted runner
|
|
115
115
|
- npm CLI `11.5.1` or newer
|
|
116
116
|
- package `repository` fields that match the public GitHub repository
|
|
117
|
-
- `
|
|
117
|
+
- `pnpm pack` before publish, so workspace dependencies are converted in the
|
|
118
|
+
tarball
|
|
119
|
+
- `npm publish <tarball> --provenance --access public`
|
|
118
120
|
|
|
119
121
|
## After Release
|
|
120
122
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pieai/pro-gov",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"description": "Project-level distribution kit for Project Governance System.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai-agents",
|
|
@@ -34,16 +34,8 @@
|
|
|
34
34
|
"publishConfig": {
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
|
-
"scripts": {
|
|
38
|
-
"dev": "tsx src/cli.ts",
|
|
39
|
-
"build": "node scripts/copy-assets.mjs && node node_modules/esbuild/bin/esbuild src/cli.ts --bundle --platform=node --format=esm --target=node22 --banner:js=\"#!/usr/bin/env node\" --outfile=dist/cli.js && chmod +x dist/cli.js",
|
|
40
|
-
"prepack": "pnpm build",
|
|
41
|
-
"pretest": "pnpm --filter @pieai/doc-gov build && pnpm build",
|
|
42
|
-
"test": "tsx --test src/*.test.ts src/**/*.test.ts",
|
|
43
|
-
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
44
|
-
},
|
|
45
37
|
"dependencies": {
|
|
46
|
-
"@pieai/doc-gov": "
|
|
38
|
+
"@pieai/doc-gov": "^0.3.5"
|
|
47
39
|
},
|
|
48
40
|
"devDependencies": {
|
|
49
41
|
"@types/node": "25.0.0",
|
|
@@ -53,5 +45,12 @@
|
|
|
53
45
|
},
|
|
54
46
|
"engines": {
|
|
55
47
|
"node": ">=22.12.0"
|
|
48
|
+
},
|
|
49
|
+
"scripts": {
|
|
50
|
+
"dev": "tsx src/cli.ts",
|
|
51
|
+
"build": "node scripts/copy-assets.mjs && node node_modules/esbuild/bin/esbuild src/cli.ts --bundle --platform=node --format=esm --target=node22 --banner:js=\"#!/usr/bin/env node\" --outfile=dist/cli.js && chmod +x dist/cli.js",
|
|
52
|
+
"pretest": "pnpm --filter @pieai/doc-gov build && pnpm build",
|
|
53
|
+
"test": "tsx --test src/*.test.ts src/**/*.test.ts",
|
|
54
|
+
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
56
55
|
}
|
|
57
|
-
}
|
|
56
|
+
}
|