You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/packages/svelte/tests/sourcemaps/samples/source-map-generator/_config.js

31 lines
918 B

import MagicString from 'magic-string';
import { test } from '../../test';
import { SourceMapConsumer, SourceMapGenerator } from 'source-map';
import * as path from 'node:path';
export default test({
preprocess: {
style: async ({ content, filename = '' }) => {
const src = new MagicString(content);
const idx = content.indexOf('baritone');
src.overwrite(idx, idx + 'baritone'.length, 'bar');
// This test checks that the sourcemap format from source-map
// also works with our preprocessor merging.
const map = SourceMapGenerator.fromSourceMap(
await new SourceMapConsumer(
// sourcemap must be encoded for SourceMapConsumer
src.generateMap({
source: path.basename(filename),
hires: true,
includeContent: false
})
)
);
return { code: src.toString(), map };
}
},
css: [{ str: '--baritone: red', strGenerated: '--bar: red' }, '--baz: blue']
});