@vttforge/styles 0.3.2 → 0.3.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @vttforge/styles
2
2
 
3
+ ## 0.3.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 7eeeb20: Rewrite the npm package descriptions to say what each package does today. `types` claimed full schema inference it does not have, `vite-plugin` claimed Handlebars HMR that lives in the dev loop, and `cli` did not mention `audit`.
8
+
3
9
  ## 0.3.2
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -8,13 +8,13 @@ pnpm add @vttforge/styles
8
8
 
9
9
  ## Usage
10
10
 
11
- Default one import, sub-layered:
11
+ Default, one import, sub-layered:
12
12
 
13
13
  ```css
14
14
  @import '@vttforge/styles';
15
15
  ```
16
16
 
17
- Mantine-style wrap everything in a single `@layer vttforge`:
17
+ Or wrap everything in a single `@layer vttforge`:
18
18
 
19
19
  ```css
20
20
  @import '@vttforge/styles/styles.layer.css';
@@ -33,7 +33,7 @@ Opt-in theme:
33
33
  @import '@vttforge/styles/themes/forge.css';
34
34
  ```
35
35
 
36
- The tokens are also published as data `@vttforge/styles/tokens.json` for anything that is not CSS.
36
+ The tokens are also published as data, `@vttforge/styles/tokens.json`, for anything that is not CSS.
37
37
 
38
38
  ## Layer names
39
39
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vttforge/styles",
3
- "version": "0.3.2",
4
- "description": "VTTForge base CSS layer: design tokens, reset, base, components, opt-in themes (CSS Cascade Layers).",
3
+ "version": "0.3.3",
4
+ "description": "VTTForge design system as CSS: tokens, reset, base, components and opt-in themes over cascade layers.",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/vttforge/vttforge#readme",