@crawlee-cloud/cli 0.1.2 → 0.1.4

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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -21,7 +21,7 @@ npx @crawlee-cloud/cli <command>
21
21
  ```bash
22
22
  crawlee-cloud <command> [options]
23
23
  # Alias
24
- cc <command> [options]
24
+ crc <command> [options]
25
25
  ```
26
26
 
27
27
  ### Commands
@@ -36,13 +36,13 @@ cc <command> [options]
36
36
 
37
37
  ```bash
38
38
  # Login
39
- cc login
39
+ crc login
40
40
 
41
41
  # Push the current directory as an Actor
42
- cc push my-actor
42
+ crc push my-actor
43
43
 
44
44
  # Run the Actor
45
- cc call my-actor
45
+ crc call my-actor
46
46
  ```
47
47
 
48
48
  ## Documentation
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@crawlee-cloud/cli",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "CLI for Crawlee Cloud - run and deploy Actors",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "crawlee-cloud": "dist/bin.js",
8
- "cc": "dist/bin.js"
8
+ "crc": "dist/bin.js"
9
9
  },
10
10
  "main": "./dist/index.js",
11
11
  "types": "./dist/index.d.ts",