Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
},
"private": true,
"dependencies": {
"@angular-devkit/build-angular": "^22.0.0",
"@angular/animations": "^22.0.0",
"@angular/build": "^22.0.0",
"@angular/cli": "^22.0.0",
"@angular/common": "^22.0.0",
"@angular/compiler": "^22.0.0",
Expand All @@ -29,6 +29,7 @@
"overrides": {
"zone.js": "^0.16.0",
"cross-spawn": "^7.0.5",
"http-proxy-middleware": "^3.0.0"
"http-proxy-middleware": "^3.0.0",
"uuid": "^11.0.0"
}
}

This file was deleted.

15 changes: 15 additions & 0 deletions org.eclipse.wildwebdeveloper.tests/testProjects/vue-app/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>vue-app</title>
</head>
<body>
<noscript>
<strong>We're sorry but vue-app doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"compilerOptions": {
"target": "es5",
"target": "esnext",
"module": "esnext",
"moduleResolution": "bundler",
"baseUrl": "./",
"moduleResolution": "node",
"paths": {
"@/*": [
"src/*"
Expand All @@ -12,8 +12,7 @@
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
"dom.iterable"
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,21 @@
"name": "vue-app",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint ."
},
"dependencies": {
"core-js": "^3.39.0",
"vue": "^3.2.13"
"vue": "^3.5.13"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"@vitejs/plugin-vue": "^6.0.0",
"vite": "^8.0.0",
"eslint": "^10.2.1",
"@eslint/js": "^10.0.1",
"@eslint/js": "^10.0.1",
"eslint-plugin-vue": "^10.8.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}
}

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { fileURLToPath, URL } from 'node:url'

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'

export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})

This file was deleted.

Loading