We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e9f15b commit cfad04aCopy full SHA for cfad04a
index.js
@@ -2,7 +2,7 @@ const path = require('path')
2
const upath = require('upath')
3
const relative = require('relative')
4
5
-const emitHandel = (compilation, callback) => {
+const emitHandle = (compilation, callback) => {
6
Object.keys(compilation.entrypoints).forEach(key => {
7
const { chunks } = compilation.entrypoints[key]
8
const entryChunk = chunks.pop()
@@ -36,6 +36,6 @@ const emitHandel = (compilation, callback) => {
36
}
37
38
function MpvuePlugin() {}
39
-MpvuePlugin.prototype.apply = compiler => compiler.plugin('emit', emitHandel)
+MpvuePlugin.prototype.apply = compiler => compiler.plugin('emit', emitHandle)
40
41
module.exports = MpvuePlugin
0 commit comments