Skip to content

Commit 68e0ca2

Browse files
committed
deps
1 parent dae6d35 commit 68e0ca2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/create-app.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import { camelCase, kebabCase } from 'lodash-es'
22
import { createLocalVue } from './utils'
3-
import { ForwardRouter } from '../src/create-router'
4-
import { ForwardStore } from '../src/create-store'
53
import Vue, { Component, defineAsyncComponent, defineComponent, h } from 'vue'
64

75
export function createApp(

vite.config.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/// <reference types="vitest" />
22
import { defineConfig } from 'vite'
33
import { resolve } from 'path'
4+
import dts from 'vite-plugin-dts'
45

56
export default defineConfig({
67
build: {
@@ -10,7 +11,7 @@ export default defineConfig({
1011
name: 'VueForward',
1112
},
1213
rollupOptions: {
13-
external: ['vue'],
14+
external: ['vue', 'vue-router', 'vuex'],
1415
output: {
1516
globals: {
1617
vue: 'Vue',
@@ -19,6 +20,7 @@ export default defineConfig({
1920
},
2021
},
2122
},
23+
plugins: [],
2224
test: {
2325
coverage: {
2426
exclude: ['packages'],

0 commit comments

Comments
 (0)