Skip to content

Commit

Permalink
chore: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbbreuer committed Oct 22, 2024
1 parent 73d453e commit 381b121
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions scripts/generate.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import path from 'node:path'
import { generate } from '../src'

console.log('Generating output...', path.join(__dirname, '..'))

generate({
cwd: path.join(__dirname, '..'),
root: path.join(__dirname, '..', 'fixtures/input'),
outdir: path.join(__dirname, '..', 'fixtures/generated'),
clean: true,
tsconfigPath: path.join(__dirname, '..', 'tsconfig.json'),
})

console.log('Generated')

0 comments on commit 381b121

Please sign in to comment.