diff options
Diffstat (limited to 'apps/workflowengine/webpack.js')
-rw-r--r-- | apps/workflowengine/webpack.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/workflowengine/webpack.js b/apps/workflowengine/webpack.js index bbd5efa9799..c1437a3f89b 100644 --- a/apps/workflowengine/webpack.js +++ b/apps/workflowengine/webpack.js @@ -1,4 +1,4 @@ -const path = require('path'); +const path = require('path') module.exports = { entry: path.join(__dirname, 'src', 'workflowengine.js'), @@ -6,6 +6,6 @@ module.exports = { path: path.resolve(__dirname, './js'), publicPath: '/js/', filename: 'workflowengine.js', - jsonpFunction: 'webpackJsonpWorkflowengine' - } + jsonpFunction: 'webpackJsonpWorkflowengine', + }, } |