rk-designsystem 1.1.59 → 1.1.60

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 (1) hide show
  1. package/package.json +3 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rk-designsystem",
3
- "version": "1.1.59",
3
+ "version": "1.1.60",
4
4
  "description": "A React component library built on top of Digdir Design System",
5
5
  "author": "daniel@tunetek.no",
6
6
  "license": "MIT",
@@ -65,8 +65,9 @@
65
65
  "release:major": "npm version major && npm publish",
66
66
  "storybook": "storybook dev -p 6006",
67
67
  "build-storybook": "storybook build --output-dir storybook-build",
68
- "predeploy:storybook": "npm run build-storybook && npm run copy-metadata",
68
+ "predeploy:storybook": "npm run build-storybook && npm run copy-metadata && npm run copy-ai-guide",
69
69
  "copy-metadata": "node -e \"require('fs').copyFileSync('metadata.json', 'storybook-build/metadata.json')\"",
70
+ "copy-ai-guide": "node -e \"require('fs').copyFileSync('AI_DESIGN_SYSTEM_GUIDE.md', 'storybook-build/AI_DESIGN_SYSTEM_GUIDE.md')\"",
70
71
  "deploy:storybook": "gh-pages -d storybook-build -b gh-pages -r https://github.com/norwegianredcross/DesignSystem.git --dest storybook",
71
72
  "build:app": "vite build --config vite.app.config.ts",
72
73
  "deploy:app": "npm run build:app && gh-pages -d dist-app -b gh-pages -r https://github.com/norwegianredcross/DesignSystem.git --add"