@sudobility/consumables_pages 0.0.43 → 0.0.44
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/CLAUDE.md +9 -0
- package/package.json +5 -5
package/CLAUDE.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Consumables Pages
|
|
2
2
|
|
|
3
|
+
> **Git policy — never auto-commit or auto-push.** Leave your work in the working tree.
|
|
4
|
+
> Run `git commit`, `git push`, `gh pr create`, or `scripts/push_all.sh` **only when the user
|
|
5
|
+
> explicitly asks in that turn**. Approval for an earlier change does not carry forward, and
|
|
6
|
+
> finishing a task is not permission to commit it.
|
|
7
|
+
|
|
3
8
|
Web-only UI components for consumable credits system.
|
|
4
9
|
|
|
5
10
|
**npm**: `@sudobility/consumables_pages` (public)
|
|
@@ -153,3 +158,7 @@ module.exports = {
|
|
|
153
158
|
- Build before publish: `bun run build` produces ESM output in `dist/`
|
|
154
159
|
- Bump version in `package.json`, then `npm publish --access public`
|
|
155
160
|
- Ensure `consumables_client` peer dependency version range is correct in `package.json` before publishing
|
|
161
|
+
|
|
162
|
+
## Git Workflow
|
|
163
|
+
|
|
164
|
+
- Do not use feature branches for code changes. Always stay on the current branch.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sudobility/consumables_pages",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.44",
|
|
4
4
|
"description": "Web UI components for consumable credits (credit store, purchase history, usage history)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"prepublishOnly": "bun run build"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"@sudobility/consumables_client": "^0.0.
|
|
34
|
-
"@sudobility/types": "1.9.
|
|
33
|
+
"@sudobility/consumables_client": "^0.0.23",
|
|
34
|
+
"@sudobility/types": "^1.9.66",
|
|
35
35
|
"react": "^18.0.0 || ^19.0.0",
|
|
36
36
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@sudobility/consumables_client": "^0.0.
|
|
39
|
+
"@sudobility/consumables_client": "^0.0.23",
|
|
40
40
|
"@testing-library/jest-dom": "^6.9.1",
|
|
41
41
|
"@testing-library/react": "^16.3.2",
|
|
42
42
|
"@types/bun": "^1.2.8",
|
|
@@ -70,6 +70,6 @@
|
|
|
70
70
|
"url": "https://github.com/johnqh/consumables_pages.git"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@sudobility/design": "^1.1.
|
|
73
|
+
"@sudobility/design": "^1.1.48"
|
|
74
74
|
}
|
|
75
75
|
}
|