@postman-cse/onboarding-repo-sync 1.0.2 → 1.0.4

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.
Files changed (6) hide show
  1. package/README.md +107 -21
  2. package/action.yml +18 -11
  3. package/dist/action.cjs +2748 -2552
  4. package/dist/cli.cjs +2733 -2537
  5. package/dist/index.cjs +2748 -2552
  6. package/package.json +6 -4
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@postman-cse/onboarding-repo-sync",
3
- "version": "1.0.2",
4
- "description": "Public customer preview Postman repo sync GitHub Action.",
3
+ "version": "1.0.4",
4
+ "description": "Postman repo sync GitHub Action.",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
7
7
  "bin": {
@@ -15,7 +15,7 @@
15
15
  "node": ">=24"
16
16
  },
17
17
  "scripts": {
18
- "build": "npm run typecheck && rm -rf dist && esbuild src/index.ts --bundle --platform=node --target=node24 --format=cjs --outfile=dist/index.cjs && esbuild src/main.ts --bundle --platform=node --target=node24 --format=cjs --outfile=dist/action.cjs && esbuild src/cli.ts --bundle --platform=node --target=node24 --format=cjs --outfile=dist/cli.cjs",
18
+ "build": "npm run typecheck && rm -rf dist && esbuild src/index.ts --bundle --platform=node --target=node24 --format=cjs --define:__ACTION_VERSION__=\\\"$npm_package_version\\\" --outfile=dist/index.cjs && esbuild src/main.ts --bundle --platform=node --target=node24 --format=cjs --define:__ACTION_VERSION__=\\\"$npm_package_version\\\" --outfile=dist/action.cjs && esbuild src/cli.ts --bundle --platform=node --target=node24 --format=cjs --define:__ACTION_VERSION__=\\\"$npm_package_version\\\" --outfile=dist/cli.cjs",
19
19
  "check:dist": "npm run build && git diff --exit-code -- dist",
20
20
  "docs:tables": "node scripts/render-action-tables.mjs",
21
21
  "lint": "eslint .",
@@ -38,7 +38,9 @@
38
38
  "dependencies": {
39
39
  "@actions/core": "^3.0.1",
40
40
  "@actions/exec": "^3.0.0",
41
- "js-yaml": "^4.1.1"
41
+ "@postman-cse/automation-telemetry-core": "^0.1.0",
42
+ "js-yaml": "^4.1.1",
43
+ "undici": "^6.24.0"
42
44
  },
43
45
  "devDependencies": {
44
46
  "@commitlint/cli": "^20.5.3",