@rijkshuisstijl-community/components-twig 2.0.2 → 2.0.4

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -14,7 +14,7 @@ Deze package is onderdeel van het [Rijkshuisstijl Community](https://github.com/
14
14
  Om de Twig-componenten van de Rijkshuisstijl-community te gebruiken, installeer je het [components-twig npm package](https://www.npmjs.com/package/@rijkshuisstijl-community/components-twig).
15
15
 
16
16
  ```bash
17
- npm install --save-dev @rijkshuisstijl-community/components-twig
17
+ npm install @rijkshuisstijl-community/components-twig
18
18
  ```
19
19
 
20
20
  Om deze componenten te gebruiken, kun je ze importeren in jouw omgeving met behulp van de `@rhc` namespace.
@@ -28,7 +28,7 @@ Om deze componenten te gebruiken, kun je ze importeren in jouw omgeving met behu
28
28
  De Twig-componenten hebben geen eigen styling. Om de Rijkshuisstijl aan je project toe te voegen, installeer je het [design-tokens npm package](https://www.npmjs.com/package/@rijkshuisstijl-community/design-tokens) en het [components-css npm package](https://www.npmjs.com/package/@rijkshuisstijl-community/components-css).
29
29
 
30
30
  ```bash
31
- npm install --save-dev @rijkshuisstijl-community/design-tokens @rijkshuisstijl-community/components-css
31
+ npm install @rijkshuisstijl-community/design-tokens @rijkshuisstijl-community/components-css
32
32
  ```
33
33
 
34
34
  Dit pakket bevat de CSS-variabelen van het design systeem. Importeer het `index.css`-bestand uit de `dist` map van het
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rijkshuisstijl-community/components-twig",
3
- "version": "2.0.2",
3
+ "version": "2.0.4",
4
4
  "author": "Community for NL Design System",
5
5
  "description": "Twig component library for the Rijkshuisstijl Community repository, based on the NL Design System architecture",
6
6
  "license": "EUPL-1.2",
@@ -23,7 +23,7 @@
23
23
  ],
24
24
  "sideEffects": false,
25
25
  "dependencies": {
26
- "@rijkshuisstijl-community/components-css": "8.0.0"
26
+ "@rijkshuisstijl-community/components-css": "9.0.0"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@nl-design-system/tsconfig": "1.0.4",
@@ -45,6 +45,7 @@
45
45
  "build:components": "cpx \"src/**/*.twig\" dist/",
46
46
  "build:typescript": "tsc",
47
47
  "clean": "rimraf dist/",
48
- "lint": "tsc --project ./tsconfig.json --noEmit"
48
+ "lint": "tsc --project ./tsconfig.json --noEmit",
49
+ "typecheck": "tsc --noEmit"
49
50
  }
50
51
  }