File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
const fs = require ( 'fs' ) ;
4
4
const path = require ( 'path' ) ;
5
+ const loaderUtils = require ( "loader-utils" ) ;
5
6
const pbjs = require ( 'protobufjs/cli' ) . pbjs ;
6
7
const protobuf = require ( 'protobufjs' ) ;
7
8
const tmp = require ( 'tmp-promise' ) ;
@@ -31,13 +32,12 @@ const schema = {
31
32
module . exports = function ( source ) {
32
33
let callback = this . async ( ) ;
33
34
let self = this ;
34
-
35
+ let loaderOptions = loaderUtils . getOptions ( this )
35
36
const options = Object . assign ( {
36
37
json : false ,
37
-
38
38
// Default to the paths given to the compiler (this.options is the
39
39
// webpack options object)
40
- paths : this . options . resolve . modules || [ ] ,
40
+ paths : loaderOptions . paths || [ ] ,
41
41
42
42
pbjsArgs : [ ] ,
43
43
} , getOptions ( this ) ) ;
@@ -114,6 +114,7 @@ module.exports = function(source) {
114
114
loadDependencies . catch ( function ( depErr ) {
115
115
callback ( depErr ) ;
116
116
} ) . then ( function ( ) {
117
+ console . dir ( result )
117
118
callback ( err , result ) ;
118
119
} ) ;
119
120
} ) ;
You can’t perform that action at this time.
0 commit comments