graphwise-styleguide 0.0.1-init2 → 0.0.1-init3
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 +9 -0
- package/dist/variables.css +1677 -965
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -35,6 +35,15 @@ Install via npm:
|
|
|
35
35
|
npm install graphwise-styleguide
|
|
36
36
|
```
|
|
37
37
|
|
|
38
|
+
## Tokens browser
|
|
39
|
+
Tokens file is big and hard to read in raw json format. To make it easier to browse and understand the tokens, you can
|
|
40
|
+
run the following command
|
|
41
|
+
```bash
|
|
42
|
+
npm run generate-tokens-html
|
|
43
|
+
```
|
|
44
|
+
This will generate a `tokens-browser.html` file in the root directory of the repository. Open this file in your browser
|
|
45
|
+
to view the tokens in a more user-friendly format.
|
|
46
|
+
|
|
38
47
|
## Usage
|
|
39
48
|
|
|
40
49
|
This workflow describes how to update and integrate design tokens and styles from Figma into the styleguide module and
|