@sikka/hawa 0.1.76 → 0.1.77

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.
@@ -40,6 +40,7 @@ jobs:
40
40
  run: npm publish
41
41
 
42
42
  build-storybook:
43
+ if: ${{ !contains(github.event.head_commit.message, 'skip_storybook') }}
43
44
  runs-on: [self-hosted, linux, x64, sikka-sofware-server-development]
44
45
  strategy:
45
46
  matrix:
@@ -50,25 +51,17 @@ jobs:
50
51
  uses: actions/setup-node@v2
51
52
  with:
52
53
  node-version: ${{ matrix.node-version }}
53
- - name: Install dependencies
54
- run: |
55
- if [ -e 'package-lock.json' ]; then
56
- npm ci
57
- else
58
- npm install
59
- fi
60
54
  - name: Generate Storybook Static Files
61
55
  run: |
62
56
  npm run build-storybook
63
-
64
57
  deploy:
65
58
  runs-on: [self-hosted, linux, x64, sikka-sofware-server-development]
66
- needs: build-storybook
67
59
  strategy:
68
60
  matrix:
69
61
  node-version: [16.x]
70
62
  steps:
71
63
  - uses: actions/checkout@v2
64
+
72
65
  - name: Change working directory to ./landing
73
66
  run: cd ./landing
74
67
  - name: Use Node.js ${{ matrix.node-version }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sikka/hawa",
3
- "version": "0.1.76",
3
+ "version": "0.1.77",
4
4
  "description": "Modern UI Kit made with Tailwind & Radix Primitives",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -34,7 +34,7 @@
34
34
  "storybook": "start-storybook -p 6006 -s public",
35
35
  "generate-css": "postcss src/tailwind.css -o src/styles.css && mkdir -p dist && cp src/styles.css dist/",
36
36
  "deploy-storybook": "storybook-to-ghpages",
37
- "build-storybook": "build-storybook -o ./landing/public/docs",
37
+ "build-storybook": "build-storybook",
38
38
  "build-up": "tsup src/index.ts --format cjs,esm --dts",
39
39
  "build-lib": "rollup -c",
40
40
  "build:styles": " node tools/build-styles",