Skip to content

Commit

Permalink
fix(vue): fix vue build
Browse files Browse the repository at this point in the history
  • Loading branch information
DominikPieper committed Aug 18, 2023
1 parent 757d6df commit b581950
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions e2e/vue-e2e/tests/vue.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ describe('vue e2e', () => {

afterAll(() => {
// Cleanup the test project
rmSync(projectDirectory, {
/*rmSync(projectDirectory, {
recursive: true,
force: true,
});
});*/
});

describe('application', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/// <reference types="vite/client" />
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
},
"files": [],
"exclude": ["jest.config.ts", "src/**/*.spec.ts", "src/**/*.test.ts", "src/**/*.spec.tsx", "src/**/*.test.tsx", "src/**/*.spec.js", "src/**/*.test.js", "src/**/*.spec.jsx", "src/**/*.test.jsx"],
"include": ["src/**/*.js", "src/**/*.jsx", "src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"]
"include": ["env.d.ts", "src/**/*.js", "src/**/*.jsx", "src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"]
}
10 changes: 5 additions & 5 deletions packages/vue/src/generators/utils/versions.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export const vueVersion = '^3.3.4';
export const vueTscVersion = '^1.6.5';
export const vueRouterVersion = '^4.2.2';
export const vitePluginVueVersion = '^4.2.3';
export const vueTestUtilsVersion = '^2.3.2';
export const vueTscVersion = '^1.8.8';
export const vueRouterVersion = '^4.2.4';
export const vitePluginVueVersion = '^4.3.1';
export const vueTestUtilsVersion = '^2.4.1';
export const eslintPluginVueVersion = '^9.14.1';
export const eslintPluginPrettierVueVersion = '^7.1.0';
export const eslintPluginPrettierVueVersion = '^8.0.0';
export const eslintPluginTypescriptVueVersion = '^11.0.3';

0 comments on commit b581950

Please sign in to comment.