Skip to content

Commit 805a583

Browse files
Merge pull request #55 from vue-pivottable/fix/typo-and-build
fix: typo and build error
2 parents 8154f08 + ab303a7 commit 805a583

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,11 @@
5151
"dev:all": "pnpm -r --parallel run dev"
5252
},
5353
"dependencies": {
54-
"@vue-pivottable/virtual-table-renderer": "workspace:*",
55-
"papaparse": "^5.5.2",
5654
"vue": "^3.5.13",
5755
"vue-draggable-next": "^2.2.1"
5856
},
5957
"devDependencies": {
58+
"@vue-pivottable/lazy-table-renderer": "workspace:*",
6059
"@eslint/js": "^9.21.0",
6160
"@vitejs/plugin-vue": "^5.2.1",
6261
"eslint": "^9.21.0",
@@ -65,6 +64,7 @@
6564
"globals": "^16.0.0",
6665
"vite": "^6.1.0",
6766
"vite-plugin-dts": "^4.5.3",
68-
"vite-plugin-static-copy": "^2.3.1"
67+
"vite-plugin-static-copy": "^2.3.1",
68+
"papaparse": "^5.5.2"
6969
}
7070
}

pnpm-lock.yaml

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/App.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import { markRaw, ref } from 'vue'
3838
import tips from './tips.js'
3939
import CsvUploader from './CsvUploader.vue'
4040
import { PivotUtilities, VuePivottableUi, Renderer } from '@/'
41-
import LazyPivottableRenderer from '../packages/lazy-table-renderer'
41+
import LazyPivottableRenderer from '@vue-pivottable/lazy-table-renderer'
4242
4343
const renderers = markRaw({ ...Renderer, ...LazyPivottableRenderer })
4444
const initialData = ref(tips)

0 commit comments

Comments
 (0)