@postman-cse/onboarding-bootstrap 2.9.4 → 2.9.6
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/README.md +11 -2
- package/action.yml +26 -2
- package/dist/action.cjs +1336 -1311
- package/dist/cli.cjs +1359 -1319
- package/dist/index.cjs +1353 -1313
- package/package.json +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@postman-cse/onboarding-bootstrap",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.6",
|
|
4
4
|
"description": "Bootstrap Postman workspaces, specs, and collections from OpenAPI.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -18,8 +18,9 @@
|
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
20
|
"prepare": "git config core.hooksPath .githooks",
|
|
21
|
-
"bundle": "rm -rf dist && esbuild src/index.ts --bundle --platform=node --target=node24 --format=cjs --alias:jsonc-parser=jsonc-parser/lib/esm/main.js --outfile=dist/index.cjs && esbuild src/main.ts --bundle --platform=node --target=node24 --format=cjs --alias:jsonc-parser=jsonc-parser/lib/esm/main.js --outfile=dist/action.cjs && esbuild src/cli.ts --bundle --platform=node --target=node24 --format=cjs --alias:jsonc-parser=jsonc-parser/lib/esm/main.js --banner:js='#!/usr/bin/env node' --outfile=dist/cli.cjs && chmod 755 dist/cli.cjs",
|
|
21
|
+
"bundle": "rm -rf dist && esbuild src/index.ts --bundle --platform=node --target=node24 --format=cjs --alias:jsonc-parser=jsonc-parser/lib/esm/main.js --define:__SEA_VERSION__=undefined --outfile=dist/index.cjs && esbuild src/main.ts --bundle --platform=node --target=node24 --format=cjs --alias:jsonc-parser=jsonc-parser/lib/esm/main.js --define:__SEA_VERSION__=undefined --outfile=dist/action.cjs && esbuild src/cli.ts --bundle --platform=node --target=node24 --format=cjs --alias:jsonc-parser=jsonc-parser/lib/esm/main.js --define:__SEA_VERSION__=undefined --banner:js='#!/usr/bin/env node' --outfile=dist/cli.cjs && chmod 755 dist/cli.cjs",
|
|
22
22
|
"build": "npm run typecheck && npm run bundle",
|
|
23
|
+
"build:sea": "bash scripts/build-sea.sh",
|
|
23
24
|
"verify:dist:assert": "git diff --ignore-space-at-eol --text --exit-code -- dist && node scripts/verify-dist-artifact.mjs",
|
|
24
25
|
"verify:dist": "npm run build && npm run verify:dist:assert",
|
|
25
26
|
"docs:tables": "node scripts/render-action-tables.mjs",
|
|
@@ -68,6 +69,7 @@
|
|
|
68
69
|
"@types/node": "^26.1.0",
|
|
69
70
|
"esbuild": "0.28.1",
|
|
70
71
|
"eslint": "^10.4.1",
|
|
72
|
+
"postject": "1.0.0-alpha.6",
|
|
71
73
|
"typescript": "^6.0.3",
|
|
72
74
|
"typescript-eslint": "^8.60.0",
|
|
73
75
|
"vitest": "^4.1.7",
|
|
@@ -77,4 +79,4 @@
|
|
|
77
79
|
"type": "git",
|
|
78
80
|
"url": "https://github.com/postman-cs/postman-bootstrap-action"
|
|
79
81
|
}
|
|
80
|
-
}
|
|
82
|
+
}
|