@c-time/frelio-cli 1.4.6 → 1.4.8
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/dist/commands/update.js +6 -0
- package/package.json +1 -1
package/dist/commands/update.js
CHANGED
|
@@ -25,6 +25,12 @@ export async function updateCommand(options) {
|
|
|
25
25
|
log('');
|
|
26
26
|
log(`✅ ${result.data.version} にアップデートしました!`);
|
|
27
27
|
log('');
|
|
28
|
+
log(' ℹ デプロイ管理機能(Issue #27)を使う場合は次の環境変数が必要です:');
|
|
29
|
+
log(' • CLOUDFLARE_API_TOKEN … 管理画面 Pages のシークレット(wrangler pages secret put)');
|
|
30
|
+
log(' • CLOUDFLARE_ACCOUNT_ID … wrangler.toml の [vars]');
|
|
31
|
+
log(' • PAGES_PROJECT_NAME … wrangler.toml の [vars](コンテンツ配信 Pages プロジェクト名)');
|
|
32
|
+
log(' 未設定でも他機能は動作します。詳細は wrangler.toml のコメントを参照。');
|
|
33
|
+
log('');
|
|
28
34
|
}
|
|
29
35
|
else {
|
|
30
36
|
logError(result.error);
|