Skip to content

Commit 3c719ce

Browse files
committedMar 19, 2018
Updating to be compatible with webpack4.1
1 parent 62a7a95 commit 3c719ce

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed
 

‎index.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
const fs = require('fs');
44
const path = require('path');
5+
const loaderUtils = require("loader-utils");
56
const pbjs = require('protobufjs/cli').pbjs;
67
const protobuf = require('protobufjs');
78
const tmp = require('tmp-promise');
@@ -31,13 +32,12 @@ const schema = {
3132
module.exports = function(source) {
3233
let callback = this.async();
3334
let self = this;
34-
35+
let loaderOptions = loaderUtils.getOptions(this)
3536
const options = Object.assign({
3637
json: false,
37-
3838
// Default to the paths given to the compiler (this.options is the
3939
// webpack options object)
40-
paths: this.options.resolve.modules || [],
40+
paths: loaderOptions.paths || [],
4141

4242
pbjsArgs: [],
4343
}, getOptions(this));
@@ -114,6 +114,7 @@ module.exports = function(source) {
114114
loadDependencies.catch(function(depErr) {
115115
callback(depErr);
116116
}).then(function() {
117+
console.dir(result)
117118
callback(err, result);
118119
});
119120
});

0 commit comments

Comments
 (0)
Please sign in to comment.