Skip to content

Commit 3bcf5f2

Browse files
authored
Merge pull request #1039 from Patternslib/upgrade
Upgrade
2 parents a25a5f5 + 392998e commit 3bcf5f2

File tree

3 files changed

+377
-268
lines changed

3 files changed

+377
-268
lines changed

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
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.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",
8+
"@fullcalendar/adaptive": "^5.11.2",
9+
"@fullcalendar/core": "^5.11.2",
10+
"@fullcalendar/daygrid": "^5.11.2",
11+
"@fullcalendar/interaction": "^5.11.2",
12+
"@fullcalendar/list": "^5.11.2",
13+
"@fullcalendar/luxon2": "^5.11.2",
14+
"@fullcalendar/timegrid": "^5.11.2",
1515
"@juggle/resize-observer": "^3.3.1",
1616
"@stomp/stompjs": "^6.1.2",
1717
"google-code-prettify": "^1.0.5",
@@ -38,12 +38,12 @@
3838
"whatwg-fetch": "^3.4.0"
3939
},
4040
"devDependencies": {
41-
"@patternslib/dev": "^2.3.0",
41+
"@patternslib/dev": "^2.4.0",
4242
"@patternslib/pat-content-mirror": "^3.0.0",
4343
"@patternslib/pat-doclock": "^3.0.0",
4444
"@patternslib/pat-shopping-cart": "^3.0.0",
4545
"@patternslib/pat-sortable-table": "^3.0.0",
46-
"@patternslib/pat-tiptap": "^4.3.0",
46+
"@patternslib/pat-tiptap": "^4.4.0",
4747
"@patternslib/pat-upload": "^3.0.0",
4848
"copy-webpack-plugin": "^11.0.0",
4949
"pegjs": "0.11.0-master.b7b87ea",

webpack/webpack.config.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,20 @@ const CopyPlugin = require("copy-webpack-plugin");
44
const mf_config = require("@patternslib/dev/webpack/webpack.mf");
55
const package_json = require("../package.json");
66
const path = require("path");
7-
const patternslib_config = require("@patternslib/dev/webpack/webpack.config");
7+
const webpack_config = require("@patternslib/dev/webpack/webpack.config").config;
88

9-
module.exports = (env, argv) => {
9+
module.exports = () => {
1010
let config = {
1111
entry: {
1212
"bundle.min": path.resolve(__dirname, "../src/index.js"),
1313
"bundle-polyfills.min": path.resolve(__dirname, "../src/polyfills.js"),
1414
},
1515
};
1616

17-
config = patternslib_config(env, argv, config);
17+
config = webpack_config({
18+
config: config,
19+
package_json: package_json,
20+
});
1821

1922
config.output.path = path.resolve(__dirname, "../dist/");
2023

0 commit comments

Comments
 (0)