Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vue3 upgrade #296

Open
wants to merge 33 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
80d4b3e
Initial changes for vue3 upgrade
vvi230714 Jan 17, 2024
ac6747d
Updated webpack vue loader config
vvi230714 Jan 31, 2024
4e4f736
First no error Vite Build
vvi230714 Feb 1, 2024
bf32656
Vite testing updates
vvi230714 Feb 6, 2024
fb91c9c
Updates to try to get something to render
pwolanin Feb 21, 2024
5e5c648
Merge remote-tracking branch 'origin/master' into vue3-upgrade
pwolanin Feb 21, 2024
e869255
add back bulma scss
pwolanin Mar 13, 2024
ce1ad61
update leaflet use
pwolanin Mar 13, 2024
56b999d
vue-leaflet fixes
vvi230714 Apr 14, 2024
c1e1902
Trying to get zoomToWard to work again
pwolanin Apr 17, 2024
a8d6cbe
removed all vue filters
vvi230714 Apr 18, 2024
367a3f0
Quick fix for hover tips
pwolanin May 8, 2024
6fb754b
rm mapzen and update node version for actions
pwolanin May 14, 2024
54ad9ab
try to get action to run
pwolanin May 14, 2024
ca7445a
color fix
pwolanin May 15, 2024
3918cb5
deploy action fix
pwolanin May 15, 2024
df98caa
First working test
vvi230714 Jul 4, 2024
514b00e
Commit to resolve issues caused by last merge
vvi230714 Jul 29, 2024
a05da70
Fixed committe person and added verbose mode to jest
vvi230714 Aug 3, 2024
c75dac8
Fixed content-page test
vvi230714 Aug 13, 2024
b7b8fed
updated package lock
vvi230714 Aug 21, 2024
74f64d8
update CI action versions
pwolanin Sep 11, 2024
281a013
Unit Test Fixes
vvi230714 Sep 16, 2024
2f919fe
trying to get jest to work
pwolanin Sep 25, 2024
b2a9a2d
See if we can do test builds
pwolanin Dec 11, 2024
e943f31
removed buefy from test
vvi230714 Dec 13, 2024
8ededa3
Added cypress dependencies
vvi230714 Dec 18, 2024
729e4e5
use ubuntu-22.04
pwolanin Dec 18, 2024
5918730
Some Cypress Component Test Updates
vvi230714 Dec 23, 2024
a9e5063
Component Tests
vvi230714 Jan 7, 2025
9f99708
try running cypress
pwolanin Jan 15, 2025
fd3c55c
try to use realHover()
pwolanin Jan 15, 2025
440f9e2
playing with realHover
pwolanin Jan 15, 2025
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
Prev Previous commit
Next Next commit
Updated webpack vue loader config
  • Loading branch information
vvi230714 committed Jan 31, 2024
commit ac6747db4f974feb6ec52af4122aefd277fa8f29
30 changes: 24 additions & 6 deletions webpack.config.js
Original file line number Diff line number Diff line change
@@ -13,13 +13,31 @@ module.exports = {
{
test: /\.vue$/,
loader: 'vue-loader',
options: {
loaders: {
'scss': 'vue-style-loader!css-loader!sass-loader',
'sass': 'vue-style-loader!css-loader!sass-loader?indentedSyntax'
}
}
},
{
test: /\.scss$/,
use: [
'vue-style-loader',
'css-loader',
'sass-loader'
]
},
{
test: /\.sass$/,
use: [
'vue-style-loader',
'css-loader',
{
loader: 'sass-loader',
options: {
indentedSyntax: true,
sassOptions: {
indentedSyntax: true
}
}
}
]
},
{
test: /\.js$/,
loader: 'babel-loader',