From 2b7e85b11d540e2c5664c806bfab7c256ac82231 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Molakvo=C3=A6=20=28skjnldsv=29?= Date: Fri, 6 Aug 2021 17:46:45 +0200 Subject: Remove old configs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ (skjnldsv) --- apps/accessibility/webpack.js | 36 -------------------- apps/comments/webpack.js | 41 ----------------------- apps/dashboard/webpack.js | 34 ------------------- apps/dav/webpack.js | 35 ------------------- apps/files/webpack.js | 39 ---------------------- apps/files_sharing/webpack.js | 43 ------------------------ apps/files_trashbin/webpack.js | 35 ------------------- apps/files_versions/webpack.js | 35 ------------------- apps/oauth2/webpack.js | 35 ------------------- apps/settings/webpack.js | 63 ----------------------------------- apps/systemtags/webpack.js | 35 ------------------- apps/twofactor_backupcodes/webpack.js | 36 -------------------- apps/updatenotification/webpack.js | 34 ------------------- apps/user_status/webpack.js | 42 ----------------------- apps/weather_status/webpack.js | 49 --------------------------- apps/workflowengine/webpack.js | 34 ------------------- 16 files changed, 626 deletions(-) delete mode 100644 apps/accessibility/webpack.js delete mode 100644 apps/comments/webpack.js delete mode 100644 apps/dashboard/webpack.js delete mode 100644 apps/dav/webpack.js delete mode 100644 apps/files/webpack.js delete mode 100644 apps/files_sharing/webpack.js delete mode 100644 apps/files_trashbin/webpack.js delete mode 100644 apps/files_versions/webpack.js delete mode 100644 apps/oauth2/webpack.js delete mode 100644 apps/settings/webpack.js delete mode 100644 apps/systemtags/webpack.js delete mode 100644 apps/twofactor_backupcodes/webpack.js delete mode 100644 apps/updatenotification/webpack.js delete mode 100644 apps/user_status/webpack.js delete mode 100644 apps/weather_status/webpack.js delete mode 100644 apps/workflowengine/webpack.js (limited to 'apps') diff --git a/apps/accessibility/webpack.js b/apps/accessibility/webpack.js deleted file mode 100644 index be18f940b7b..00000000000 --- a/apps/accessibility/webpack.js +++ /dev/null @@ -1,36 +0,0 @@ -/** - * @copyright Copyright (c) 2016 John Molakvoæ - * - * @author John Molakvoæ - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - * - */ - -const path = require('path') - -module.exports = { - entry: { - accessibility: path.join(__dirname, 'src', 'main.js'), - accessibilityoca: path.join(__dirname, 'src', 'accessibilityoca.js'), - }, - output: { - path: path.resolve(__dirname, './js'), - publicPath: '/js/', - filename: '[name].js', - jsonpFunction: 'webpackJsonpAccessibility', - }, -} diff --git a/apps/comments/webpack.js b/apps/comments/webpack.js deleted file mode 100644 index 9e7886931ed..00000000000 --- a/apps/comments/webpack.js +++ /dev/null @@ -1,41 +0,0 @@ -/** - * @copyright Copyright (c) 2016 John Molakvoæ - * - * @author John Molakvoæ - * @author Roeland Jago Douma - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - * - */ - -const path = require('path') - -module.exports = { - entry: { - comments: path.join(__dirname, 'src', 'comments.js'), - 'comments-app': path.join(__dirname, 'src', 'comments-app.js'), - 'comments-tab': path.join(__dirname, 'src', 'comments-tab.js'), - }, - output: { - path: path.resolve(__dirname, './js'), - publicPath: '/js/', - filename: '[name].js', - jsonpFunction: 'webpackJsonpComments', - }, - externals: { - jquery: 'jQuery', - }, -} diff --git a/apps/dashboard/webpack.js b/apps/dashboard/webpack.js deleted file mode 100644 index 6305bc17d18..00000000000 --- a/apps/dashboard/webpack.js +++ /dev/null @@ -1,34 +0,0 @@ -/** - * @copyright Copyright (c) 2016 Julius Härtl - * - * @author John Molakvoæ - * @author Julius Härtl - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - * - */ - -const path = require('path') - -module.exports = { - entry: path.join(__dirname, 'src', 'main.js'), - output: { - path: path.resolve(__dirname, './js'), - publicPath: '/js/', - filename: 'dashboard.js', - jsonpFunction: 'webpackJsonpDashboard', - }, -} diff --git a/apps/dav/webpack.js b/apps/dav/webpack.js deleted file mode 100644 index 9a2e526956c..00000000000 --- a/apps/dav/webpack.js +++ /dev/null @@ -1,35 +0,0 @@ -/** - * @copyright Copyright (c) 2021 François Freitag - * - * @author François Freitag - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - * - */ - -const path = require('path') - -module.exports = { - entry: { - 'settings-admin-caldav': path.join(__dirname, 'src', 'settings.js'), - 'settings-personal-availability': path.join(__dirname, 'src', 'settings-personal-availability.js'), - }, - output: { - path: path.resolve(__dirname, './js'), - publicPath: '/js/', - filename: '[name].js', - }, -} diff --git a/apps/files/webpack.js b/apps/files/webpack.js deleted file mode 100644 index 81d132c0384..00000000000 --- a/apps/files/webpack.js +++ /dev/null @@ -1,39 +0,0 @@ -/** - * @copyright Copyright (c) 2016 John Molakvoæ - * - * @author Gary Kim - * @author John Molakvoæ - * @author Roeland Jago Douma - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - * - */ - -const path = require('path') - -module.exports = { - entry: { - main: path.join(__dirname, 'src', 'main.js'), - sidebar: path.join(__dirname, 'src', 'sidebar.js'), - 'personal-settings': path.join(__dirname, 'src', 'main-personal-settings.js'), - }, - output: { - path: path.resolve(__dirname, './js/dist/'), - publicPath: '/js/', - filename: '[name].js', - chunkFilename: 'files.[id].js', - }, -} diff --git a/apps/files_sharing/webpack.js b/apps/files_sharing/webpack.js deleted file mode 100644 index 4fa87f35b81..00000000000 --- a/apps/files_sharing/webpack.js +++ /dev/null @@ -1,43 +0,0 @@ -/** - * @copyright Copyright (c) 2016 John Molakvoæ - * - * @author John Molakvoæ - * @author Julius Härtl - * @author Roeland Jago Douma - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - * - */ - -const path = require('path') - -module.exports = { - entry: { - additionalScripts: path.join(__dirname, 'src', 'additionalScripts.js'), - collaboration: path.join(__dirname, 'src', 'collaborationresourceshandler.js'), - files_sharing_tab: path.join(__dirname, 'src', 'files_sharing_tab.js'), - files_sharing: path.join(__dirname, 'src', 'files_sharing.js'), - main: path.join(__dirname, 'src', 'index.js'), - 'personal-settings': path.join(__dirname, 'src', 'personal-settings.js'), - }, - output: { - path: path.resolve(__dirname, './js/dist/'), - publicPath: '/js/', - filename: '[name].js', - chunkFilename: 'files_sharing.[id].js?v=[chunkhash]', - jsonpFunction: 'webpackJsonpFilesSharing', - }, -} diff --git a/apps/files_trashbin/webpack.js b/apps/files_trashbin/webpack.js deleted file mode 100644 index 005b9fe1ab1..00000000000 --- a/apps/files_trashbin/webpack.js +++ /dev/null @@ -1,35 +0,0 @@ -/** - * @copyright Copyright (c) 2016 John Molakvoæ - * - * @author John Molakvoæ - * @author Julius Härtl - * @author Roeland Jago Douma - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - * - */ - -const path = require('path') - -module.exports = { - entry: path.join(__dirname, 'src', 'files_trashbin.js'), - output: { - path: path.resolve(__dirname, './js'), - publicPath: '/js/', - filename: 'files_trashbin.js', - jsonpFunction: 'webpackJsonpFilesTrashbin', - }, -} diff --git a/apps/files_versions/webpack.js b/apps/files_versions/webpack.js deleted file mode 100644 index 8aae648a500..00000000000 --- a/apps/files_versions/webpack.js +++ /dev/null @@ -1,35 +0,0 @@ -/** - * @copyright Copyright (c) 2016 John Molakvoæ - * - * @author John Molakvoæ - * @author Julius Härtl - * @author Roeland Jago Douma - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - * - */ - -const path = require('path') - -module.exports = { - entry: path.join(__dirname, 'src', 'files_versions.js'), - output: { - path: path.resolve(__dirname, 'js'), - publicPath: '/js/', - filename: 'files_versions.js', - jsonpFunction: 'webpackJsonpFilesVersions', - }, -} diff --git a/apps/oauth2/webpack.js b/apps/oauth2/webpack.js deleted file mode 100644 index 33a8776cab2..00000000000 --- a/apps/oauth2/webpack.js +++ /dev/null @@ -1,35 +0,0 @@ -/** - * @copyright Copyright (c) 2016 Roeland Jago Douma - * - * @author John Molakvoæ - * @author Julius Härtl - * @author Roeland Jago Douma - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - * - */ - -const path = require('path') - -module.exports = { - entry: path.join(__dirname, 'src', 'main.js'), - output: { - path: path.resolve(__dirname, './js'), - publicPath: '/js', - filename: 'oauth2.js', - jsonpFunction: 'webpackJsonpOauth', - }, -} diff --git a/apps/settings/webpack.js b/apps/settings/webpack.js deleted file mode 100644 index 925c4e3d003..00000000000 --- a/apps/settings/webpack.js +++ /dev/null @@ -1,63 +0,0 @@ -/** - * @copyright Copyright (c) 2016 John Molakvoæ - * - * @author Christoph Wurst - * @author Christopher Ng - * @author Jan C. Borchardt - * @author John Molakvoæ - * @author Roeland Jago Douma - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - * - */ - -const path = require('path') - -// TODO use @nextcloud/webpack-vue-config -module.exports = { - module: { - rules: [ - { - test: /\.(png|jpe?g|gif|svg|woff2?|eot|ttf)$/, - loader: 'url-loader', - options: { - name: '[name].[ext]?[hash]', - }, - }, - ] - }, - entry: { - 'settings-apps-users-management': path.join(__dirname, 'src', 'main-apps-users-management'), - 'settings-admin-security': path.join(__dirname, 'src', 'main-admin-security'), - 'settings-admin-delegation': path.join(__dirname, 'src', 'main-admin-delegation'), - 'settings-personal-security': path.join(__dirname, 'src', 'main-personal-security'), - 'settings-personal-webauthn': path.join(__dirname, 'src', 'main-personal-webauth'), - 'settings-nextcloud-pdf': path.join(__dirname, 'src', 'main-nextcloud-pdf'), - 'settings-personal-info': path.join(__dirname, 'src', 'main-personal-info'), - }, - output: { - path: path.resolve(__dirname, './js'), - publicPath: '/js/', - filename: 'vue-[name].js?v=[contenthash]', - chunkFilename: 'vue-[name].js?v=[contenthash]', - jsonpFunction: 'webpackJsonpSettings', - }, - optimization: { - splitChunks: { - automaticNameDelimiter: '-', - }, - }, -} diff --git a/apps/systemtags/webpack.js b/apps/systemtags/webpack.js deleted file mode 100644 index 9ee4c336c28..00000000000 --- a/apps/systemtags/webpack.js +++ /dev/null @@ -1,35 +0,0 @@ -/** - * @copyright Copyright (c) 2016 John Molakvoæ - * - * @author John Molakvoæ - * @author Julius Härtl - * @author Roeland Jago Douma - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - * - */ - -const path = require('path') - -module.exports = { - entry: path.join(__dirname, 'src', 'systemtags.js'), - output: { - path: path.resolve(__dirname, './js'), - publicPath: '/js/', - filename: 'systemtags.js', - jsonpFunction: 'webpackJsonpSystemtags', - }, -} diff --git a/apps/twofactor_backupcodes/webpack.js b/apps/twofactor_backupcodes/webpack.js deleted file mode 100644 index 231f25928ef..00000000000 --- a/apps/twofactor_backupcodes/webpack.js +++ /dev/null @@ -1,36 +0,0 @@ -/** - * @copyright Copyright (c) 2016 John Molakvoæ - * - * @author Christoph Wurst - * @author John Molakvoæ - * @author Julius Härtl - * @author Roeland Jago Douma - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - * - */ - -const path = require('path') - -module.exports = { - entry: path.join(__dirname, 'src', 'settings.js'), - output: { - path: path.resolve(__dirname, 'js'), - publicPath: '/js', - filename: 'settings.js', - jsonpFunction: 'webpackJsonpTwofactorBackupcodes', - }, -} diff --git a/apps/updatenotification/webpack.js b/apps/updatenotification/webpack.js deleted file mode 100644 index f11bf541a7b..00000000000 --- a/apps/updatenotification/webpack.js +++ /dev/null @@ -1,34 +0,0 @@ -/** - * @copyright Copyright (c) 2016 John Molakvoæ - * - * @author John Molakvoæ - * @author Julius Härtl - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - * - */ - -const path = require('path') - -module.exports = { - entry: path.join(__dirname, 'src', 'init.js'), - output: { - path: path.resolve(__dirname, './js'), - publicPath: '/js/', - filename: 'updatenotification.js', - jsonpFunction: 'webpackJsonpUpdatenotification', - }, -} diff --git a/apps/user_status/webpack.js b/apps/user_status/webpack.js deleted file mode 100644 index 587e8244580..00000000000 --- a/apps/user_status/webpack.js +++ /dev/null @@ -1,42 +0,0 @@ -/** - * @copyright Copyright (c) 2016 Georg Ehrke - * - * @author Georg Ehrke - * @author John Molakvoæ - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - * - */ - -const path = require('path') - -module.exports = { - entry: { - dashboard: path.join(__dirname, 'src', 'dashboard'), - 'user-status-menu': path.join(__dirname, 'src', 'main-user-status-menu'), - }, - output: { - path: path.resolve(__dirname, './js'), - publicPath: '/js/', - filename: '[name].js?v=[chunkhash]', - jsonpFunction: 'webpackJsonpUserStatus', - }, - optimization: { - splitChunks: { - automaticNameDelimiter: '-', - }, - }, -} diff --git a/apps/weather_status/webpack.js b/apps/weather_status/webpack.js deleted file mode 100644 index 9e6812e0ddd..00000000000 --- a/apps/weather_status/webpack.js +++ /dev/null @@ -1,49 +0,0 @@ -/** - * @copyright Copyright (c) 2016 Julien Veyssier - * - * @author John Molakvoæ - * @author Julien Veyssier - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - * - */ - -const path = require('path') - -module.exports = { - entry: { - 'weather-status': path.join(__dirname, 'src', 'weather-status'), - }, - output: { - path: path.resolve(__dirname, './js'), - publicPath: '/js/', - filename: '[name].js?v=[chunkhash]', - jsonpFunction: 'webpackJsonpWeatherStatus', - }, - optimization: { - splitChunks: { - automaticNameDelimiter: '-', - }, - }, - module: { - rules: [ - { - test: /\.(png|jpg|gif|svg|woff|woff2|eot|ttf)$/, - loader: 'url-loader', - }, - ], - }, -} diff --git a/apps/workflowengine/webpack.js b/apps/workflowengine/webpack.js deleted file mode 100644 index 4dcc0bb6adb..00000000000 --- a/apps/workflowengine/webpack.js +++ /dev/null @@ -1,34 +0,0 @@ -/** - * @copyright Copyright (c) 2016 John Molakvoæ - * - * @author Arthur Schiwon - * @author John Molakvoæ - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - * - */ - -const path = require('path') - -module.exports = { - entry: path.join(__dirname, 'src', 'workflowengine.js'), - output: { - path: path.resolve(__dirname, './js'), - publicPath: '/js/', - filename: 'workflowengine.js', - jsonpFunction: 'webpackJsonpWorkflowengine', - }, -} -- cgit v1.2.3