enb / enb-stylus

Stylus related techs
Other
18 stars 17 forks source link

Generates empty file (*.type) when creating inline sourcemap #103

Closed unlok closed 9 years ago

unlok commented 9 years ago

https://github.com/enb-make/enb-stylus/blob/master/techs/stylus.js#L334

if (this._sourcemap && !this._sourcemap.inline) {

fix:

if (this._sourcemap && this._sourcemap !== 'inline') {
blond commented 9 years ago

Fixed in #104