Boris Serdiuk

Results 116 comments of Boris Serdiuk

ping @christian-bromann

Hello. I created a test project with the following directory structure ``` src/ ├── a │ └── b │ └── tablet.less └── index.less ``` where `index.less` has the following import...

Hello @looser, Your wildcard seems very broad. It literally includes all files from your project, including `node_modules` folder. Try to adjust the glob expression to something more specific, like `./**/*.js`.

Hello! I have dome some experiments, and there is a branch with the fix: [paths-selection](https://github.com/just-boris/less-plugin-glob/tree/paths-selection). It does smart logic and tries to match paths one-by-one in order to understand what...

It looks like glob expression went to `node_modules` folder and found some broken file in a module sources. Could you please provide the `@import` expression with glob, that you have...

You can find some insights in https://github.com/just-boris/less-plugin-glob/issues/6 @auxx has a project boilerplate that uses webpack with this plugin: https://github.com/Auxx/angular2-ts-boilerplate/blob/master/webpack.config.js But I also use webpack and sometimes doesn't see any purpose...

How did you install less and this plugin? As the error message says, they should be installed in the same folder. Make sure that you have installed them both without...

I am using this with webpack and it works fine for me. Could you please provide more information about your webpack setup?

Well, there is nothing to do on our side, it is only issues with Webpack integration. In your example you should add option `root=true` for less-loader: ``` diff -{'test': /\.less$/,...

The same setup works for me. Let's check the dependencies. I have: ``` ├── [email protected] ├─┬ [email protected] ├─┬ [email protected] ``` I cleaned up the `node_modules` folder, then `npm install &&...