shipfe 1.1.6 → 2.0.0

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 (3) hide show
  1. package/README.md +6 -3
  2. package/bin/shipfe +0 -0
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -12,22 +12,25 @@ A powerful, **free**, **Rust-based** web application deployment tool that **does
12
12
 
13
13
  ## Installation
14
14
 
15
+ Install locally in your project (recommended):
16
+
15
17
  ```bash
16
- npm install -g shipfe
18
+ npm install --save-dev shipfe
19
+ npx shipfe --version
17
20
  ```
18
21
 
19
22
  ## Quick Start
20
23
 
21
24
  1. Initialize the project:
22
25
  ```bash
23
- shipfe init
26
+ npx shipfe init
24
27
  ```
25
28
 
26
29
  2. Configure deployment in `shipfe.config.json`
27
30
 
28
31
  3. Deploy:
29
32
  ```bash
30
- shipfe deploy --profile prod
33
+ npx shipfe deploy --profile prod
31
34
  ```
32
35
 
33
36
  ## Common Commands
package/bin/shipfe CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shipfe",
3
- "version": "1.1.6",
3
+ "version": "2.0.0",
4
4
  "description": "A deployment tool for web applications",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -49,6 +49,6 @@
49
49
  "vitepress": "^1.6.4"
50
50
  },
51
51
  "dependencies": {
52
- "shipfe": "file:shipfe-1.1.5.tgz"
52
+ "shipfe": "file:shipfe-2.0.0.tgz"
53
53
  }
54
54
  }