0.2.1 • Published 2 months ago

@jridgewell/build-mapping v0.2.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

@jridgewell/build-mapping

Build source and source maps

Allows you to iteratively build source code and source maps from previously generated code/maps.

Installation

npm install @jridgewell/build-mapping

Usage

import { build, unnormalizedBuild } from '@jridgewell/build-mapping';

const input = transformFileSync('input.js')
const { code, map } = build`foo ${input} bar`;

assert.equal(code, `foo [input's code here…] bar`);
assert.deepEqual(map, {
  version: 3,
  sections: [
    { offset: { line: 0, column: 4 }, map: … },
    { offset: { line: 0, column: 24 }, map: … },
  ]
});


// If you're using @jridgewell/trace-mapping's `AnyMap`, you can use a faster unnormalized builder:
const { code: sameCode, map: unnormalized } = unnormalizedBuild`foo ${input} bar`;



// This can be anything that generates { code, map }.
function transformFileSync(file: string): { code: string, map: string } {
  return babel.transformFileSync('input.js');
}
0.2.1

2 months ago

0.1.2

2 months ago

0.2.0

2 months ago

0.1.1

2 months ago

0.1.0

2 months ago