Skip to content
Merged

Upgrade #1039

Show file tree
Hide file tree
Changes from all commits
Commits
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
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
"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.",
"license": "BSD-3-Clause",
"dependencies": {
"@fullcalendar/adaptive": "^5.11.0",
"@fullcalendar/core": "^5.11.0",
"@fullcalendar/daygrid": "^5.11.0",
"@fullcalendar/interaction": "^5.11.0",
"@fullcalendar/list": "^5.11.0",
"@fullcalendar/luxon2": "^5.11.0",
"@fullcalendar/timegrid": "^5.11.0",
"@fullcalendar/adaptive": "^5.11.2",
"@fullcalendar/core": "^5.11.2",
"@fullcalendar/daygrid": "^5.11.2",
"@fullcalendar/interaction": "^5.11.2",
"@fullcalendar/list": "^5.11.2",
"@fullcalendar/luxon2": "^5.11.2",
"@fullcalendar/timegrid": "^5.11.2",
"@juggle/resize-observer": "^3.3.1",
"@stomp/stompjs": "^6.1.2",
"google-code-prettify": "^1.0.5",
Expand All @@ -38,12 +38,12 @@
"whatwg-fetch": "^3.4.0"
},
"devDependencies": {
"@patternslib/dev": "^2.3.0",
"@patternslib/dev": "^2.4.0",
"@patternslib/pat-content-mirror": "^3.0.0",
"@patternslib/pat-doclock": "^3.0.0",
"@patternslib/pat-shopping-cart": "^3.0.0",
"@patternslib/pat-sortable-table": "^3.0.0",
"@patternslib/pat-tiptap": "^4.3.0",
"@patternslib/pat-tiptap": "^4.4.0",
"@patternslib/pat-upload": "^3.0.0",
"copy-webpack-plugin": "^11.0.0",
"pegjs": "0.11.0-master.b7b87ea",
Expand Down
9 changes: 6 additions & 3 deletions webpack/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,20 @@ const CopyPlugin = require("copy-webpack-plugin");
const mf_config = require("@patternslib/dev/webpack/webpack.mf");
const package_json = require("../package.json");
const path = require("path");
const patternslib_config = require("@patternslib/dev/webpack/webpack.config");
const webpack_config = require("@patternslib/dev/webpack/webpack.config").config;

module.exports = (env, argv) => {
module.exports = () => {
let config = {
entry: {
"bundle.min": path.resolve(__dirname, "../src/index.js"),
"bundle-polyfills.min": path.resolve(__dirname, "../src/polyfills.js"),
},
};

config = patternslib_config(env, argv, config);
config = webpack_config({
config: config,
package_json: package_json,
});

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

Expand Down
Loading