mirror of https://github.com/sveltejs/svelte
16 lines
429 B
16 lines
429 B
import MagicString from 'magic-string';
|
|
import { magic_string_preprocessor_result, magic_string_replace_all } from '../../helpers';
|
|
|
|
export default {
|
|
|
|
js_map_sources: [], // test component has no scripts
|
|
|
|
preprocess: {
|
|
markup: ({ content, filename }) => {
|
|
const src = new MagicString(content);
|
|
magic_string_replace_all(src, 'replace me', 'success');
|
|
return magic_string_preprocessor_result(filename, src);
|
|
}
|
|
}
|
|
};
|