Skip to content

Commit ada4d8b

Browse files
authored
Merge pull request #1001 from Patternslib/upgrade-easy
Upgrade easy
2 parents a9e8355 + e0ed426 commit ada4d8b

File tree

3 files changed

+832
-369
lines changed

3 files changed

+832
-369
lines changed

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@
55
"description": "Patternslib is a JavaScript library that enables designers to build rich interactive prototypes without the need for writing any Javascript. All events are triggered by classes and other attributes in the HTML, without abusing the HTML as a programming language. Accessibility, SEO and well structured HTML are core values of Patterns.",
66
"license": "BSD-3-Clause",
77
"dependencies": {
8-
"@fullcalendar/adaptive": "^5.10.1",
9-
"@fullcalendar/core": "^5.10.1",
10-
"@fullcalendar/daygrid": "^5.10.1",
11-
"@fullcalendar/interaction": "^5.10.1",
12-
"@fullcalendar/list": "^5.10.1",
13-
"@fullcalendar/luxon": "^5.10.1",
14-
"@fullcalendar/timegrid": "^5.10.1",
8+
"@fullcalendar/adaptive": "^5.11.0",
9+
"@fullcalendar/core": "^5.11.0",
10+
"@fullcalendar/daygrid": "^5.11.0",
11+
"@fullcalendar/interaction": "^5.11.0",
12+
"@fullcalendar/list": "^5.11.0",
13+
"@fullcalendar/luxon2": "^5.11.0",
14+
"@fullcalendar/timegrid": "^5.11.0",
1515
"@juggle/resize-observer": "^3.3.1",
1616
"@stomp/stompjs": "^6.1.2",
1717
"google-code-prettify": "^1.0.5",
1818
"imagesloaded": "^4.1.4",
1919
"intersection-observer": "^0.12.0",
2020
"jquery": "^3.6.0",
2121
"jquery-jcrop": "^0.9.13",
22-
"luxon": "^1.27.0",
22+
"luxon": "^2.3.2",
2323
"masonry-layout": "^4.2.2",
2424
"moment": "^2.29.3",
2525
"moment-timezone": "^0.5.34",
@@ -42,9 +42,9 @@
4242
"@babel/eslint-parser": "^7.17.0",
4343
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
4444
"@babel/preset-env": "^7.17.10",
45-
"@commitlint/cli": "^16.2.4",
46-
"@commitlint/config-conventional": "^16.2.4",
47-
"@release-it/conventional-changelog": "^4.3.0",
45+
"@commitlint/cli": "^17.0.0",
46+
"@commitlint/config-conventional": "^17.0.0",
47+
"@release-it/conventional-changelog": "^5.0.0",
4848
"@testing-library/jest-dom": "^5.16.4",
4949
"babel-loader": "^8.2.5",
5050
"copy-webpack-plugin": "^10.2.4",
@@ -53,7 +53,7 @@
5353
"eslint": "^8.15.0",
5454
"eslint-config-prettier": "^8.5.0",
5555
"expose-loader": "^3.0.0",
56-
"husky": "^7.0.4",
56+
"husky": "^8.0.1",
5757
"identity-obj-proxy": "^3.0.0",
5858
"imports-loader": "^3.1.0",
5959
"inspectpack": "^4.7.1",
@@ -62,7 +62,7 @@
6262
"jest-watch-typeahead": "^1.1.0",
6363
"prettier": "^2.6.2",
6464
"regenerator-runtime": "^0.13.9",
65-
"release-it": "^14.14.2",
65+
"release-it": "^15.0.0",
6666
"sass": "^1.51.0",
6767
"sass-loader": "^12.6.0",
6868
"style-loader": "^3.3.0",

src/pat/calendar/calendar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export default Base.extend({
106106
const fcDayGrid = (await import("@fullcalendar/daygrid")).default;
107107
const fcInteraction = (await import("@fullcalendar/interaction")).default;
108108
const fcList = (await import("@fullcalendar/list")).default;
109-
const fcLuxon = (await import("@fullcalendar/luxon")).default;
109+
const fcLuxon = (await import("@fullcalendar/luxon2")).default;
110110
const fcTimeGrid = (await import("@fullcalendar/timegrid")).default;
111111

112112
// Save some UI elements for reuse.

0 commit comments

Comments
 (0)