Skip to content

Commit

Permalink
bump dependencies
Browse files Browse the repository at this point in the history
to avoid warnings
  • Loading branch information
patrickuhlmann committed Jun 10, 2023
1 parent e71cb17 commit ccbea55
Show file tree
Hide file tree
Showing 4 changed files with 595 additions and 174 deletions.
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ yarn yaml-validator .github/workflows/build_main.yml
yarn yaml-validator .github/workflows/issue-branch.yml
yarn yaml-validator .github/workflows/build_and_deploy_azure.yml
yarn yaml-validator .github/dependabot.yml
sed -i -e "s#https://nexus.uhlme.ch/repository/npm-group#https://registry.yarnpkg.com/#g" yarn.lock
sed -i -e "s#https://npm.uhlme.ch/#https://registry.yarnpkg.com/#g" yarn.lock
yarn test:unit
yarn test:e2e
git diff --name-only --cached --diff-filter=d | xargs -l git add
19 changes: 11 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"start": "node server.js"
},
"dependencies": {
"@babel/core": "7.17.9",
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/free-brands-svg-icons": "^6.3.0",
"@fortawesome/free-solid-svg-icons": "^6.3.0",
Expand All @@ -21,13 +22,15 @@
"@sentry/tracing": "^6.19.7",
"@sentry/vue": "^6.19.7",
"@types/leaflet": "^1.9.3",
"@vue/vue2-jest": "^29.2.2",
"@vue/vue2-jest": "^27.0.0",
"axios": "^0.27.2",
"babel-jest": "^27.0.0",
"bulma": "^0.9.4",
"compression": "^1.7.4",
"connect-history-api-fallback": "^2.0.0",
"core-js": "^3.29.1",
"express": "^4.18.1",
"jest": "^27.0.0",
"jest-canvas-mock": "^2.4.0",
"jspdf": "^2.5.1",
"jspdf-autotable": "^3.5.23",
Expand All @@ -37,14 +40,14 @@
"nightwatch-html-reporter": "^2.0.6",
"register-service-worker": "^1.7.2",
"ts-jest": "^27.0.0",
"vue": "^2.6.14",
"vue": "^2.7.14",
"vue-class-component": "^7.2.3",
"vue-light-gallery": "^1.0.1",
"vue-matomo": "^4.1.0",
"vue-property-decorator": "^9.1.2",
"vue-router": "^3.5.4",
"vue2-leaflet": "^2.7.1",
"webpack-bundle-analyzer": "^4.8.0",
"webpack": "^5.86.0",
"yaml-validator": "^4.0.0"
},
"devDependencies": {
Expand All @@ -61,19 +64,19 @@
"@vue/cli-plugin-vuex": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^1.3.4",
"chromedriver": "^110.0.0",
"eslint": "^7.5.0",
"chromedriver": "^113.0.0",
"eslint": "^7.0.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-vue": "^8.7.1",
"eslint-plugin-vue": "^9.0.0",
"geckodriver": "^3.0.1",
"husky": "^8.0.3",
"jest-sonar-reporter": "^2.0.0",
"prettier": "^2.8.5",
"sass": "^1.59.3",
"sass-loader": "^13.2.1",
"typescript": "~4.9.5",
"typescript": "~4.6.4",
"vue-template-compiler": "^2.6.14"
},
"bugs": {
Expand Down
14 changes: 1 addition & 13 deletions vue.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
"use strict";

const BundleAnalyzerPlugin =
require("webpack-bundle-analyzer").BundleAnalyzerPlugin;

// eslint-disable-next-line
const SentryWebpackPlugin = require("@sentry/webpack-plugin");

Expand All @@ -24,10 +21,6 @@ module.exports = {
) {
return {
plugins: [
new BundleAnalyzerPlugin({
analyzerMode: "static",
openAnalyzer: false,
}),
new SentryWebpackPlugin({
// sentry-cli configuration
authToken: process.env.SENTRY_AUTH_TOKEN,
Expand All @@ -44,12 +37,7 @@ module.exports = {
};
} else {
return {
plugins: [
new BundleAnalyzerPlugin({
analyzerMode: "static",
openAnalyzer: false,
}),
],
plugins: [],
devtool: "source-map",
};
}
Expand Down
Loading

0 comments on commit ccbea55

Please sign in to comment.