apify-cli 1.4.2-beta.0 → 1.4.2-beta.2
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 +74 -228
- package/dist/.tsbuildinfo +1 -1
- package/dist/actor.js +1 -1
- package/dist/apify.js +1 -1
- package/dist/{chunk-335W3UZU.js → chunk-7HFNXGMZ.js} +2 -2
- package/dist/chunk-7HFNXGMZ.js.map +1 -0
- package/package.json +7 -7
- package/dist/chunk-335W3UZU.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apify-cli",
|
|
3
|
-
"version": "1.4.2-beta.
|
|
3
|
+
"version": "1.4.2-beta.2",
|
|
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
|
"type": "module",
|
|
@@ -8,12 +8,13 @@
|
|
|
8
8
|
"dev:apify": "tsx ./src/entrypoints/apify.ts",
|
|
9
9
|
"dev:actor": "tsx ./src/entrypoints/actor.ts",
|
|
10
10
|
"test:all": "yarn test:local && yarn test:api",
|
|
11
|
-
"test:local": "vitest run --testNamePattern '^((?!\\[api]).)*$' --exclude ./test/api",
|
|
12
|
-
"test:
|
|
11
|
+
"test:local": "vitest run --testNamePattern '^((?!\\[api]).)*$' --exclude ./test/api --exclude ./test/e2e",
|
|
12
|
+
"test:e2e": "vitest run --testNamePattern '\\[e2e\\]' --exclude ./test/api",
|
|
13
|
+
"test:e2e:local": "vitest run --testNamePattern '^(?=.*\\[e2e\\])(?!.*\\[api\\]).*$' --exclude ./test/api",
|
|
14
|
+
"test:api": "vitest run --testNamePattern '^(?=.*\\[api\\])(?!.*\\[e2e\\]).*$' --exclude ./test/e2e",
|
|
13
15
|
"test:python": "vitest run --testNamePattern '\\[python\\]'",
|
|
14
|
-
"
|
|
15
|
-
"lint": "eslint src test scripts
|
|
16
|
-
"lint:fix": "eslint src test scripts features --fix --ext .ts,.cjs,.mjs",
|
|
16
|
+
"lint": "eslint src test scripts --ext .ts,.cjs,.mjs",
|
|
17
|
+
"lint:fix": "eslint src test scripts --fix --ext .ts,.cjs,.mjs",
|
|
17
18
|
"format": "biome format . && prettier --check \"**/*.{md,yml,yaml}\"",
|
|
18
19
|
"format:fix": "biome format --write . && prettier --write \"**/*.{md,yml,yaml}\"",
|
|
19
20
|
"clean": "rimraf dist",
|
|
@@ -120,7 +121,6 @@
|
|
|
120
121
|
"@apify/tsconfig": "^0.1.1",
|
|
121
122
|
"@biomejs/biome": "^2.0.0",
|
|
122
123
|
"@crawlee/types": "^3.11.1",
|
|
123
|
-
"@cucumber/cucumber": "^12.0.0",
|
|
124
124
|
"@types/adm-zip": "^0.5.5",
|
|
125
125
|
"@types/archiver": "^7.0.0",
|
|
126
126
|
"@types/bun": "^1.2.5",
|