Pass --no-line-comments to disable line comments.
This commit is contained in:
parent
a154d2e5cf
commit
b601fb8d04
@ -13,6 +13,7 @@ COMPASS CHANGELOG
|
|||||||
for that property for the current project
|
for that property for the current project
|
||||||
* Bug fix: In webkit, when the last gradient color stop was a percent less than 100%, the
|
* Bug fix: In webkit, when the last gradient color stop was a percent less than 100%, the
|
||||||
intermediate values were being scaled to that value.
|
intermediate values were being scaled to that value.
|
||||||
|
* You can now pass --no-line-comments to the Compass command line to disable line comments.
|
||||||
|
|
||||||
0.10.6 (10/11/2010)
|
0.10.6 (10/11/2010)
|
||||||
-------------------
|
-------------------
|
||||||
|
@ -49,6 +49,10 @@ module Compass::Exec::ProjectOptionsParser
|
|||||||
opts.on('--relative-assets', :NONE, 'Make compass asset helpers generate relative urls to assets.') do
|
opts.on('--relative-assets', :NONE, 'Make compass asset helpers generate relative urls to assets.') do
|
||||||
self.options[:relative_assets] = true
|
self.options[:relative_assets] = true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
opts.on('--no-line-comments', :NONE, 'Disable line comments.') do
|
||||||
|
self.options[:line_comments] = false
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user