Skip to content

Commit fd80f5c

Browse files
committed
Update webpack for development mode, add trailing comma in webpack configuration
1 parent 31caddb commit fd80f5c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ui-svelte-starter/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"name": "com.adobe.uxp.starter.svelte",
33
"version": "1.0.0",
44
"scripts": {
5-
"watch": "webpack -w --mode production",
6-
"build": "webpack --mode production"
5+
"watch": "webpack -w --mode development",
6+
"build": "webpack --mode development"
77
},
88
"license": "none",
99
"private": true,

ui-svelte-starter/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ module.exports = {
4040
plugins: [
4141
new CopyPlugin({
4242
patterns: ['plugin'],
43-
})
43+
}),
4444
],
4545
};

0 commit comments

Comments
 (0)