css-modules / postcss-icss-values

Pass arbitrary constants between your module files
MIT License
203 stars 18 forks source link

import absolute path doesn't work #69

Open li-yechao opened 7 years ago

li-yechao commented 7 years ago

this doesn't work

@value tests: "/absolute/path/to/activity-indicator.css";
@value test from tests;
.root {
  composes: test;
}

this is ok

@value tests: "relative/path/to/activity-indicator.css";
@value test from tests;
.root {
  composes: test;
}

but variable is ok both, just composes is not work