Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Feb 6, 2019
1 parent 441f90d commit c0331c1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,7 @@
### Chore & Maintenance

- `[*]`: Setup building, linting and testing of TypeScript ([#7808](https://github.com/facebook/jest/pull/7808))
- `[pretty-format]`: Migrate to TypeScript ([#7809](https://github.com/facebook/jest/pull/7809))

### Performance

Expand Down
4 changes: 1 addition & 3 deletions scripts/build.js
Expand Up @@ -196,9 +196,7 @@ function compileTypes(packages) {
fs.existsSync(path.resolve(p, 'tsconfig.json'))
);

if (packageWithTs.length > 0) {
execa.sync('tsc', ['-b', ...packageWithTs]);
}
execa.sync('tsc', ['-b', ...packageWithTs]);
}

if (files.length) {
Expand Down
4 changes: 1 addition & 3 deletions scripts/watch.js
Expand Up @@ -61,9 +61,7 @@ const packageWithTs = packages.filter(p =>
fs.existsSync(path.resolve(p, 'tsconfig.json'))
);

if (packageWithTs.length > 0) {
execa('tsc', ['-b', ...packageWithTs, '--watch']);
}
execa('tsc', ['-b', ...packageWithTs, '--watch']);

setInterval(() => {
const files = Array.from(filesToBuild.keys());
Expand Down

0 comments on commit c0331c1

Please sign in to comment.