apify-cli 1.0.0-beta.0 → 1.0.0-beta.1
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 +18 -18
- package/dist/.tsbuildinfo +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +9 -3
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apify-cli",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.1",
|
|
4
4
|
"description": "Apify command-line interface (CLI) helps you manage the Apify cloud platform and develop, build, and deploy Apify Actors.",
|
|
5
5
|
"exports": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"clean": "rimraf dist",
|
|
14
14
|
"build": "npm run clean && tsc",
|
|
15
15
|
"postpack": "rimraf oclif.manifest.json",
|
|
16
|
-
"prepack": "npm run build && oclif manifest && oclif readme",
|
|
16
|
+
"prepack": "npm run build && oclif manifest && oclif readme && oclif readme --readme-path=docs/reference.md",
|
|
17
17
|
"prepare": "npm run build && node ./bin/run.js check-version && node ./dist/lib/community.js"
|
|
18
18
|
},
|
|
19
19
|
"files": [
|
|
@@ -131,7 +131,13 @@
|
|
|
131
131
|
"./dist/hooks/init"
|
|
132
132
|
]
|
|
133
133
|
},
|
|
134
|
-
"helpClass": "./dist/lib/apify-oclif-help"
|
|
134
|
+
"helpClass": "./dist/lib/apify-oclif-help",
|
|
135
|
+
"additionalHelpFlags": [
|
|
136
|
+
"-h"
|
|
137
|
+
],
|
|
138
|
+
"additionalVersionFlags": [
|
|
139
|
+
"-v"
|
|
140
|
+
]
|
|
135
141
|
},
|
|
136
142
|
"volta": {
|
|
137
143
|
"node": "20.11.1",
|