xiaofuzi / rollup-plugin-less

a less rollup plugin
22 stars 23 forks source link

Import statement freezes the process #1

Closed droooney closed 7 years ago

droooney commented 7 years ago

It seems that import statement blocks the process.

xiaofuzi commented 7 years ago

Could you describe more detail?

droooney commented 7 years ago

This is basically all of it :)

If I write one less file with

// mixins.less

.hidden {
  display: none !important;
}

and another one with

// main.less

@import './mixins.less';

.elem {
  .hidden();
}

This freezes rollup process. Specifically, rollup-watch one.

xiaofuzi commented 7 years ago

fixed, you can try again :).

droooney commented 7 years ago

Looks like it works! Thank you!