add configuration options
This commit is contained in:
parent
920f088ff8
commit
4f2d2e5863
1 changed files with 11 additions and 8 deletions
|
@ -1,12 +1,15 @@
|
||||||
import fs from 'node:fs/promises'
|
import fs from 'node:fs/promises'
|
||||||
|
|
||||||
export const wgsl = () => ({
|
export const wgsl = ({ filterWith, filterExtension }) => ({
|
||||||
name: 'esbuild-plugin-wgsl',
|
name: 'esbuild-plugin-wgsl',
|
||||||
setup(build) {
|
setup(build) {
|
||||||
build.onLoad({ filter: /\.wgsl$/ }, async args => {
|
const filter = filterExtension || true ? /\.wgsl$/ : /.*/
|
||||||
|
build.onLoad({ filter }, async args => {
|
||||||
|
if (!filterWith || args.filter.with === 'wgsl') {
|
||||||
const contents = await fs.readFile(args.path, 'utf8')
|
const contents = await fs.readFile(args.path, 'utf8')
|
||||||
|
|
||||||
return { contents }
|
return { contents, loader: 'text' }
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Reference in a new issue