apache / incubator-weex-loader

Apache License 2.0
65 stars 32 forks source link

this.options nolonger support in webpack 4 #66

Open caijiehong opened 6 years ago

caijiehong commented 6 years ago

in src/loader.js line 205, this.options nolonger support in webpack 4. it will come up as undefined and go error. same bug in weex-vue-loader `
const options = this.options.weex || {}

` replace by

const options = this._compiler.options.weex || {} this will work in webpack 4 and older version

Jevirs commented 6 years ago

I just open the same issue in weex-vue-loader, and thanks for the solution.