@avenirs-esr/avenirs-dsav 0.1.37 → 0.1.39

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 +4 -0
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -17,6 +17,10 @@ The AVENIR(s) program needs its own identity, hence this design system it will u
17
17
 
18
18
  You can find the complete documentation on our [github page](https://avenirs-esr.github.io/avenirs-dsav/).
19
19
 
20
+ ## Storybook demos
21
+
22
+ You can find examples of use and demo of the design system components on our [github page](https://avenirs-esr.github.io/avenirs-dsav/storybook/).
23
+
20
24
  ## Installation
21
25
 
22
26
  In your project, run `npm install @ævenirs-esr/avenirs-dsav`.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@avenirs-esr/avenirs-dsav",
3
3
  "type": "module",
4
- "version": "0.1.37",
4
+ "version": "0.1.39",
5
5
  "main": "dist/avenirs-dsav.umd.js",
6
6
  "module": "dist/avenirs-dsav.es.js",
7
7
  "types": "dist/index.d.ts",
@@ -16,7 +16,7 @@
16
16
  "build-only:development": "vite build -m development",
17
17
  "dev": "vite",
18
18
  "build": "run-p type-check type-gen \"build-only {@}\" --",
19
- "build:watch": "run-p type-check type-gen:watch \"build-only:watch {@}\" --",
19
+ "build:watch": "run-p type-check:watch \"build-only:watch {@}\" --",
20
20
  "build:development": "run-p type-check type-gen \"build-only:development {@}\" --",
21
21
  "format": "eslint . --fix",
22
22
  "lint": "eslint .",
@@ -29,6 +29,7 @@
29
29
  "test:a11y:run": "playwright test --config=a11y/playwright.a11y.config.ts",
30
30
  "test:a11y:cleanup": "rimraf a11y/.output",
31
31
  "test:watch": "vitest",
32
+ "type-check:watch": "vue-tsc --build --force --watch",
32
33
  "type-check": "vue-tsc --build --force",
33
34
  "type-gen": "vue-tsc -p tsconfig.app.json",
34
35
  "type-gen:watch": "vue-tsc -p tsconfig.app.json --watch",
@@ -36,7 +37,7 @@
36
37
  "commitlint": "commitlint --edit",
37
38
  "lint-staged": "lint-staged",
38
39
  "storybook": "storybook dev -p 6006",
39
- "build-storybook": "storybook build",
40
+ "storybook:build": "storybook build",
40
41
  "release:patch": "npm version patch --git-tag-version -m \"chore(release): update version to %s\" --tag-version-prefix v",
41
42
  "release:minor": "npm version minor --git-tag-version -m \"chore(release): update version to %s\" --tag-version-prefix v",
42
43
  "release:major": "npm version major --git-tag-version -m \"chore(release): update version to %s\" --tag-version-prefix v",