Hunter Laux

Results 77 comments of Hunter Laux

Here's a workaround for the ts-loader 9.x. ``` diff --git a/webpack.config.js b/webpack.config.js index 34a6296..a140bbe 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -20,8 +20,12 @@ module.exports = { }, { test: /\.vue$/,...

Does vue-loader support that? That seems strange to want to do that. Vue templates don't have a file format on their own. It looks like you're trying to import an...

@yooouuri try doing a `jest --clearCache` then run `jest --runInBand` If that works, we may have the same issue.

I think there is still a babel bug. I'm glad you don't need it!

It seems like with jsdom 3.5.5 enums are constants. Not modules. https://github.com/protobufjs/protobuf.js/blob/d0268490cb08d2f88e0aafd1d0eb673bd2d3c714/cli/lib/tsd-jsdoc/publish.js#L438

Probably a bug in the jsdoc. memberof gets set by the enum. ``` "memberof": "module:", ``` There is a check in `getChildrenOf` ``` return element.memberof === memberof; ``` It's no...

@VitalyName it looks like protobuf.js is using the `@exports` tag incorrectly. https://jsdoc.app/tags-exports.html https://jsdoc.app/howto-es2015-modules.html There should be only one per module and it really shouldn't be used with es6 style module...

@VitalyName The best workaround I've come up with is simply filter the bundle.js file for for `/^ *\* @exports/` lines, given these are being used incorrectly in protobufjs. This should...