Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
08239f1
Update NPM dependencies
christianlupus Apr 27, 2026
864ef62
Upgrade eslint to verison 9
christianlupus Apr 27, 2026
2a8ec10
Drop Airbnb eslint config
christianlupus Apr 27, 2026
83a4bc7
Upgrade vue to v3
christianlupus Apr 27, 2026
a4e984a
Upgrade vue-jest to v3
christianlupus Apr 27, 2026
7c21f1b
Formally upgrade vue
christianlupus May 1, 2026
227fdf6
Formally upgrade vite config
christianlupus May 1, 2026
032dd94
Formally install vuejs3-logger instead of vuejs-logger
christianlupus May 1, 2026
1e0eaa5
Start migration of main app to Vue3
christianlupus May 1, 2026
be2969d
Fix some eslint warnings and errors
christianlupus May 1, 2026
be83dcc
Update Pinia version
christianlupus May 1, 2026
fa4b0a1
Redirect app logging into instance
christianlupus May 1, 2026
0faeb58
Update Router and add to main Vue app
christianlupus May 1, 2026
9ed07be
Clean up pinia structure
christianlupus May 1, 2026
81fcb80
Drop old Vue2 stuff
christianlupus May 1, 2026
2b8d4de
Drop invalud Vue import
christianlupus May 1, 2026
ae0ab9e
Fix router usage
christianlupus May 1, 2026
1844ba9
Fix some more Vue stuff
christianlupus May 1, 2026
3d10de7
Add debugging about development mode
christianlupus May 1, 2026
fb09792
Drop test codes
christianlupus May 1, 2026
5bf328b
Update recipe counter
christianlupus May 1, 2026
7850bd7
Use web hash history
christianlupus May 1, 2026
41d8313
Start to establish Modals
christianlupus May 3, 2026
9e345d6
Test: Trigger modal
christianlupus May 3, 2026
472fc8a
Migrate basic modal dialog implementation
christianlupus May 30, 2026
7d89f91
TEST: Fixed
christianlupus May 30, 2026
c640a94
WIP work on mirgration
christianlupus May 31, 2026
0bc89dd
TEST: Fix test code
christianlupus May 31, 2026
e987517
WIP Clean up some more files
christianlupus May 31, 2026
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
1 change: 1 addition & 0 deletions .env.development
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NODE_ENV=development
21 changes: 10 additions & 11 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ export default [
...fixupConfigRules(
compat.extends(
'eslint:recommended',
'airbnb-base',
'plugin:import/typescript',
'prettier',
),
Expand Down Expand Up @@ -189,16 +188,16 @@ export default [
props: true,
ignorePropertyModificationsFor: ['state'],
}],
'import/extensions': [
'error',
'ignorePackages',
{
js: 'never',
jsx: 'never',
ts: 'never',
tsx: 'never',
},
],
// 'import/extensions': [
// 'error',
// 'ignorePackages',
// {
// js: 'never',
// jsx: 'never',
// ts: 'never',
// tsx: 'never',
// },
// ],
'no-plusplus': [
'error',
{
Expand Down
Loading