apify-cli 0.20.3 → 0.20.4-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/CHANGELOG.md +77 -83
- package/README.md +48 -40
- package/dist/.tsbuildinfo +1 -1
- package/dist/commands/run.d.ts.map +1 -1
- package/dist/commands/run.js +12 -2
- package/dist/commands/run.js.map +1 -1
- package/dist/lib/commands/resolve-input.d.ts.map +1 -1
- package/dist/lib/commands/resolve-input.js +56 -7
- package/dist/lib/commands/resolve-input.js.map +1 -1
- package/dist/typechecking.tsbuildinfo +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +12 -4
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apify-cli",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.4-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",
|
|
@@ -9,10 +9,11 @@
|
|
|
9
9
|
"dev": "tsx ./bin/dev.js",
|
|
10
10
|
"test": "vitest run",
|
|
11
11
|
"test-python": "vitest run -t '.*\\[python\\]'",
|
|
12
|
+
"test:cucumber": "cross-env NODE_OPTIONS=\"--import tsx\" cucumber-js",
|
|
12
13
|
"lint": "eslint src test .yarn/plugins --ext .ts,.cjs,.mjs",
|
|
13
14
|
"lint:fix": "eslint src test .yarn/plugins --fix --ext .ts,.cjs,.mjs",
|
|
14
|
-
"format": "biome format .",
|
|
15
|
-
"format:fix": "biome format --write .",
|
|
15
|
+
"format": "biome format . && prettier --check ./**/*.md",
|
|
16
|
+
"format:fix": "biome format --write . && prettier --write ./**/*.md",
|
|
16
17
|
"clean": "rimraf dist",
|
|
17
18
|
"build": "yarn clean && tsc && tsc -p tsconfig.typechecking.json",
|
|
18
19
|
"postpack": "rimraf oclif.manifest.json",
|
|
@@ -102,7 +103,9 @@
|
|
|
102
103
|
"@apify/tsconfig": "^0.1.0",
|
|
103
104
|
"@biomejs/biome": "^1.8.3",
|
|
104
105
|
"@crawlee/types": "^3.11.1",
|
|
106
|
+
"@cucumber/cucumber": "^10.8.0",
|
|
105
107
|
"@oclif/test": "^4.0.8",
|
|
108
|
+
"@sapphire/result": "^2.6.6",
|
|
106
109
|
"@types/adm-zip": "^0.5.5",
|
|
107
110
|
"@types/archiver": "^6.0.2",
|
|
108
111
|
"@types/chai": "^4.3.17",
|
|
@@ -119,12 +122,16 @@
|
|
|
119
122
|
"@typescript-eslint/eslint-plugin": "^7.0.2",
|
|
120
123
|
"@typescript-eslint/parser": "^7.0.2",
|
|
121
124
|
"@yarnpkg/core": "^4.1.2",
|
|
125
|
+
"apify": "^3.2.4",
|
|
122
126
|
"chai": "^4.4.1",
|
|
127
|
+
"cross-env": "^7.0.3",
|
|
123
128
|
"eslint": "^8.57.0",
|
|
124
129
|
"eslint-config-prettier": "^9.1.0",
|
|
130
|
+
"execa": "^9.3.0",
|
|
125
131
|
"lint-staged": "^15.2.8",
|
|
126
132
|
"mock-stdin": "^1.0.0",
|
|
127
133
|
"oclif": "^4.14.15",
|
|
134
|
+
"prettier": "^3.3.3",
|
|
128
135
|
"tsx": "^4.16.5",
|
|
129
136
|
"typescript": "^5.5.4",
|
|
130
137
|
"vitest": "^2.0.5"
|
|
@@ -160,6 +167,7 @@
|
|
|
160
167
|
"packageManager": "yarn@4.4.0",
|
|
161
168
|
"lint-staged": {
|
|
162
169
|
"*": "biome format --write --no-errors-on-unmatched",
|
|
163
|
-
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
|
|
170
|
+
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts",
|
|
171
|
+
"*.md": "prettier --write"
|
|
164
172
|
}
|
|
165
173
|
}
|