mirror of https://github.com/sveltejs/svelte
Merge pull request #3894 from tanhauhau/tanhauhau/skip-comment-for-preprocessors
skip comments for preprocessorspull/3928/head
commit
d67b44861a
@ -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