design-system-dashboard-devmunity 0.0.1 → 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/CHANGELOG.md +7 -0
- package/package.json +29 -1
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,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",
|