@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 CHANGED
@@ -1,4 +1,4 @@
1
- # @frelio/cli
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/cli init
117
+ npx @c-time/frelio-cli init
118
118
  ```
119
119
 
120
120
  npm でグローバルインストールする場合:
121
121
 
122
122
  ```bash
123
- npm install -g @frelio/cli
123
+ npm install -g @c-time/frelio-cli
124
124
  frelio init
125
125
  ```
126
126
 
@@ -146,7 +146,9 @@ export async function initCommand(options) {
146
146
  else {
147
147
  logError(bundleResult.error);
148
148
  log(' ℹ リリースが公開されていない場合は、手動でバンドルを展開してください。');
149
- log(' scripts/build-distributable.sh を実行してから dist-release/ の内容をコピーします。');
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++;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@c-time/frelio-cli",
3
- "version": "1.4.3",
3
+ "version": "1.4.5",
4
4
  "description": "Frelio CMS setup CLI",
5
5
  "license": "MIT",
6
6
  "type": "module",