Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Imports not correctly compiling #47

Open
zerovox opened this issue Nov 12, 2013 · 0 comments
Open

Imports not correctly compiling #47

zerovox opened this issue Nov 12, 2013 · 0 comments

Comments

@zerovox
Copy link

zerovox commented Nov 12, 2013

For files a.less:

@import b.less;
.bar {
  .foo;
  font-size: 15px;
}

and b.less:

.foo {
  background: green;
}

lesscss-engine compiles a.less to the following css:

.bar {
  background: green;
  font-size: 15px;
}

rather than:

.foo {
  background: green;
}
.bar {
  background: green;
  font-size: 15px;
}

This is a regression and was not the case in 1.3.3.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant