@gumigumih/react-calculator-input-form 1.1.1 → 1.1.2

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
@@ -267,6 +267,21 @@ npm run dev
267
267
  npm run build
268
268
  ```
269
269
 
270
+ 📖 **[開発ルールとガイドライン](./DEVELOPMENT.md)**
271
+
272
+ ### コミットメッセージのルール
273
+ このプロジェクトでは、セマンティックコミットメッセージを使用しています:
274
+
275
+ - `feat:` - 新機能追加
276
+ - `fix:` - バグ修正
277
+ - `docs:` - ドキュメント更新
278
+ - `style:` - コードスタイル変更
279
+ - `refactor:` - リファクタリング
280
+ - `test:` - テスト追加・修正
281
+ - `chore:` - その他の変更
282
+
283
+ 詳細は[開発ルール](./DEVELOPMENT.md)をご覧ください。
284
+
270
285
  ## 📄 ライセンス
271
286
 
272
287
  MIT License - 詳細は [LICENSE](LICENSE) ファイルをご覧ください。
@@ -0,0 +1 @@
1
+
package/package.json CHANGED
@@ -1,14 +1,13 @@
1
1
  {
2
2
  "name": "@gumigumih/react-calculator-input-form",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "React電卓入力フォームプラグイン - 税込税抜計算機能付き",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.esm.js",
8
8
  "types": "dist/index.d.ts",
9
9
  "files": [
10
- "dist",
11
- "src/styles"
10
+ "dist"
12
11
  ],
13
12
  "exports": {
14
13
  ".": {
@@ -92,6 +91,7 @@
92
91
  "jest": "^30.1.3",
93
92
  "jest-environment-jsdom": "^30.1.2",
94
93
  "rollup": "^3.0.0",
94
+ "rollup-plugin-copy": "^3.5.0",
95
95
  "rollup-plugin-peer-deps-external": "^2.2.4",
96
96
  "rollup-plugin-postcss": "^4.0.2",
97
97
  "ts-jest": "^29.4.1",
File without changes