@geekbeer/minion 1.3.0 → 1.3.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 +0 -53
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -37,59 +37,6 @@ minion-cli health # Run health check
|
|
|
37
37
|
minion-cli log -m "Task completed" -l info -s skill-name
|
|
38
38
|
```
|
|
39
39
|
|
|
40
|
-
## npm公開手順
|
|
41
|
-
|
|
42
|
-
### 初回セットアップ
|
|
43
|
-
|
|
44
|
-
1. npmにログイン:
|
|
45
|
-
```bash
|
|
46
|
-
npm login
|
|
47
|
-
```
|
|
48
|
-
|
|
49
|
-
2. `geekbeer` organizationがnpmに存在することを確認(なければ作成):
|
|
50
|
-
```bash
|
|
51
|
-
npm org create geekbeer
|
|
52
|
-
```
|
|
53
|
-
または https://www.npmjs.com/org/create から作成。
|
|
54
|
-
|
|
55
|
-
### パッケージ公開
|
|
56
|
-
|
|
57
|
-
```bash
|
|
58
|
-
cd packages/minion
|
|
59
|
-
|
|
60
|
-
# 含まれるファイルを事前確認
|
|
61
|
-
npm pack --dry-run
|
|
62
|
-
|
|
63
|
-
# 公開
|
|
64
|
-
npm publish --access public
|
|
65
|
-
```
|
|
66
|
-
|
|
67
|
-
`publishConfig.access: "public"` が `package.json` に設定済みのため、`--access public` は省略可能。
|
|
68
|
-
|
|
69
|
-
### バージョンアップ & 再公開
|
|
70
|
-
|
|
71
|
-
```bash
|
|
72
|
-
cd packages/minion
|
|
73
|
-
|
|
74
|
-
# バージョンを上げる(patch: 1.0.0 → 1.0.1)
|
|
75
|
-
npm version patch
|
|
76
|
-
|
|
77
|
-
# または minor: 1.0.0 → 1.1.0
|
|
78
|
-
npm version minor
|
|
79
|
-
|
|
80
|
-
# または major: 1.0.0 → 2.0.0
|
|
81
|
-
npm version major
|
|
82
|
-
|
|
83
|
-
# 公開
|
|
84
|
-
npm publish
|
|
85
|
-
```
|
|
86
|
-
|
|
87
|
-
### 公開確認
|
|
88
|
-
|
|
89
|
-
```bash
|
|
90
|
-
npm view @geekbeer/minion
|
|
91
|
-
```
|
|
92
|
-
|
|
93
40
|
## Environment Variables
|
|
94
41
|
|
|
95
42
|
| Variable | Description | Default |
|