enb/enb-stylus

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

unlok opened this issue · 1 comments

unlok commented

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

Fixed in #104