We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0adf65b commit 1a01e00Copy full SHA for 1a01e00
webpack.config.js
@@ -1,16 +1,14 @@
1
// note: this isn't used at the moment
2
// browserify output is slightly smaller, but they're within 1kb of eachother after minifying and gzipping
3
module.exports = {
4
- entry: "./index.js",
+ entry: './index.js',
5
output: {
6
- path: __dirname + "/dist",
7
- filename: "watson-speech.js",
8
- library: "WatsonSpeech",
9
- libraryTarget: "umd"
+ path: __dirname + '/dist',
+ filename: 'watson-speech.js',
+ library: 'WatsonSpeech',
+ libraryTarget: 'umd'
10
},
11
module: {
12
- loaders: [
13
- { test: /index.js$/, loader: "envify-loader" }
14
- ]
+ loaders: [{ test: /index.js$/, loader: 'envify-loader' }]
15
}
16
};
0 commit comments