diff --git a/dist/index-umd-web.js b/dist/index-umd-web.js index 1e1b5e6..cc6547e 100644 --- a/dist/index-umd-web.js +++ b/dist/index-umd-web.js @@ -657,13 +657,12 @@ return `data:application/json,${encodeURIComponent(JSON.stringify(this.toJSON()))}`; } toJSON() { - // console.error(this.#line); - // console.error([...this.#map.keys()]); - console.error({ - version: this.#version, - sources: this.#sources.slice(), - mappings: [...this.#map.values()] - }); + // console.error({ + // + // version: this.#version, + // sources: this.#sources.slice(), + // mappings: [...this.#map.values()] + // }); const mappings = []; let i = 0; for (; i <= this.#line; i++) { diff --git a/dist/index.cjs b/dist/index.cjs index 56fe626..9fb4a86 100644 --- a/dist/index.cjs +++ b/dist/index.cjs @@ -655,13 +655,12 @@ class SourceMap { return `data:application/json,${encodeURIComponent(JSON.stringify(this.toJSON()))}`; } toJSON() { - // console.error(this.#line); - // console.error([...this.#map.keys()]); - console.error({ - version: this.#version, - sources: this.#sources.slice(), - mappings: [...this.#map.values()] - }); + // console.error({ + // + // version: this.#version, + // sources: this.#sources.slice(), + // mappings: [...this.#map.values()] + // }); const mappings = []; let i = 0; for (; i <= this.#line; i++) { diff --git a/dist/lib/renderer/sourcemap/sourcemap.js b/dist/lib/renderer/sourcemap/sourcemap.js index c68f2d9..07261cc 100644 --- a/dist/lib/renderer/sourcemap/sourcemap.js +++ b/dist/lib/renderer/sourcemap/sourcemap.js @@ -37,13 +37,12 @@ class SourceMap { return `data:application/json,${encodeURIComponent(JSON.stringify(this.toJSON()))}`; } toJSON() { - // console.error(this.#line); - // console.error([...this.#map.keys()]); - console.error({ - version: this.#version, - sources: this.#sources.slice(), - mappings: [...this.#map.values()] - }); + // console.error({ + // + // version: this.#version, + // sources: this.#sources.slice(), + // mappings: [...this.#map.values()] + // }); const mappings = []; let i = 0; for (; i <= this.#line; i++) { diff --git a/src/lib/renderer/sourcemap/sourcemap.ts b/src/lib/renderer/sourcemap/sourcemap.ts index 2d51573..8bc9b07 100644 --- a/src/lib/renderer/sourcemap/sourcemap.ts +++ b/src/lib/renderer/sourcemap/sourcemap.ts @@ -59,16 +59,12 @@ export class SourceMap { toJSON(): SourceMapObject { - - // console.error(this.#line); - // console.error([...this.#map.keys()]); - - console.error({ - - version: this.#version, - sources: this.#sources.slice(), - mappings: [...this.#map.values()] - }); + // console.error({ + // + // version: this.#version, + // sources: this.#sources.slice(), + // mappings: [...this.#map.values()] + // }); const mappings: string[] = [];