apify-cli 1.5.0 → 1.5.1-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 +15 -0
- package/dist/_register-BK4fPBqO.js +221 -0
- package/dist/_register-BK4fPBqO.js.map +1 -0
- package/dist/actor.js +1 -1
- package/dist/actor.js.map +1 -1
- package/dist/apify.js +1 -1
- package/dist/apify.js.map +1 -1
- package/dist/index.js +3 -1
- package/package.json +4 -3
- package/dist/.tsbuildinfo +0 -1
- package/dist/chunk-DAGVJNAI.js +0 -306
- package/dist/chunk-DAGVJNAI.js.map +0 -1
package/dist/actor.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import{
|
|
2
|
+
import{i as e,r as t,t as n}from"./_register-BK4fPBqO.js";t(`Actor`);for(let e of n)e.registerCommand(`actor`);await e(`actor`);export{};
|
|
3
3
|
//# sourceMappingURL=actor.js.map
|
package/dist/actor.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/entrypoints/actor.ts"],"sourcesContent":["#!/usr/bin/env node\nimport { actorCommands } from '../commands/_register.js';\nimport { processVersionCheck, runCLI } from './_shared.js';\n\nprocessVersionCheck('Actor');\n\n// Register all commands\nfor (const CommandClass of actorCommands) {\n\tCommandClass.registerCommand('actor');\n}\n\nawait runCLI('actor');\n"],"mappings":";
|
|
1
|
+
{"version":3,"file":"actor.js","names":[],"sources":["../src/entrypoints/actor.ts"],"sourcesContent":["#!/usr/bin/env node\nimport { actorCommands } from '../commands/_register.js';\nimport { processVersionCheck, runCLI } from './_shared.js';\n\nprocessVersionCheck('Actor');\n\n// Register all commands\nfor (const CommandClass of actorCommands) {\n\tCommandClass.registerCommand('actor');\n}\n\nawait runCLI('actor');\n"],"mappings":";0DAIA,EAAoB,QAAQ,CAG5B,IAAK,IAAM,KAAgB,EAC1B,EAAa,gBAAgB,QAAQ,CAGtC,MAAM,EAAO,QAAQ"}
|
package/dist/apify.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import{
|
|
2
|
+
import{i as e,n as t,r as n}from"./_register-BK4fPBqO.js";n(`Apify`);for(let e of t)e.registerCommand(`apify`);await e(`apify`);export{};
|
|
3
3
|
//# sourceMappingURL=apify.js.map
|
package/dist/apify.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/entrypoints/apify.ts"],"sourcesContent":["#!/usr/bin/env node\nimport { apifyCommands } from '../commands/_register.js';\nimport { processVersionCheck, runCLI } from './_shared.js';\n\nprocessVersionCheck('Apify');\n\n// Register all commands\nfor (const CommandClass of apifyCommands) {\n\tCommandClass.registerCommand('apify');\n}\n\nawait runCLI('apify');\n"],"mappings":";
|
|
1
|
+
{"version":3,"file":"apify.js","names":[],"sources":["../src/entrypoints/apify.ts"],"sourcesContent":["#!/usr/bin/env node\nimport { apifyCommands } from '../commands/_register.js';\nimport { processVersionCheck, runCLI } from './_shared.js';\n\nprocessVersionCheck('Apify');\n\n// Register all commands\nfor (const CommandClass of apifyCommands) {\n\tCommandClass.registerCommand('apify');\n}\n\nawait runCLI('apify');\n"],"mappings":";0DAIA,EAAoB,QAAQ,CAG5B,IAAK,IAAM,KAAgB,EAC1B,EAAa,gBAAgB,QAAQ,CAGtC,MAAM,EAAO,QAAQ"}
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apify-cli",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1-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
|
"type": "module",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"format": "biome format . && prettier --check \"**/*.{md,yml,yaml}\"",
|
|
19
19
|
"format:fix": "biome format --write . && prettier --write \"**/*.{md,yml,yaml}\"",
|
|
20
20
|
"clean": "rimraf dist",
|
|
21
|
-
"build": "yarn clean && tsc &&
|
|
21
|
+
"build": "yarn clean && tsc && tsdown",
|
|
22
22
|
"build-bundles": "bun run scripts/build-cli-bundles.ts",
|
|
23
23
|
"prepack": "yarn insert-cli-metadata && yarn build && yarn update-docs",
|
|
24
24
|
"insert-cli-metadata": "tsx scripts/insert-cli-metadata.ts",
|
|
@@ -69,6 +69,7 @@
|
|
|
69
69
|
"@apify/actor-templates": "^0.1.5",
|
|
70
70
|
"@apify/consts": "^2.36.0",
|
|
71
71
|
"@apify/input_schema": "^3.17.0",
|
|
72
|
+
"@apify/json_schemas": "^0.13.0",
|
|
72
73
|
"@apify/utilities": "^2.18.0",
|
|
73
74
|
"@crawlee/memory-storage": "^3.12.0",
|
|
74
75
|
"@inquirer/core": "^11.0.0",
|
|
@@ -142,7 +143,7 @@
|
|
|
142
143
|
"lint-staged": "^16.0.0",
|
|
143
144
|
"mock-stdin": "^1.0.0",
|
|
144
145
|
"prettier": "^3.5.3",
|
|
145
|
-
"
|
|
146
|
+
"tsdown": "^0.21.9",
|
|
146
147
|
"tsx": "^4.16.5",
|
|
147
148
|
"typescript": "^6.0.0",
|
|
148
149
|
"typescript-eslint": "^8.31.0",
|