* chore: replace node by `yarn node` * chore: fix tsc command * chore: use `yarn` to wrap node * chore: supress yarn run output * chore: disable silent mode for builtin yarn command
7 lines
105 B
Bash
Executable File
7 lines
105 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
tsFlags="--strict"
|
|
|
|
yarn --silent tsc $tsFlags ./packages/babel-types/lib/index.d.ts
|