@luscii-healthtech/web-ui 54.5.1 → 54.5.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 +14 -0
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -8,6 +8,7 @@ The `web-ui` repository contains the UI components for Luscii's frontend project
|
|
|
8
8
|
- 📖 [Fonts](#fonts)
|
|
9
9
|
- 📦 [How to use](#how-to-use)
|
|
10
10
|
- 🤝 [Contributing](#contributing)
|
|
11
|
+
- 📐 [Coding standards & AI guidance](#coding-standards--ai-guidance)
|
|
11
12
|
|
|
12
13
|
## Getting started
|
|
13
14
|
|
|
@@ -176,6 +177,19 @@ Great to have you help making WebUI better! We have a few guidelines and tips
|
|
|
176
177
|
to make sure we can keep the library consistent and easy to use. You can find
|
|
177
178
|
them in our [contributing guide](CONTRIBUTING.md).
|
|
178
179
|
|
|
180
|
+
### Coding standards & AI guidance
|
|
181
|
+
|
|
182
|
+
AI-agent guidance (including the Design System governance policy) lives in
|
|
183
|
+
[`CLAUDE.md`](CLAUDE.md).
|
|
184
|
+
|
|
185
|
+
Org-wide standards are kept in a separate repository and cloned into a local,
|
|
186
|
+
git-ignored `.coding-standards/` folder. Pull them in with:
|
|
187
|
+
|
|
188
|
+
```bash
|
|
189
|
+
yarn add-coding-standards # first-time clone
|
|
190
|
+
yarn pull-coding-standards # update to latest
|
|
191
|
+
```
|
|
192
|
+
|
|
179
193
|
### Reporting bugs
|
|
180
194
|
|
|
181
195
|
If you find a bug, please report it by sending us a message in the [#design-system-circle channel](https://luscii.slack.com/archives/C03507ZKRCY). It helps us a lot knowing of anything that is not working as expected.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@luscii-healthtech/web-ui",
|
|
3
|
-
"version": "54.5.
|
|
3
|
+
"version": "54.5.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Joris Janssen"
|
|
@@ -65,7 +65,9 @@
|
|
|
65
65
|
"icons:special": "rimraf src/components/Icons/special-icons/*Icon.tsx && yarn svgr src/components/Icons/special-icons/source-files --no-prettier --config-file svgr.special-icons.config.js && prettier src/components/Icons/special-icons/*.{ts,tsx} --no-config --write",
|
|
66
66
|
"icons:generate-list": "node ./scripts/generate-icon-list.mjs",
|
|
67
67
|
"icons": "yarn icons:special && yarn icons:regular && yarn icons:generate-list",
|
|
68
|
-
"sync:design-tokens": "node ./scripts/sync-design-tokens.mjs"
|
|
68
|
+
"sync:design-tokens": "node ./scripts/sync-design-tokens.mjs",
|
|
69
|
+
"add-coding-standards": "git clone --depth 1 git@github.com:Luscii/coding-standards-database.git .coding-standards",
|
|
70
|
+
"pull-coding-standards": "git -C .coding-standards pull --ff-only"
|
|
69
71
|
},
|
|
70
72
|
"peerDependencies": {
|
|
71
73
|
"@dnd-kit/core": "^6.3.1",
|