design-system-dashboard-devmunity 0.0.0 → 0.0.2
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.
- package/.github/workflows/ci.yml +5 -8
- package/.github/workflows/release.yml +36 -0
- package/CHANGELOG.MD +0 -0
- package/CHANGELOG.md +7 -0
- package/package.json +37 -6
- package/bun.lock +0 -3154
package/.github/workflows/ci.yml
CHANGED
|
@@ -15,20 +15,17 @@ jobs:
|
|
|
15
15
|
- name: Checkout
|
|
16
16
|
uses: actions/checkout@v5
|
|
17
17
|
|
|
18
|
-
- name:
|
|
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:
|
|
22
|
+
cache: npm
|
|
26
23
|
|
|
27
24
|
- name: Install dependencies
|
|
28
|
-
run:
|
|
25
|
+
run: npm ci
|
|
29
26
|
|
|
30
27
|
- name: Lint
|
|
31
|
-
run:
|
|
28
|
+
run: npm run lint
|
|
32
29
|
|
|
33
30
|
- name: Typecheck
|
|
34
|
-
run:
|
|
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/CHANGELOG.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
## [0.0.2](https://github.com/vicventum/design-system-dashboard-devmunity/compare/v0.0.1...v0.0.2) (2025-11-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **dev-infra:** Agrega configuración en el `package.json` para que se actualice la versión en él automáticamente ([cbd9baf](https://github.com/vicventum/design-system-dashboard-devmunity/commit/cbd9bafbb8b8ba096a0536e7aa3e591d56a34a7b))
|
|
7
|
+
* **dev-infra:** Cambia la rama de `master` a `main` en la configuración ([9e4c691](https://github.com/vicventum/design-system-dashboard-devmunity/commit/9e4c691dbe136c952436c6b941fa158178d6f4e0))
|
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.
|
|
4
|
+
"version": "0.0.2",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "nuxt build",
|
|
7
7
|
"dev": "nuxt dev",
|
|
@@ -10,21 +10,52 @@
|
|
|
10
10
|
"storybook": "storybook dev -p 6006",
|
|
11
11
|
"build-storybook": "storybook build"
|
|
12
12
|
},
|
|
13
|
+
"release": {
|
|
14
|
+
"branches": [
|
|
15
|
+
"main",
|
|
16
|
+
"next"
|
|
17
|
+
],
|
|
18
|
+
"plugins": [
|
|
19
|
+
"@semantic-release/commit-analyzer",
|
|
20
|
+
"@semantic-release/release-notes-generator",
|
|
21
|
+
[
|
|
22
|
+
"@semantic-release/changelog",
|
|
23
|
+
{
|
|
24
|
+
"changelogFile": "CHANGELOG.md"
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"@semantic-release/npm",
|
|
28
|
+
"@semantic-release/github",
|
|
29
|
+
[
|
|
30
|
+
"@semantic-release/git",
|
|
31
|
+
{
|
|
32
|
+
"assets": [
|
|
33
|
+
"package.json",
|
|
34
|
+
"CHANGELOG.md"
|
|
35
|
+
],
|
|
36
|
+
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
|
37
|
+
}
|
|
38
|
+
]
|
|
39
|
+
]
|
|
40
|
+
},
|
|
13
41
|
"dependencies": {
|
|
14
|
-
"@iconify-json/lucide": "1.2.
|
|
15
|
-
"@iconify-json/simple-icons": "1.2.
|
|
16
|
-
"tailwindcss": "4.1.16",
|
|
17
|
-
"@tailwindcss/vite": "4.1.16",
|
|
42
|
+
"@iconify-json/lucide": "^1.2.72",
|
|
43
|
+
"@iconify-json/simple-icons": "^1.2.57",
|
|
18
44
|
"@nuxt/ui": "4.1.0",
|
|
19
|
-
"
|
|
45
|
+
"@tailwindcss/vite": "4.1.16",
|
|
46
|
+
"nuxt": "^4.2.0",
|
|
47
|
+
"tailwindcss": "4.1.16"
|
|
20
48
|
},
|
|
21
49
|
"devDependencies": {
|
|
22
50
|
"@chromatic-com/storybook": "1.3.3",
|
|
23
51
|
"@nuxtjs/storybook": "8.3.5",
|
|
52
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
53
|
+
"@semantic-release/git": "^10.0.1",
|
|
24
54
|
"@storybook/addon-docs": "8.0.8",
|
|
25
55
|
"@storybook/addon-links": "8.0.8",
|
|
26
56
|
"prettier": "3.6.2",
|
|
27
57
|
"prettier-plugin-tailwindcss": "0.7.1",
|
|
58
|
+
"semantic-release": "^25.0.1",
|
|
28
59
|
"storybook": "8.0.8"
|
|
29
60
|
}
|
|
30
61
|
}
|