From 317c89d606ab728a4e54c2724efccd80d0955071 Mon Sep 17 00:00:00 2001 From: Moshe Kabala <31233967+moshe-kabala@users.noreply.github.com> Date: Wed, 1 May 2019 09:35:35 +0300 Subject: [PATCH 1/6] Update index.js --- index.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/index.js b/index.js index 25a58f9..e4fa23a 100644 --- a/index.js +++ b/index.js @@ -32,7 +32,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 +41,7 @@ module.exports = function(source) { paths: loaderOptions.paths || [], pbjsArgs: [], - }, getOptions(this)); + }, loaderOptions); validateOptions(schema, options, 'protobufjs-loader'); let filename; @@ -119,4 +120,4 @@ module.exports = function(source) { }); }); }); -}; \ No newline at end of file +}; From 376a334d17fc6d08019376beac8a5cae180804e2 Mon Sep 17 00:00:00 2001 From: Moshe Kabala <31233967+moshe-kabala@users.noreply.github.com> Date: Wed, 1 May 2019 09:42:20 +0300 Subject: [PATCH 2/6] Update package.json --- package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 38e1a3d..d09377d 100644 --- a/package.json +++ b/package.json @@ -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", From e12c2a03ab244bf4866e8a7a51d1e8f7916e5e35 Mon Sep 17 00:00:00 2001 From: Moshe Kabala <31233967+moshe-kabala@users.noreply.github.com> Date: Wed, 1 May 2019 09:51:18 +0300 Subject: [PATCH 3/6] Update index.js --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 25a58f9..20881dc 100644 --- a/index.js +++ b/index.js @@ -114,9 +114,9 @@ module.exports = function(source) { loadDependencies.catch(function(depErr) { callback(depErr); }).then(function() { - console.dir(result) + // console.dir(result) callback(err, result); }); }); }); -}; \ No newline at end of file +}; From 8afa91d5b0c47e3efc4419076410d5cad302369b Mon Sep 17 00:00:00 2001 From: Moshe Kabala <31233967+moshe-kabala@users.noreply.github.com> Date: Wed, 1 May 2019 09:54:00 +0300 Subject: [PATCH 4/6] remove console output --- index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/index.js b/index.js index e4fa23a..b608877 100644 --- a/index.js +++ b/index.js @@ -115,7 +115,6 @@ module.exports = function(source) { loadDependencies.catch(function(depErr) { callback(depErr); }).then(function() { - console.dir(result) callback(err, result); }); }); From 2a771529d708cf1629a1b3eea4c13d325269e77a Mon Sep 17 00:00:00 2001 From: Moshe Kabala <31233967+moshe-kabala@users.noreply.github.com> Date: Sun, 19 May 2019 10:34:09 +0300 Subject: [PATCH 5/6] Adding empty object --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 20881dc..5f72d4f 100644 --- a/index.js +++ b/index.js @@ -32,7 +32,7 @@ const schema = { module.exports = function(source) { let callback = this.async(); let self = this; - let loaderOptions = loaderUtils.getOptions(this) + let loaderOptions = loaderUtils.getOptions(this) || {}; const options = Object.assign({ json: false, // Default to the paths given to the compiler (this.options is the From 4763357d7739db55fd0376b4c6a4a334eee455fb Mon Sep 17 00:00:00 2001 From: moshe kabala Date: Mon, 20 May 2019 14:00:37 +0300 Subject: [PATCH 6/6] creating new node package --- README.md | 4 ++-- package.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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/package.json b/package.json index d09377d..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", @@ -47,6 +47,6 @@ }, "repository": { "type": "git", - "url": "https://github.com/PermissionData/protobufjs-loader.git" + "url": "https://github.com/moshe-kabala/protobufjs-loader" } }