shipfe 1.1.7 → 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.
- package/README.md +6 -3
- package/bin/shipfe +0 -0
- package/package.json +4 -1
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 -
|
|
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": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "A deployment tool for web applications",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -47,5 +47,8 @@
|
|
|
47
47
|
"homepage": "https://github.com/Master-Jian/shipfe-rust#readme",
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"vitepress": "^1.6.4"
|
|
50
|
+
},
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"shipfe": "file:shipfe-2.0.0.tgz"
|
|
50
53
|
}
|
|
51
54
|
}
|