LoginSignup
0
0

More than 5 years have passed since last update.

Source Map V3の不満点。

Posted at

CoffeeScriptの開発過程に溜まった愚痴です、別に1.6.2の動作に支障は有りませんので、無視しても構いません。

Source Map V3 specはこちら

unicode

例えばsourcesContentにunicodeのソースコードを入れます。base64 encodingを前提にしているがunicode charactersのencodingについて一言も語っていない。

現段階では

function utf8_to_b64(str) {
    return window.btoa(unescape(encodeURIComponent(str)));
}
new Buffer(v3SourceMap).toString('base64');

どちらも文字化けする

IEとの相性が悪い

//@ sourceMappingURL=

いくつかのファイルを圧縮処理した場合IEのconditional commentsにハマりやすい。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0