diff --git a/README.md b/README.md index 8ae3a8f..5cfdee3 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ [![Build Status](https://travis-ci.org/kmontag/protobufjs-loader.svg?branch=master)](https://travis-ci.org/kmontag/protobufjs-loader) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release) -# protobufjs-loader +# protobuf-preloader Webpack loader to translate [protobuf](https://github.com/google/protobuf/) definitions to [ProtoBuf.js](https://github.com/dcodeIO/ProtoBuf.js/) @@ -28,7 +28,7 @@ module.exports = { rules: [{ test: /\.proto$/, use: { - loader: 'protobufjs-loader', + loader: 'protobuf-preloader', options: { /* controls the "target" flag to pbjs - true for * json-module, false for static-module. diff --git a/index.js b/index.js index 25a58f9..afebb13 100644 --- a/index.js +++ b/index.js @@ -2,7 +2,6 @@ const fs = require('fs'); const path = require('path'); -const loaderUtils = require("loader-utils"); const pbjs = require('protobufjs/cli').pbjs; const protobuf = require('protobufjs'); const tmp = require('tmp-promise'); @@ -32,7 +31,8 @@ const schema = { module.exports = function(source) { let callback = this.async(); let self = this; - let loaderOptions = loaderUtils.getOptions(this) + // When the options is empty create an empty object instend getting null + let loaderOptions = getOptions(this) || {}; const options = Object.assign({ json: false, // Default to the paths given to the compiler (this.options is the @@ -40,7 +40,7 @@ module.exports = function(source) { paths: loaderOptions.paths || [], pbjsArgs: [], - }, getOptions(this)); + }, loaderOptions); validateOptions(schema, options, 'protobufjs-loader'); let filename; @@ -114,9 +114,8 @@ module.exports = function(source) { loadDependencies.catch(function(depErr) { callback(depErr); }).then(function() { - console.dir(result) callback(err, result); }); }); }); -}; \ No newline at end of file +}; diff --git a/package.json b/package.json index 38e1a3d..dd8d104 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "protobufjs-loader-webpack4", + "name": "protobuf-preloader", "version": "0.0.1", "description": "Webpack loader to translate .proto definitions to ProtoBuf.js modules", "main": "index.js", @@ -17,7 +17,9 @@ "license": "MIT", "dependencies": { "protobufjs": "^6.8.0", - "tmp-promise": "^1.0.4" + "tmp-promise": "^1.0.4", + "loader-utils": "^1.2.3", + "schema-utils": "^1.0.0" }, "devDependencies": { "chai": "^4.1.2", @@ -45,6 +47,6 @@ }, "repository": { "type": "git", - "url": "https://github.com/PermissionData/protobufjs-loader.git" + "url": "https://github.com/moshe-kabala/protobufjs-loader" } }