design-system-dashboard-devmunity 0.0.2 → 0.0.4

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 CHANGED
@@ -1,7 +1,6 @@
1
- ## [0.0.2](https://github.com/vicventum/design-system-dashboard-devmunity/compare/v0.0.1...v0.0.2) (2025-11-05)
1
+ ## [0.0.4](https://github.com/vicventum/design-system-dashboard-devmunity/compare/v0.0.3...v0.0.4) (2025-11-05)
2
2
 
3
3
 
4
4
  ### Bug Fixes
5
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))
6
+ * test ([ab4eba8](https://github.com/vicventum/design-system-dashboard-devmunity/commit/ab4eba858abe0f386faa39e3a4c0b0aee32d86ce))
@@ -13,6 +13,7 @@
13
13
  </template>
14
14
  </ACard>
15
15
  <UCard variant="ghost"> oli </UCard>
16
+ test
16
17
  </ACardInner>
17
18
  </div>
18
19
  </template>
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.2",
4
+ "version": "0.0.4",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev",
@@ -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