@department-of-veterans-affairs/css-library 0.5.1 → 0.6.0
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 +8 -8
- package/dist/elements.css +1640 -1
- package/dist/full.css +9518 -0
- package/dist/tokens/css/variables.css +3 -3
- package/dist/tokens/json/variables.json +17 -17
- package/dist/tokens/scss/variables.scss +3 -3
- package/dist/utilities.css +10093 -1
- package/package.json +8 -4
- package/dist/elements.min.css +0 -1
- package/dist/fonts.css +0 -1
- package/dist/fonts.min.css +0 -1
- package/dist/print.css +0 -1
package/README.md
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
# css-library
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
The purpose of the CSS Library is to replace the current VA.gov style library (Formation) with styles and tokens based on [USWDS version 3](https://github.com/uswds/uswds).
|
|
4
|
+
|
|
5
|
+
## Generate all files
|
|
4
6
|
|
|
5
|
-
|
|
7
|
+
To generate all tokens, stylesheets, and assets, run `yarn build`
|
|
6
8
|
|
|
7
|
-
|
|
8
|
-
- elements.css
|
|
9
|
-
- utilties.css
|
|
9
|
+
## Stylesheets
|
|
10
10
|
|
|
11
|
-
To generate stylesheets, run `yarn build:stylesheets`
|
|
11
|
+
To generate stylesheets, run `yarn build:stylesheets`
|
|
12
12
|
|
|
13
13
|
## Design Tokens
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
To generate all token files, run `yarn build:tokens`
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
The tokens generated by this library will be available in several different formats so that various tools and environments can use them.
|