@landtrustinc/design-system 1.0.11 → 1.0.12
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 +5 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,14 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
Design system components for LandTrust applications.
|
|
4
4
|
|
|
5
|
-
## 🚀 Quick Setup
|
|
6
|
-
|
|
7
|
-
1. **Copy template:** `cp node_modules/@landtrustinc/design-system/.npmrc.template .npmrc`
|
|
8
|
-
2. **Get GitHub token:** https://github.com/settings/tokens (select "read:packages" scope)
|
|
9
|
-
3. **Replace YOUR_GITHUB_TOKEN** in `.npmrc` with your actual token
|
|
10
|
-
4. **Add to gitignore:** `echo ".npmrc" >> .gitignore`
|
|
11
|
-
5. **Install:** `npm install @landtrustinc/design-system`
|
|
12
|
-
|
|
13
5
|
## 📖 Usage
|
|
14
6
|
|
|
15
7
|
```tsx
|
|
@@ -35,4 +27,8 @@ npm run storybook # Run Storybook
|
|
|
35
27
|
|
|
36
28
|
## 📦 Publishing
|
|
37
29
|
|
|
38
|
-
|
|
30
|
+
```bash
|
|
31
|
+
npm build
|
|
32
|
+
npm version patch/minor/major
|
|
33
|
+
npm publish
|
|
34
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@landtrustinc/design-system",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Design system components for LandTrust applications",
|
|
6
6
|
"homepage": "https://github.com/LandtrustInc/landtrust-ui/tree/main/packages/design-system",
|