Skip to content

Commit 1a01e00

Browse files
committed
lint
1 parent 0adf65b commit 1a01e00

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

webpack.config.js

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
// note: this isn't used at the moment
22
// browserify output is slightly smaller, but they're within 1kb of eachother after minifying and gzipping
33
module.exports = {
4-
entry: "./index.js",
4+
entry: './index.js',
55
output: {
6-
path: __dirname + "/dist",
7-
filename: "watson-speech.js",
8-
library: "WatsonSpeech",
9-
libraryTarget: "umd"
6+
path: __dirname + '/dist',
7+
filename: 'watson-speech.js',
8+
library: 'WatsonSpeech',
9+
libraryTarget: 'umd'
1010
},
1111
module: {
12-
loaders: [
13-
{ test: /index.js$/, loader: "envify-loader" }
14-
]
12+
loaders: [{ test: /index.js$/, loader: 'envify-loader' }]
1513
}
1614
};

0 commit comments

Comments
 (0)