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

Update npm packages #326

Merged
merged 36 commits into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
8cf9f81
Update npm packages
mob8607 Sep 11, 2023
9f65a63
upgrade TS to 5.2.2
benjamin-joham Sep 12, 2023
86bed73
fix tsconfig typeRoots for vite/client
benjamin-joham Sep 12, 2023
d70c348
fix eslint for tests
benjamin-joham Sep 12, 2023
1828ad1
update Storybook to 7.4.1
benjamin-joham Sep 12, 2023
269ff00
Update eslint parser for typescript 5
mob8607 Sep 12, 2023
e634e96
Fix dependencies
mob8607 Sep 12, 2023
8e02f3f
Fix modal story
mob8607 Sep 13, 2023
705d780
refactor stories to use csf 3
mob8607 Sep 13, 2023
1accb1f
added npmrc
notsure Sep 19, 2023
3adba1f
added browserlist
notsure Sep 19, 2023
1602f7d
Merge branch 'develop' of github.com:valantic/vue-template into featu…
mob8607 Oct 23, 2023
d22afa2
update storybook and fix review issues
mob8607 Oct 23, 2023
8982cc1
fix dynamic and static import for api
mob8607 Oct 23, 2023
49956e5
fix loading of i18n via store initialization
mob8607 Oct 23, 2023
990540b
reverted the fix for dynamic loading because tests now failed
mob8607 Oct 23, 2023
a833b0a
Update msw to version 2.0
mob8607 Nov 27, 2023
9469cfe
fix setup for msw
mob8607 Nov 27, 2023
94af065
Fix api mock
mob8607 Nov 27, 2023
e080f1b
reformat code
mob8607 Nov 27, 2023
289cad1
refactor code after review
mob8607 Jan 2, 2024
f7f325b
update dependencies
mob8607 Jan 2, 2024
612bea3
Merge remote-tracking branch 'origin/develop' into feature/msw-update
patric-eberle Jan 4, 2024
9c49025
Merge branch 'feature/npm-updates' into feature/msw-update
patric-eberle Jan 4, 2024
8dc42a2
Updates package-lock and msw version
patric-eberle Jan 4, 2024
7ca02c2
Updates msw version in package.json since the higher version is alrea…
patric-eberle Jan 4, 2024
25d8cf1
Merge pull request #333 from valantic/feature/msw-update
patric-eberle Jan 4, 2024
11c7990
update package versions
mob8607 Jan 11, 2024
0c91088
Merge branch 'develop' of github.com:valantic/vue-template into featu…
mob8607 Jan 11, 2024
9d6fa73
remove unnecessary storybook addon
mob8607 Jan 11, 2024
b12cd8f
update dependencies and tsconfig
mob8607 Jan 12, 2024
d4f8643
fix issue with import resolver
mob8607 Jan 12, 2024
fe928fa
Add module to package json
mob8607 Jan 12, 2024
1e387a0
Merge branch 'develop' of github.com:valantic/vue-template into featu…
mob8607 Jan 16, 2024
9d81e1d
updated dependencies
mob8607 Jan 16, 2024
2cb2610
Merge branch 'develop' of github.com:valantic/vue-template into featu…
mob8607 Jan 16, 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
9 changes: 3 additions & 6 deletions .storybook/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ const config: StorybookConfig = {
'@storybook/addon-links',
'@storybook/addon-essentials',
'@storybook/preset-scss',
'@storybook/addon-mdx-gfm'
'@storybook/addon-mdx-gfm',
],
framework: {
name: '@storybook/vue3-vite',
options: {}
options: {},
},
staticDirs: ['../static'],
async viteFinal(viteConfig) {
Expand All @@ -36,10 +36,7 @@ const config: StorybookConfig = {
});
},
docs: {
autodocs: true
},
features: {
legacyMdx1: true, // 👈 Enables MDX v1 support
autodocs: true,
},
};

Expand Down
8 changes: 0 additions & 8 deletions .stylelintrc.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,4 @@
module.exports = {
customSyntax: 'postcss-html',
extends: 'stylelint-config-valantic',
rules: {
'indentation': [
2,
{
ignore: ['inside-parens'] // Stylelint seems to fail on maps
}
]
}
};
12,186 changes: 5,063 additions & 7,123 deletions package-lock.json

Large diffs are not rendered by default.

