mirror of https://github.com/sveltejs/svelte
parent
ad2aac509d
commit
3fb9626eb4
@ -0,0 +1,8 @@
|
|||||||
|
export default {
|
||||||
|
preprocess: [
|
||||||
|
{
|
||||||
|
script: ({ content }) => ({ code: content.replace(/one/g, 'two') }),
|
||||||
|
style: ({ content }) => ({ code: content.replace(/one/g, 'three') }),
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
@ -0,0 +1,25 @@
|
|||||||
|
<style>
|
||||||
|
one
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
one
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<!-- <style>
|
||||||
|
one
|
||||||
|
</style> -->
|
||||||
|
|
||||||
|
<!-- <script>
|
||||||
|
one
|
||||||
|
</script> -->
|
||||||
|
|
||||||
|
<style>
|
||||||
|
<!-- one -->
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
<!-- one -->
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,25 @@
|
|||||||
|
<style>
|
||||||
|
three
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
two
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<!-- <style>
|
||||||
|
one
|
||||||
|
</style> -->
|
||||||
|
|
||||||
|
<!-- <script>
|
||||||
|
one
|
||||||
|
</script> -->
|
||||||
|
|
||||||
|
<style>
|
||||||
|
<!-- three -->
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
<!-- two -->
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
Loading…
Reference in new issue