Skip to content

Commit

Permalink
update build script
Browse files Browse the repository at this point in the history
  • Loading branch information
pieh committed Aug 8, 2024
1 parent 0eb1290 commit 0698166
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import glob from 'fast-glob'
const OUT_DIR = 'dist'
await rm(OUT_DIR, { force: true, recursive: true })

const entryPointsESM = await glob('src/**/*.ts', { ignore: ['**/*.test.ts'] })
const entryPointsESM = await glob('src/**/*.ts', { ignore: ['**/*.test.ts', '**/templates/*.ts'] })
const entryPointsCJS = await glob('src/**/*.cts')

/**
Expand Down

0 comments on commit 0698166

Please sign in to comment.