heroku 11.0.0-alpha.6 → 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/npm-shrinkwrap.json +31675 -0
- package/oclif.manifest.json +1 -1
- package/package.json +5 -2
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",
|
|
@@ -141,6 +141,7 @@
|
|
|
141
141
|
"/bin",
|
|
142
142
|
"/lib",
|
|
143
143
|
"/package-lock.json",
|
|
144
|
+
"/npm-shrinkwrap.json",
|
|
144
145
|
"/oclif.manifest.json"
|
|
145
146
|
],
|
|
146
147
|
"homepage": "https://cli.heroku.com",
|
|
@@ -369,6 +370,8 @@
|
|
|
369
370
|
"coverage": "nyc --reporter=lcov --reporter=text-summary npm run test",
|
|
370
371
|
"coverage:html": "nyc --reporter=html --reporter=text-summary npm run test",
|
|
371
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",
|
|
372
375
|
"postpublish": "rm -f oclif.manifest.json",
|
|
373
376
|
"manifest": "oclif manifest",
|
|
374
377
|
"prepack": "npm run build && npm run manifest",
|
|
@@ -384,5 +387,5 @@
|
|
|
384
387
|
},
|
|
385
388
|
"type": "module",
|
|
386
389
|
"types": "lib/index.d.ts",
|
|
387
|
-
"gitHead": "
|
|
390
|
+
"gitHead": "0e65d884986f0f4dd6bce5f721daf36533fc1722"
|
|
388
391
|
}
|