design-system-dashboard-devmunity 0.0.1 → 0.0.3
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/CHANGELOG.md +6 -0
- package/package.json +29 -1
- package/.github/workflows/ci.yml +0 -31
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
## [0.0.3](https://github.com/vicventum/design-system-dashboard-devmunity/compare/v0.0.2...v0.0.3) (2025-11-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **ci:** Elimina archivo `ci.yml` que ejecutaba el linter ya que no es necesario ([0df65a8](https://github.com/vicventum/design-system-dashboard-devmunity/commit/0df65a8ee189bba7190f116453f6188d121e73c0))
|
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.3",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "nuxt build",
|
|
7
7
|
"dev": "nuxt dev",
|
|
@@ -10,6 +10,34 @@
|
|
|
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
42
|
"@iconify-json/lucide": "^1.2.72",
|
|
15
43
|
"@iconify-json/simple-icons": "^1.2.57",
|
package/.github/workflows/ci.yml
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
name: ci
|
|
2
|
-
|
|
3
|
-
on: push
|
|
4
|
-
|
|
5
|
-
jobs:
|
|
6
|
-
ci:
|
|
7
|
-
runs-on: ${{ matrix.os }}
|
|
8
|
-
|
|
9
|
-
strategy:
|
|
10
|
-
matrix:
|
|
11
|
-
os: [ubuntu-latest]
|
|
12
|
-
node: [22]
|
|
13
|
-
|
|
14
|
-
steps:
|
|
15
|
-
- name: Checkout
|
|
16
|
-
uses: actions/checkout@v5
|
|
17
|
-
|
|
18
|
-
- name: Setup Node.js
|
|
19
|
-
uses: actions/setup-node@v5
|
|
20
|
-
with:
|
|
21
|
-
node-version: ${{ matrix.node }}
|
|
22
|
-
cache: npm
|
|
23
|
-
|
|
24
|
-
- name: Install dependencies
|
|
25
|
-
run: npm ci
|
|
26
|
-
|
|
27
|
-
- name: Lint
|
|
28
|
-
run: npm run lint
|
|
29
|
-
|
|
30
|
-
- name: Typecheck
|
|
31
|
-
run: npm run typecheck
|