@postman-cse/onboarding-repo-sync 2.1.8 → 2.1.10
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 +22 -0
- package/action.yml +4 -0
- package/dist/action.cjs +16120 -6667
- package/dist/cli.cjs +16059 -6602
- package/dist/index.cjs +16120 -6666
- package/package.json +15 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@postman-cse/onboarding-repo-sync",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.10",
|
|
4
4
|
"description": "Postman repo sync GitHub Action.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -16,8 +16,9 @@
|
|
|
16
16
|
},
|
|
17
17
|
"scripts": {
|
|
18
18
|
"prepare": "git config core.hooksPath .githooks",
|
|
19
|
-
"bundle": "
|
|
19
|
+
"bundle": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\" && esbuild src/index.ts --bundle --platform=node --target=node24 --format=cjs --define:__SEA_VERSION__=undefined --outfile=dist/index.cjs && esbuild src/main.ts --bundle --platform=node --target=node24 --format=cjs --define:__SEA_VERSION__=undefined --outfile=dist/action.cjs && esbuild src/cli.ts --bundle --platform=node --target=node24 --format=cjs --define:__SEA_VERSION__=undefined --banner:js=\"#!/usr/bin/env node\" --outfile=dist/cli.cjs && node -e \"if(process.platform!=='win32')require('node:fs').chmodSync('dist/cli.cjs',0o755)\"",
|
|
20
20
|
"build": "npm run typecheck && npm run bundle",
|
|
21
|
+
"build:sea": "bash scripts/build-sea.sh",
|
|
21
22
|
"verify:dist:assert": "git diff --ignore-space-at-eol --text --exit-code -- dist && node scripts/verify-dist-artifact.mjs",
|
|
22
23
|
"verify:dist": "npm run build && npm run verify:dist:assert",
|
|
23
24
|
"docs:tables": "node scripts/render-action-tables.mjs",
|
|
@@ -35,29 +36,31 @@
|
|
|
35
36
|
"access": "public"
|
|
36
37
|
},
|
|
37
38
|
"overrides": {
|
|
38
|
-
"undici": "^
|
|
39
|
-
"picomatch": ">=4.0.4"
|
|
39
|
+
"undici": "^8.8.0",
|
|
40
|
+
"picomatch": ">=4.0.4",
|
|
41
|
+
"uuid": "11.1.1"
|
|
40
42
|
},
|
|
41
43
|
"dependencies": {
|
|
42
44
|
"@actions/core": "^3.0.1",
|
|
43
45
|
"@actions/exec": "^3.0.0",
|
|
44
46
|
"@postman-cse/automation-telemetry-core": "^0.2.0",
|
|
45
|
-
"@postman/runtime.models": "^1.
|
|
46
|
-
"@postman/v3.export": "^0.2.
|
|
47
|
+
"@postman/runtime.models": "^1.13.1",
|
|
48
|
+
"@postman/v3.export": "^0.2.28",
|
|
47
49
|
"js-yaml": "^5.2.1",
|
|
48
|
-
"undici": "^
|
|
50
|
+
"undici": "^8.8.0"
|
|
49
51
|
},
|
|
50
52
|
"devDependencies": {
|
|
51
|
-
"@commitlint/cli": "^21.
|
|
52
|
-
"@commitlint/config-conventional": "^21.0
|
|
53
|
+
"@commitlint/cli": "^21.2.1",
|
|
54
|
+
"@commitlint/config-conventional": "^21.2.0",
|
|
53
55
|
"@eslint/js": "^10.0.1",
|
|
54
56
|
"@types/js-yaml": "^4.0.9",
|
|
55
57
|
"@types/node": "^26.1.0",
|
|
56
58
|
"esbuild": "0.28.1",
|
|
57
|
-
"eslint": "^10.
|
|
59
|
+
"eslint": "^10.7.0",
|
|
60
|
+
"postject": "1.0.0-alpha.6",
|
|
58
61
|
"typescript": "^6.0.3",
|
|
59
|
-
"typescript-eslint": "^8.
|
|
60
|
-
"vitest": "^4.1.
|
|
62
|
+
"typescript-eslint": "^8.65.0",
|
|
63
|
+
"vitest": "^4.1.10",
|
|
61
64
|
"yaml": "^2.9.0"
|
|
62
65
|
},
|
|
63
66
|
"repository": {
|