We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This is related to #2043. I used command:
java -jar js.jar -f less-rhino-1.7.0.js lessc-rhino-1.7.0.js --source-map less.less less.css
This is how less.less looks like:
.test { demo: value; }
Source map file was not created.
Note 1: The --source-map option is not ignored by rhino, because following:
--source-map
java -jar js.jar -f less-rhino-1.7.0.js lessc-rhino-1.7.0.js --source-map less.less
returns expected error:
output: undefined the sourcemap option only has an optional filename if the css filename is given
Note 2: the same file compiled under node.js generated source map file:
{"version":3,"file":"less.css","sources":["less.less"],"names":[],"mappings":"AAAA;EACE,WAAA"}
The text was updated successfully, but these errors were encountered:
Totally I got my map file by using this command:
java -jar js.jar -f less-rhino-1.7.0.js lessc-rhino-1.7.0.js --source-map --source-map-output-map-file=app.css.map app.less app.css
Sorry, something went wrong.
No branches or pull requests
This is related to #2043. I used command:
This is how less.less looks like:
Source map file was not created.
Note 1: The
--source-map
option is not ignored by rhino, because following:returns expected error:
Note 2: the same file compiled under node.js generated source map file:
The text was updated successfully, but these errors were encountered: