@willh/now 0.1.2 → 0.1.4

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/CHANGELOG.md CHANGED
@@ -10,6 +10,29 @@
10
10
 
11
11
  * * *
12
12
 
13
+ ## [0.1.4] - 2026-08-09
14
+
15
+ ### 變更
16
+
17
+ - 將 README、PRD、Copilot Instructions 與套件描述統一聚焦於「快速部署靜態網站、支援多種 Hosting 提供者」的產品定位,不再過度強調底層 Rust 實作。
18
+ - 更新公開網站的 meta description、Open Graph、Twitter description 與 Schema.org 結構化資料,並調整 Hero、Why 與 Footer 文案,突顯一行命令完成部署。
19
+
20
+ ### 修正
21
+
22
+ - 修正 npm OIDC 發布流程:移除 `actions/setup-node` 的 `registry-url` 以避免空的 auth token 阻斷 GitHub OIDC token exchange,並以 `NPM_CONFIG_REGISTRY` 指定 registry,解決 v0.1.3 發布時 npm trusted publishing 回應 E404 的問題。
23
+
24
+ * * *
25
+
26
+ ## [0.1.3] - 2026-08-09
27
+
28
+ ### 新增
29
+
30
+ - `now config set --help` 顯示可用的設定鍵、值格式與秘密值管理說明。
31
+ - Azure Storage Blob 使用預設 `now` 命令部署且尚未設定 `azure_blob.prefix` 時,可互動輸入並保存 Blob 路徑前綴。
32
+ - 新增 `bump-and-release` 發版技能與版本更新、CHANGELOG 區塊擷取腳本,串接版本檢查、本機驗證與發版查證流程。
33
+
34
+ * * *
35
+
13
36
  ## [0.1.2] - 2026-07-19
14
37
 
15
38
  ### 新增
@@ -69,7 +92,9 @@
69
92
  - 提供 macOS Apple Silicon、macOS Intel、Linux x64 glibc 與 Windows x64 原生執行檔及 SHA-256 checksum。
70
93
  - 提供 npm、Unix-like 安裝腳本、Windows PowerShell 安裝腳本與 GitHub Release 發布流程。
71
94
 
72
- [Unreleased]: https://github.com/doggy8088/now/compare/v0.1.2...HEAD
95
+ [Unreleased]: https://github.com/doggy8088/now/compare/v0.1.4...HEAD
96
+ [0.1.4]: https://github.com/doggy8088/now/compare/v0.1.3...v0.1.4
97
+ [0.1.3]: https://github.com/doggy8088/now/compare/v0.1.2...v0.1.3
73
98
  [0.1.2]: https://github.com/doggy8088/now/compare/v0.1.1...v0.1.2
74
99
  [0.1.1]: https://github.com/doggy8088/now/compare/v0.1.0...v0.1.1
75
100
  [0.1.0]: https://github.com/doggy8088/now/releases/tag/v0.1.0
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # now
2
2
 
3
- **now 是一個 Rust CLI,用來把靜態網站交給既有 provider CLI 部署。**
3
+ **now 是一個用來快速部署靜態網站的工具,支援多種不同的 Hosting 提供者進行部署。**
4
4
 
5
- 它不嘗試重寫 Firebase、Azure FTP 的部署流程;它負責選擇可發布目錄、讀取非祕密設定、組合 provider CLI 命令,並在部署後輸出預設 URL。
5
+ 它會統一不同 Hosting 提供者的部署操作:自動選擇可發布目錄、讀取非祕密設定、執行部署,並在完成後輸出預設 URL。
6
6
 
7
7
  * * *
8
8
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@willh/now",
3
- "version": "0.1.2",
4
- "description": "Deploy static sites with provider CLIs",
3
+ "version": "0.1.4",
4
+ "description": "A tool for quickly deploying static sites to multiple hosting providers",
5
5
  "bin": {
6
6
  "now": "npm/cli.cjs"
7
7
  },