ingred-ui 32.1.0 → 33.0.0-canary.0
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 +28 -0
- package/dist/index.es.js +912 -912
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +849 -849
- package/dist/index.js.map +1 -1
- package/package.json +55 -21
package/README.md
CHANGED
|
@@ -81,6 +81,34 @@ pnpm run update-holidays
|
|
|
81
81
|
|
|
82
82
|
詳細な情報については、[scripts/holiday/README.md](./scripts/holiday/README.md) を参照してください。
|
|
83
83
|
|
|
84
|
+
### カナリア版の publish
|
|
85
|
+
|
|
86
|
+
試験版を npm の `@canary` タグで配布する。正式版リリース(changesets → `@latest`)とは独立した運用。
|
|
87
|
+
|
|
88
|
+
#### publish する(maintainer)
|
|
89
|
+
|
|
90
|
+
1. publish 対象ブランチの `package.json` の `version` を `X.Y.Z-canary.N` に設定する(例: `33.0.0-canary.0`)
|
|
91
|
+
2. ブランチを push する
|
|
92
|
+
3. GitHub Actions → **publish-canary** → Run workflow
|
|
93
|
+
- **Publish する branch / tag**: publish 対象のブランチ名(例: `feat/my-feature`)
|
|
94
|
+
4. npm に `@canary` タグで publish される
|
|
95
|
+
|
|
96
|
+
同じ内容を再 publish する場合は `-canary.N` の連番を上げる(npm は同一 version の再 publish 不可)。
|
|
97
|
+
|
|
98
|
+
#### 利用する(利用側プロジェクト)
|
|
99
|
+
|
|
100
|
+
publish された version を固定してインストールする。
|
|
101
|
+
|
|
102
|
+
```json
|
|
103
|
+
"ingred-ui": "33.0.0-canary.0"
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
peerDependencies 化を含む変更の場合は、README や PR に記載の追加パッケージも `dependencies` に入れる。
|
|
107
|
+
|
|
108
|
+
#### 正式版リリース
|
|
109
|
+
|
|
110
|
+
カナリアで問題なければ PR を master に merge し、いつも通り changesets の Version Packages PR 経由で `@latest` に publish する。
|
|
111
|
+
|
|
84
112
|
## License
|
|
85
113
|
|
|
86
114
|
MIT © [CARTA HOLDINGS, Inc.](https://github.com/voyagegroup)
|