@datawire-ai/busyfile-design-library 1.0.7 → 1.0.8
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 +15 -0
- package/package.json +7 -5
- package/dist/index.js +0 -3197
- package/dist/index.umd.cjs +0 -22
package/README.md
CHANGED
|
@@ -50,6 +50,21 @@ pnpm test
|
|
|
50
50
|
4. Create changeset `pnpm changeset:add && changeset:release`
|
|
51
51
|
5. Submit a pull request
|
|
52
52
|
|
|
53
|
+
## PRs & Changeset Process
|
|
54
|
+
- [ ] **Do not run `changeset` until your PR is ready for merge**
|
|
55
|
+
- [ ] Complete all required changes
|
|
56
|
+
- [ ] Apply PR review feedback
|
|
57
|
+
- [ ] Get the PR reviewed
|
|
58
|
+
- [ ] **Once reviews are done and PR is approved**
|
|
59
|
+
- [ ] Run the `changeset` scripts
|
|
60
|
+
- [ ] Get the PR reviewed and approved again
|
|
61
|
+
- [ ] Merge into `main`
|
|
62
|
+
- [ ] **If you receive comments after creating a `changeset`**
|
|
63
|
+
- [ ] Delete the generated `changeset` files
|
|
64
|
+
- [ ] Apply PR feedback
|
|
65
|
+
- [ ] Push the changes and get them reviewed again
|
|
66
|
+
- [ ] Repeat until the PR is ready for merge into `main`
|
|
67
|
+
|
|
53
68
|
### Project Structure
|
|
54
69
|
|
|
55
70
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datawire-ai/busyfile-design-library",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "Design system for busyfile",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -12,10 +12,12 @@
|
|
|
12
12
|
"import": "./dist/index.js",
|
|
13
13
|
"require": "./dist/index.umd.cjs",
|
|
14
14
|
"types": "./dist/index.d.ts"
|
|
15
|
-
}
|
|
15
|
+
},
|
|
16
|
+
"./style.css": "./dist/style.css"
|
|
16
17
|
},
|
|
17
18
|
"files": [
|
|
18
19
|
"dist",
|
|
20
|
+
"src/style.css",
|
|
19
21
|
"README.md"
|
|
20
22
|
],
|
|
21
23
|
"keywords": [],
|
|
@@ -48,6 +50,7 @@
|
|
|
48
50
|
"@storybook/addon-vitest": "^9.1.3",
|
|
49
51
|
"@storybook/react": "^9.1.3",
|
|
50
52
|
"@storybook/react-vite": "^9.1.3",
|
|
53
|
+
"@tailwindcss/postcss": "^4.1.10",
|
|
51
54
|
"@types/react": "^19",
|
|
52
55
|
"@types/react-dom": "^19",
|
|
53
56
|
"@typescript-eslint/eslint-plugin": "^8.15.0",
|
|
@@ -64,7 +67,6 @@
|
|
|
64
67
|
"playwright": "^1.55.0",
|
|
65
68
|
"prettier": "^3.0.0",
|
|
66
69
|
"storybook": "^9.1.3",
|
|
67
|
-
"@tailwindcss/postcss": "^4.1.10",
|
|
68
70
|
"tailwindcss": "^4.1.12",
|
|
69
71
|
"tw-animate-css": "^1.3.7",
|
|
70
72
|
"typescript": "^5",
|
|
@@ -76,8 +78,8 @@
|
|
|
76
78
|
"react-dom": ">=18.0.0"
|
|
77
79
|
},
|
|
78
80
|
"engines": {
|
|
79
|
-
"node": "22.
|
|
80
|
-
"pnpm": "10.
|
|
81
|
+
"node": ">=22.0.0",
|
|
82
|
+
"pnpm": ">=10.0.0"
|
|
81
83
|
},
|
|
82
84
|
"scripts": {
|
|
83
85
|
"dev": "vite",
|