@vue-pivottable/nuxt 0.1.0 → 0.2.0

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.
Files changed (2) hide show
  1. package/README.md +13 -13
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -18,18 +18,18 @@ Nuxt is built on Vue, so each Nuxt version corresponds to a specific Vue version
18
18
  ### Nuxt 3 (Vue 3)
19
19
 
20
20
  **VuePivottable** - Direct pivot table rendering
21
- ![Nuxt 3 - VuePivottable](example/nuxt3-pretty-table.png)
21
+ ![Nuxt 3 - VuePivottable](examples/nuxt3-pivottable.png)
22
22
 
23
23
  **VuePivottableUi** - Interactive pivot table with drag-and-drop UI
24
- ![Nuxt 3 - VuePivottableUi](example/nuxt3-pretty-ui.png)
24
+ ![Nuxt 3 - VuePivottableUi](examples/nuxt3-pivottableui.png)
25
25
 
26
26
  ### Nuxt 2 (Vue 2)
27
27
 
28
28
  **VuePivottable** - Direct pivot table rendering (with Totals)
29
- ![Nuxt 2 - VuePivottable](example/nuxt2-pretty-table.png)
29
+ ![Nuxt 2 - VuePivottable](examples/nuxt2-pivottable.png)
30
30
 
31
31
  **VuePivottableUi** - Interactive pivot table with drag-and-drop UI
32
- ![Nuxt 2 - VuePivottableUi](example/nuxt2-pretty-ui.png)
32
+ ![Nuxt 2 - VuePivottableUi](examples/nuxt2-pivottableui.png)
33
33
 
34
34
  ## Installation
35
35
 
@@ -145,23 +145,23 @@ This module automatically handles SSR by loading components only on the client s
145
145
 
146
146
  ## Examples
147
147
 
148
- See the [example](./example) directory for complete working examples:
148
+ See the [examples](./examples) directory for complete working examples:
149
149
 
150
- - `example/nuxt3` - Nuxt 3 example
151
- - `example/nuxt2` - Nuxt 2 example
150
+ - `examples/nuxt3` - Nuxt 3 example
151
+ - `examples/nuxt2` - Nuxt 2 example
152
152
 
153
153
  To run the examples:
154
154
 
155
155
  ```bash
156
156
  # Nuxt 3
157
- cd example/nuxt3
158
- npm install
159
- npm run dev
157
+ cd examples/nuxt3
158
+ pnpm install
159
+ pnpm run dev
160
160
 
161
161
  # Nuxt 2
162
- cd example/nuxt2
163
- npm install
164
- npm run dev
162
+ cd examples/nuxt2
163
+ pnpm install
164
+ pnpm run dev
165
165
  ```
166
166
 
167
167
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vue-pivottable/nuxt",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Nuxt module for vue-pivottable (Nuxt 2/3 compatible)",
5
5
  "author": "Seungwoo321",
6
6
  "license": "MIT",
@@ -43,7 +43,8 @@
43
43
  "devDependencies": {
44
44
  "@nuxt/kit": "^3.9.0",
45
45
  "@nuxt/schema": "^3.9.0",
46
- "release-it": "^17.0.0",
46
+ "@release-it/conventional-changelog": "^10.0.4",
47
+ "release-it": "^19.2.3",
47
48
  "typescript": "^5.0.0",
48
49
  "unbuild": "^2.0.0"
49
50
  },