Skip to content

Commit 7c19dfc

Browse files
chore(deps): update all non-major npm dependencies (#871)
* chore(deps): update all non-major npm dependencies * Fixed webpacker not compiling --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jorai Geertsema <[email protected]>
1 parent 0a7b4be commit 7c19dfc

File tree

8 files changed

+2156
-2117
lines changed

8 files changed

+2156
-2117
lines changed

.yarn/releases/yarn-3.6.4.cjs

Lines changed: 0 additions & 874 deletions
This file was deleted.

.yarn/releases/yarn-3.8.7.cjs

Lines changed: 875 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ plugins:
44
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
55
spec: '@yarnpkg/plugin-interactive-tools'
66

7-
yarnPath: .yarn/releases/yarn-3.6.4.cjs
7+
yarnPath: .yarn/releases/yarn-3.8.7.cjs

app/policies/payment_policy.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
class PaymentPolicy < ApplicationPolicy
22
def index?
3-
mollie_enabled? && user.treasurer?
3+
mollie_enabled? && user&.treasurer?
44
end
55

66
def create?

babel.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ module.exports = function(api) {
4747
}
4848
],
4949
[
50-
require('@babel/plugin-proposal-object-rest-spread').default,
50+
require('@babel/plugin-transform-object-rest-spread').default,
5151
{
5252
useBuiltIns: true
5353
}

package.json

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,40 +5,42 @@
55
"lint": "eslint 'app/javascript/**/*.{js,vue}'"
66
},
77
"dependencies": {
8-
"@babel/core": "^7.21.8",
8+
"@babel/core": "^7.26.0",
99
"@babel/plugin-proposal-class-properties": "^7.18.6",
1010
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
1111
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
12-
"@babel/plugin-transform-runtime": "^7.21.4",
13-
"@babel/preset-env": "^7.21.5",
14-
"@popperjs/core": "^2.11.7",
12+
"@babel/plugin-transform-runtime": "^7.25.9",
13+
"@babel/preset-env": "^7.26.0",
14+
"@popperjs/core": "^2.11.8",
1515
"@rails/webpacker": "^5.4.4",
1616
"autosuggest-highlight": "^3.3.4",
1717
"axios": "^1.4.0",
18-
"babel-loader": "^8.3.0",
19-
"bootstrap": "^5.2.3",
20-
"css-loader": "^6.7.3",
21-
"jquery": "^3.6.4",
22-
"moment": "^2.29.4",
18+
"babel-loader": "^8.4.1",
19+
"bootstrap": "^5.3.3",
20+
"caniuse-lite": "^1.0.30001690",
21+
"core-js": "2",
22+
"css-loader": "^6.11.0",
23+
"jquery": "^3.7.1",
24+
"moment": "^2.30.1",
2325
"popper.js": "^1.16.1",
2426
"postcss-cssnext": "^3.1.1",
25-
"remove-accents": "^0.4.4",
27+
"remove-accents": "^0.5.0",
2628
"turbolinks-animate": "^3.2.1",
2729
"vue": "^2.7.14",
28-
"vue-loader": "^15.10.1",
30+
"vue-loader": "^15.11.1",
2931
"vue-resource": "^1.5.3",
3032
"vue-template-compiler": "^2.7.14",
3133
"vue-turbolinks": "^2.2.2",
3234
"webfontloader": "^1.6.28",
33-
"webpack": "^4.46.0",
35+
"webpack": "^4.47.0",
3436
"webpack-cli": "^4.10.0"
3537
},
3638
"devDependencies": {
37-
"eslint": "^8.40.0",
39+
"eslint": "^8.57.1",
3840
"eslint-loader": "^4.0.2",
39-
"eslint-plugin-vue": "^9.11.0",
41+
"eslint-plugin-vue": "^9.32.0",
4042
"sass-lint": "^1.13.1",
41-
"webpack-dev-server": "^4.14.0"
43+
"webpack-dev-server": "^4.15.2"
4244
},
43-
"packageManager": "yarn@3.6.4"
45+
"packageManager": "yarn@3.8.7"
4446
}

spec/factories/user.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
factory :user do
33
name { Faker::Movies::StarWars.character }
44

5-
sequence(:email) { |n| Faker::Internet.safe_email(name: "#{Faker::Internet.user_name}#{n}") }
5+
sequence(:email) { |n| Faker::Internet.email(name: "#{Faker::Internet.user_name}#{n}") }
66

77
trait(:treasurer) do
88
after :create do |user, _evaluator|

0 commit comments

Comments
 (0)