Orlin M Bozhinov

Results 16 comments of Orlin M Bozhinov

Something like _ecompilify_ - humoring jadeify :) Perhaps a good name for an eco-browserify plugin.

I wrote a bash script [gh-get-bin](https://github.com/orlin/dots/blob/master/bin/gh-get-bin) to download the latest `closh-zero.jar` with. It depends on `JSONPath.sh` which I install with [gh-install](https://github.com/orlin/dots/blob/master/bin/gh-install) by running `gh-install mclarkson/JSONPath.sh JSONPath.sh ~/bin/` on my system....

Yes, I know about normalize. There is also `normalize-scss` that I do `@import '~normalize-scss’;` from node_modules without eyeglass. Eyeglass lets you reach it without a `~` (which [may not be...

Something else: the failing `@material/animation/variables` that `node_modules/@material/button/mdc-button.scss` tries to import is actually a `node_modules/@material/animation/_variables.scss` as I just remembered to check. This is something the babel resolver wouldn't know how to...

A nice guy from `material-components-web` helped me solve this issue. So we can let eyeglass worry about its webpack compatibility. If you look at the solution though, I think your...

For the record, here is my improved config: ```js { loader: 'sass-loader', options: { includePaths: ['node_modules', 'node_modules/@material/*'] .map((d) => path.join(__dirname, d)) .map((g) => glob.sync(g)) .reduce((a, c) => a.concat(c), []) }...

On this repo or `next.js/examples/with-global-stylesheet`?

Sure, I’d love to do my first PR on `Next.js`, thank you for leading the way! Here is what I intend to include in this one: - refactor of `next.config.js`...

The [pull request](https://github.com/zeit/next.js/pull/1327) I just made has one flaw that I can see - `example.gif` doesn't reflect that the `css` file has been moved and renamed. Technically it could have...

@davibe not all the changes. About `styles` without relative path you'd have to add the following to `.babelrc`'s `plugins`: ```json [ "module-resolver", { "root": ["."], "alias": { "styles": "./styles" },...