Robert Wildling

Results 57 issues of Robert Wildling

The readme says: `Install with 'npm i ejs-compiled-loader'` Shouldn't it be: `npm i ejs-compiled-loader-webpack4` ???

I have a gulp-babel setup. When concating chroma to the other files, this error is thrown: ``` Uncaught TypeError: Cannot set property 'chroma' of undefined ``` How can I fix...

It seems that the hooks api of htmlWebpackPlugin changed. Currently, this plugin throws an error: `Error: The expected HtmlWebpackPlugin hook was not found! Ensure HtmlWebpackPlugin is installed and was initialized...

Is there a way to insert "defer" or "async" to a script tag?

Webpack has moved on and still is. Any chance to update this plugin?

# Why should this feature be implemented? Personally, I find it a bit confusing that the json notation throughout the documentation is varying so much. There are places, where the...

Enhancement ⚡️

Here the docu talks about the ssr option of a plugin definition: https://nuxtjs.org/docs/configuration-glossary/configuration-plugins It say: ``` ssr: false will be adapted to mode: 'client' and deprecated in next major release....

docs

Any chance to show an example how to apply the dragscroll snippet to many elements on a page?

If I pass params to the modal, is there a way to access those in a method or in any of the life cycles? I log out "this" in the...

question

In Nuxt, I use the event bus system to listen to a loading change: ```js // somewhere.vue export default { watch(newVal) { if(newVal === false) { this.$nuxt.$emit('loadingFinished') } } }...

question