@sikka/hawa 0.2.2-beta → 0.2.3-beta

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.
@@ -20,9 +20,8 @@ jobs:
20
20
  - uses: actions/checkout@v2
21
21
  - name: Append -beta to package.json version
22
22
  run: |
23
- apt-get update && apt-get install -y jq
24
- jq '.version = .version + "-beta"' package.json > package.json.tmp
25
- mv package.json.tmp package.json
23
+ node -e "const fs = require('fs'); const packageJson = require('./package.json'); packageJson.version += '-beta'; fs.writeFileSync('./package.json', JSON.stringify(packageJson, null, 2));"
24
+
26
25
  - name: Use Node.js v16
27
26
  uses: actions/setup-node@v2
28
27
  with:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sikka/hawa",
3
- "version": "0.2.2-beta",
3
+ "version": "0.2.3-beta",
4
4
  "description": "Modern UI Kit made with Tailwind & Radix Primitives",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -125,4 +125,4 @@
125
125
  "slate-react": "^0.97.1",
126
126
  "tailwind-merge": "^1.14.0"
127
127
  }
128
- }
128
+ }