enb / enb-stylus

Stylus related techs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

unlok opened this issue · comments

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') {

Fixed in #104