design-system-dashboard-devmunity 0.0.0 → 0.0.1

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.
@@ -15,20 +15,17 @@ jobs:
15
15
  - name: Checkout
16
16
  uses: actions/checkout@v5
17
17
 
18
- - name: Install pnpm
19
- uses: pnpm/action-setup@v4
20
-
21
- - name: Install node
18
+ - name: Setup Node.js
22
19
  uses: actions/setup-node@v5
23
20
  with:
24
21
  node-version: ${{ matrix.node }}
25
- cache: pnpm
22
+ cache: npm
26
23
 
27
24
  - name: Install dependencies
28
- run: pnpm install
25
+ run: npm ci
29
26
 
30
27
  - name: Lint
31
- run: pnpm run lint
28
+ run: npm run lint
32
29
 
33
30
  - name: Typecheck
34
- run: pnpm run typecheck
31
+ run: npm run typecheck
@@ -0,0 +1,36 @@
1
+ name: Release
2
+ on:
3
+ push:
4
+ branches:
5
+ - main # or main
6
+
7
+ permissions:
8
+ contents: read # for checkout
9
+
10
+ jobs:
11
+ release:
12
+ name: Release
13
+ runs-on: ubuntu-latest
14
+ permissions:
15
+ contents: write # to be able to publish a GitHub release
16
+ issues: write # to be able to comment on released issues
17
+ pull-requests: write # to be able to comment on released pull requests
18
+ id-token: write # to enable use of OIDC for npm provenance
19
+ steps:
20
+ - name: Checkout
21
+ uses: actions/checkout@v4
22
+ with:
23
+ fetch-depth: 0
24
+ - name: Setup Node.js
25
+ uses: actions/setup-node@v4
26
+ with:
27
+ node-version: 'lts/*'
28
+ - name: Install dependencies
29
+ run: npm clean-install
30
+ - name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
31
+ run: npm audit signatures
32
+ - name: Release
33
+ env:
34
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
36
+ run: npx semantic-release
package/CHANGELOG.MD ADDED
File without changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "design-system-dashboard-devmunity",
3
3
  "type": "module",
4
- "version": "0.0.0",
4
+ "version": "0.0.1",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev",
@@ -11,20 +11,23 @@
11
11
  "build-storybook": "storybook build"
12
12
  },
13
13
  "dependencies": {
14
- "@iconify-json/lucide": "1.2.68",
15
- "@iconify-json/simple-icons": "1.2.54",
16
- "tailwindcss": "4.1.16",
17
- "@tailwindcss/vite": "4.1.16",
14
+ "@iconify-json/lucide": "^1.2.72",
15
+ "@iconify-json/simple-icons": "^1.2.57",
18
16
  "@nuxt/ui": "4.1.0",
19
- "nuxt": "4.1.2"
17
+ "@tailwindcss/vite": "4.1.16",
18
+ "nuxt": "^4.2.0",
19
+ "tailwindcss": "4.1.16"
20
20
  },
21
21
  "devDependencies": {
22
22
  "@chromatic-com/storybook": "1.3.3",
23
23
  "@nuxtjs/storybook": "8.3.5",
24
+ "@semantic-release/changelog": "^6.0.3",
25
+ "@semantic-release/git": "^10.0.1",
24
26
  "@storybook/addon-docs": "8.0.8",
25
27
  "@storybook/addon-links": "8.0.8",
26
28
  "prettier": "3.6.2",
27
29
  "prettier-plugin-tailwindcss": "0.7.1",
30
+ "semantic-release": "^25.0.1",
28
31
  "storybook": "8.0.8"
29
32
  }
30
33
  }