heroku 11.0.0-alpha.4 → 11.0.0-alpha.8
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 +3 -0
- package/npm-shrinkwrap.json +31675 -0
- package/oclif.manifest.json +1 -1
- package/package.json +5 -3
package/oclif.manifest.json
CHANGED
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.
|
|
4
|
+
"version": "11.0.0-alpha.8",
|
|
5
5
|
"author": "Heroku",
|
|
6
6
|
"bin": "./bin/run",
|
|
7
7
|
"bugs": "https://github.com/heroku/cli/issues",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"/autocomplete-scripts",
|
|
141
141
|
"/bin",
|
|
142
142
|
"/lib",
|
|
143
|
-
"/npm-shrinkwrap.json",
|
|
144
143
|
"/package-lock.json",
|
|
144
|
+
"/npm-shrinkwrap.json",
|
|
145
145
|
"/oclif.manifest.json"
|
|
146
146
|
],
|
|
147
147
|
"homepage": "https://cli.heroku.com",
|
|
@@ -370,6 +370,8 @@
|
|
|
370
370
|
"coverage": "nyc --reporter=lcov --reporter=text-summary npm run test",
|
|
371
371
|
"coverage:html": "nyc --reporter=html --reporter=text-summary npm run test",
|
|
372
372
|
"coverage:check": "nyc --check-coverage --branches 80 --statements 80 --functions 80 --lines 80 npm run test",
|
|
373
|
+
"create-shrinkwrap": "cp ../../package-lock.json ./npm-shrinkwrap.json && echo '✅ npm-shrinkwrap.json created from package-lock.json'",
|
|
374
|
+
"prepublishOnly": "npm run create-shrinkwrap",
|
|
373
375
|
"postpublish": "rm -f oclif.manifest.json",
|
|
374
376
|
"manifest": "oclif manifest",
|
|
375
377
|
"prepack": "npm run build && npm run manifest",
|
|
@@ -385,5 +387,5 @@
|
|
|
385
387
|
},
|
|
386
388
|
"type": "module",
|
|
387
389
|
"types": "lib/index.d.ts",
|
|
388
|
-
"gitHead": "
|
|
390
|
+
"gitHead": "0e65d884986f0f4dd6bce5f721daf36533fc1722"
|
|
389
391
|
}
|