98 changes: 49 additions & 49 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
"url": "git+https://github.com/valantic/vue-template.git"
},
"engines": {
"node": ">=18 <19",
"npm": ">=8.19"
"node": ">=20.10 <21",
"npm": ">=10 <11"
},
"keywords": [
"vue",
Expand All @@ -64,69 +64,69 @@
"@popperjs/core": "~2.11.8",
"@vuelidate/core": "~2.0.3",
"@vuelidate/validators": "~2.0.4",
"axios": "~1.5.0",
"axios": "~1.6.3",
"body-scroll-lock": "~4.0.0-beta.0",
"dayjs": "~1.11.9",
"dayjs": "~1.11.10",
"embla-carousel": "~7.0.9",
"embla-carousel-autoplay": "~7.0.9",
"pinia": "~2.1.6",
"the-new-css-reset": "~1.9.0",
"vue": "~3.3.4",
"vue-i18n": "~9.3.0"
"pinia": "~2.1.7",
"the-new-css-reset": "~1.11.2",
"vue": "~3.4.3",
"vue-i18n": "~9.8.0"
},
"devDependencies": {
"@faker-js/faker": "~8.0.2",
"@storybook/addon-actions": "~7.4.1",
"@storybook/addon-essentials": "~7.4.1",
"@storybook/addon-interactions": "~7.4.1",
"@storybook/addon-links": "~7.4.1",
"@storybook/mdx1-csf": "~1.0.0",
"@faker-js/faker": "~8.3.1",
"@storybook/addon-actions": "~7.6.7",
"@storybook/addon-essentials": "~7.6.7",
"@storybook/addon-interactions": "~7.6.7",
"@storybook/addon-links": "~7.6.7",
"@storybook/addon-mdx-gfm": "~7.6.7",
"@storybook/preset-scss": "~1.0.3",
"@storybook/testing-library": "~0.2.0",
"@storybook/vue3": "~7.4.1",
"@storybook/vue3-vite": "~7.4.1",
"@types/body-scroll-lock": "~3.1.0",
"@types/google.maps": "~3.54.0",
"@types/node": "~20.6.0",
"@types/resize-observer-browser": "~0.1.6",
"@typescript-eslint/eslint-plugin": "~6.7.0",
"@typescript-eslint/parser": "~6.7.0",
"@vitejs/plugin-vue": "~4.3.4",
"@vue/eslint-config-typescript": "~11.0.3",
"@vue/test-utils": "~2.4.1",
"autoprefixer": "~10.4.15",
"cssnano": "~6.0.1",
"eslint": "~8.49.0",
"@storybook/testing-library": "~0.2.2",
"@storybook/vue3": "~7.6.7",
"@storybook/vue3-vite": "~7.6.7",
"@types/body-scroll-lock": "~3.1.2",
"@types/google.maps": "~3.54.10",
"@types/node": "~20.10.6",
"@types/resize-observer-browser": "~0.1.11",
"@typescript-eslint/eslint-plugin": "~6.17.0",
"@typescript-eslint/parser": "~6.17.0",
"@vitejs/plugin-vue": "~5.0.2",
"@vue/eslint-config-typescript": "~12.0.0",
"@vue/test-utils": "~2.4.3",
"autoprefixer": "~10.4.16",
"cssnano": "~6.0.2",
"eslint": "~8.56.0",
"eslint-config-airbnb-base": "~15.0.0",
"eslint-config-valantic": "~16.0.1",
"eslint-import-resolver-vite": "~1.1.0",
"eslint-plugin-import": "~2.28.1",
"eslint-plugin-storybook": "~0.6.13",
"eslint-plugin-vue": "~9.17.0",
"eslint-import-resolver-vite": "~1.3.2",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-storybook": "~0.6.15",
"eslint-plugin-vue": "~9.19.2",
"husky": "~8.0.3",
"jsdom": "~22.1.0",
"lint-staged": "~14.0.1",
"msw": "~1.3.0",
"postcss": "~8.4.18",
"jsdom": "~23.0.1",
"lint-staged": "~15.2.0",
"msw": "~2.0.11",
"postcss": "~8.4.32",
"postcss-html": "~1.5.0",
"postcss-scss": "~4.0.8",
"postcss-scss": "~4.0.9",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"rollup-plugin-visualizer": "~5.9.2",
"sass": "~1.66.1",
"storybook": "~7.4.1",
"stylelint": "~15.10.3",
"stylelint-config-valantic": "~8.0.1",
"rollup-plugin-visualizer": "~5.12.0",
"sass": "~1.69.6",
"storybook": "~7.6.7",
"stylelint": "~16.1.0",
"stylelint-config-valantic": "github:valantic/stylelint-config-valantic#48b8f70490dc0b4bae69518d7f9efc2e762eda55",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

todo: please make sure we create a release of sylelint-config-valantic before this is merged.

"svg-sprite": "~2.0.2",
"svgo": "~3.0.2",
"typescript": "~5.2.2",
"vite": "~4.4.9",
"svgo": "~3.2.0",
"typescript": "~5.3.3",
"vite": "~4.4.12",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

todo: according to the release information, @vitejs/plugin-vue in version 5 is no longer compatible with vite 4.x: https://github.com/vitejs/vite-plugin-vue/blob/main/packages/plugin-vue/CHANGELOG.md#500-2023-12-25

"vite-plugin-image-optimizer": "~1.1.7",
"vite-plugin-markdown": "~2.1.0",
"vitest": "~0.34.4",
"vitest": "~0.34.6",
"vue-component-type-helpers": "~1.8.10",
"vue-router": "~4.2.4",
"vue-tsc": "~1.8.10"
"vue-router": "~4.2.5",
"vue-tsc": "~1.8.27"
},
"browserslist": [
"> 2%",
Expand Down
Loading