cja-phoenix 0.19.3 → 0.19.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 +4 -1
  2. package/package.json +5 -4
package/README.md CHANGED
@@ -11,7 +11,10 @@
11
11
  npm install
12
12
 
13
13
  # start the doc app, great for testing components
14
- npm run story
14
+ npm run story:dev
15
+
16
+ # build the doc app for deployment
17
+ npm run story:build
15
18
 
16
19
  # build the library, available under dist
17
20
  npm run build
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "cja-phoenix",
3
- "version": "0.19.3",
3
+ "version": "0.19.4",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": "rimraf dist && vite build",
7
7
  "build:link": "npm run build && npm link",
8
8
  "publish:lib": "npm run build && npm publish",
9
- "story": "histoire build && histoire dev"
9
+ "story:build": "histoire build",
10
+ "story:dev": "histoire dev"
10
11
  },
11
12
  "peerDependencies": {
12
13
  "maska": "^3.0.4",
@@ -43,8 +44,8 @@
43
44
  "types": "./dist/types/index.d.ts",
44
45
  "import": "./dist/cja-phoenix.es.js"
45
46
  },
46
- "./style": "./dist/cja-phoenix.css",
47
+ "./style": "./dist/style.css",
47
48
  "./variables": "./src/assets/variables/index.scss",
48
- "./iconia": "./src/assets/iconia.style.css"
49
+ "./iconia": "./src/assets/iconia/style.css"
49
50
  }
50
51
  }