heroku 11.0.0-alpha.1 → 11.0.0-alpha.3

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 (1) hide show
  1. package/package.json +11 -3
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "heroku",
3
3
  "description": "CLI to interact with Heroku",
4
- "version": "11.0.0-alpha.1",
4
+ "version": "11.0.0-alpha.3",
5
5
  "author": "Heroku",
6
6
  "bin": "./bin/run",
7
7
  "bugs": "https://github.com/heroku/cli/issues",
@@ -121,7 +121,7 @@
121
121
  "mocha": "^10.8.2",
122
122
  "nock": "^13.5.1",
123
123
  "nyc": "^15.1.0",
124
- "oclif": "4.17.46",
124
+ "oclif": "^4.22.24",
125
125
  "proxyquire": "^2.1.0",
126
126
  "qqjs": "0.3.11",
127
127
  "read-pkg": "^9.0.1",
@@ -372,8 +372,13 @@
372
372
  "coverage:check": "nyc --check-coverage --branches 80 --statements 80 --functions 80 --lines 80 npm run test",
373
373
  "postpublish": "rm -f oclif.manifest.json",
374
374
  "manifest": "oclif manifest",
375
+ "pack:deb": "oclif pack:deb",
376
+ "pack:tarballs": "oclif pack:tarballs --xz --parallel",
377
+ "pack:win": "oclif pack:win --defender-exclusion hidden",
375
378
  "prepack": "npm run build",
376
379
  "pretest": "tsc -p test --noEmit && cd ../.. && npm run build",
380
+ "promote:deb": "oclif promote --deb --xz --indexes",
381
+ "promote:win": "oclif promote --win --indexes",
377
382
  "test:acceptance": "npm run pretest && mocha --forbid-only \"test/**/*.acceptance.test.ts\" && node ./bin/bats-test-runner",
378
383
  "test:integration": "npm run pretest && mocha --forbid-only \"test/**/*.integration.test.ts\"",
379
384
  "test:smoke": "npm run pretest && mocha --forbid-only \"test/**/smoke.acceptance.test.ts\"",
@@ -381,9 +386,12 @@
381
386
  "test:unit:justTest:ci": "nyc --reporter=lcov --reporter=text-summary mocha --forbid-only \"test/**/*.unit.test.ts\"",
382
387
  "test": "npm run pretest && npm run test:unit:justTest:ci",
383
388
  "test:local": "npm run pretest && npm run test:unit:justTest:local",
389
+ "upload:deb": "oclif upload:deb",
390
+ "upload:tarballs": "oclif upload:tarballs --xz",
391
+ "upload:win": "oclif upload:win",
384
392
  "version": "oclif readme --multi && git add README.md ../../docs"
385
393
  },
386
394
  "type": "module",
387
395
  "types": "lib/index.d.ts",
388
- "gitHead": "39c2f558f1e83331064b6e7c9da8775fb013c553"
396
+ "gitHead": "a51713172957714f71ecf53fe0bdc652d1d19412"
389
397
  }