@c-time/frelio-cli 1.4.3 → 1.4.5
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 +3 -3
- package/dist/commands/init.js +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @frelio
|
|
1
|
+
# @c-time/frelio-cli
|
|
2
2
|
|
|
3
3
|
Frelio CMS のプロジェクトセットアップと管理を行う CLI ツール。
|
|
4
4
|
|
|
@@ -114,13 +114,13 @@ wrangler login
|
|
|
114
114
|
## インストール
|
|
115
115
|
|
|
116
116
|
```bash
|
|
117
|
-
npx @frelio
|
|
117
|
+
npx @c-time/frelio-cli init
|
|
118
118
|
```
|
|
119
119
|
|
|
120
120
|
npm でグローバルインストールする場合:
|
|
121
121
|
|
|
122
122
|
```bash
|
|
123
|
-
npm install -g @frelio
|
|
123
|
+
npm install -g @c-time/frelio-cli
|
|
124
124
|
frelio init
|
|
125
125
|
```
|
|
126
126
|
|
package/dist/commands/init.js
CHANGED
|
@@ -146,7 +146,9 @@ export async function initCommand(options) {
|
|
|
146
146
|
else {
|
|
147
147
|
logError(bundleResult.error);
|
|
148
148
|
log(' ℹ リリースが公開されていない場合は、手動でバンドルを展開してください。');
|
|
149
|
-
log('
|
|
149
|
+
log(' npm pack @c-time/frelio-cms で取得した tarball を展開し、');
|
|
150
|
+
log(' package/dist/(functions を除く)を admin/、package/dist/functions を functions/、');
|
|
151
|
+
log(' package/workers を workers/ に配置します。');
|
|
150
152
|
}
|
|
151
153
|
// 設定ファイル生成
|
|
152
154
|
step++;
|