Markus Oberlehner

Results 58 comments of Markus Oberlehner

Fixing this issue has two benefits: 1. better hydration performance (Vue reuses the existing DOM) 2. It allows for a nice pattern where you don't need to inline props data...

Unfortunately I have no experience with Vue.js and TypeScript. But maybe somebody else can help. But what is actually the problem specific to this article/project? I don't see any reason...

Hi @SylRob, `at-rules` are a little bit special and there is no perfect way of how to deal with them in the context of selector extraction. You expect them to...

Hey @thomaswhite, you can use the [node-sass-magic-importer](https://www.npmjs.com/package/node-sass-magic-importer) package, to have all importers combined. Furthermore, node-sass makes it possible to provide an array to the `importer` [option](https://github.com/sass/node-sass#importer--v200---experimental). But I've not tested...

Hey @bdwain, according to the documentation, using multiple importer functions, works differently than one would hope. > importer can be an array of functions, which will be called by LibSass...

webpack is able to resolve paths starting with `~`, but it can't deal with glob paths. The glob importer can handle glob paths but not paths starting with `~`. So...

Maybe I don't understand the problem correctly but from what I understand about the problem, I tend to disagree. ``` node_moduls >> package-a >>>> _i-import-package-b.scss_ (@import '~package-b.scss') >> package-b i-import-package-a.scss...

Thinking a little closer about it, the correct way would be that imports inside of a package do look for their "closest" `node_modules` directory and use that as the root...

I had exactly the same problem in combination with webpack, thats why I implemented a new [option](https://github.com/maoberlehner/node-sass-magic-importer#options) `disableImportOnce ` a few days ago. Although this disables it globally and not...

Something similar to `reference` is already implemented – importing only variables and / or mixins is possible with [node filtering](https://github.com/maoberlehner/node-sass-magic-importer#node-filtering), you can use the `variables` or the `silent` filter.