Skip to content

Commit 1cab517

Browse files
committed
fix(cli): git-ignore all "dist*" dirs in scaffolded projects
Fix the project template to configure Git to ignore all dist files created by the TypeScript compiler, e.g. `dist8` for Node.js 8.x and `dist10` for Node.js 10.x Before this change, only the directory `dist` was ignored.
1 parent 888ece6 commit 1cab517

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cli/generators/project/templates/_.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@ typings/
6161
api-docs/
6262

6363
# Transpiled JavaScript files from Typescript
64-
dist/
64+
/dist*/

0 commit comments

Comments
 (0)