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

Switch from WebPack to Vite #1419

Draft
wants to merge 35 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
957e4a5
swapping python version to 3.11
BryonLewis Mar 4, 2024
df808b4
add libgdal-dev to CI
BryonLewis Mar 6, 2024
953fc91
gdal dependency adjustment
BryonLewis Mar 6, 2024
d8ff930
initial 3.11 python version
BryonLewis May 8, 2024
c99fd45
initial vue 2.7 upgrade working
BryonLewis May 9, 2024
f5564d3
resolving build issues
BryonLewis May 10, 2024
cf53fd5
Merge branch 'main' into python-311-update
BryonLewis May 10, 2024
bf01a70
updating tests
BryonLewis May 10, 2024
8a9f79f
reverting node builder
BryonLewis May 10, 2024
265fb46
removing vue template checker (vuetify issues)
BryonLewis May 10, 2024
f884901
removing template linting
BryonLewis May 10, 2024
d1be46a
updating vuetify version
BryonLewis May 14, 2024
2e8343f
linting
BryonLewis May 14, 2024
bae7baf
revert linting
BryonLewis May 20, 2024
6f159aa
lockfile
BryonLewis May 20, 2024
7ea1ab0
Merge branch 'main' into python-311-update
BryonLewis May 22, 2024
207a11e
initial vite conversion, vuetify plugin GWC issues
BryonLewis May 23, 2024
6cb0a93
Merge branch 'main' into python-311-update
BryonLewis May 24, 2024
e6cc9e3
linting
BryonLewis May 24, 2024
7b18e5c
resolving integration tests
BryonLewis May 28, 2024
6128c68
Merge branch 'main' into python-311-update
BryonLewis May 28, 2024
e99a578
Merge branch 'main' into python-311-update
BryonLewis Jun 3, 2024
d133dbe
adding getUsers script
BryonLewis Jun 3, 2024
04096f3
lint
BryonLewis Jun 3, 2024
654ef07
Merge branch 'python-311-update' into vite-process
BryonLewis Jun 4, 2024
5d75b7b
vite unplugin update
BryonLewis Jun 4, 2024
e9d3591
addressing review comments
BryonLewis Jun 4, 2024
f47717c
Merge branch 'python-311-update' into vite-process
BryonLewis Jun 4, 2024
928b5df
forgot to enable default-param-last eslint config
BryonLewis Jun 4, 2024
0b69342
Merge branch 'main' into vite-process
BryonLewis Jun 5, 2024
d9f945d
Merge branch 'vite-process' of github.com:Kitware/dive into vite-process
BryonLewis Jun 5, 2024
768caaf
Merge branch 'main' into vite-process
BryonLewis Jun 13, 2024
3ef084c
starting to utilize different vite configs for different builds
BryonLewis Jun 18, 2024
1769129
building updated
BryonLewis Jun 19, 2024
33a49c6
update base for the static paths
BryonLewis Jun 19, 2024
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
add libgdal-dev to CI
BryonLewis committed Mar 6, 2024
commit df808b4f34b7308dd0e681d0e983fd459c4d7bf6
3 changes: 2 additions & 1 deletion .github/workflows/blank.yml
Original file line number Diff line number Diff line change
@@ -69,7 +69,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.11]
python-version: [3.11]
steps:
- name: Update Package References
run: sudo apt-get update
@@ -78,6 +78,7 @@ jobs:
python3-cachecontrol
python3-dev
python3-gdal
libgdal-dev
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Loading