Skip to content

Commit

Permalink
chore(cli): update templates to remove Node 6 remnants
Browse files Browse the repository at this point in the history
Follow up from #996 and related to dropping Node 6 support. CLI template had references to `dist6` folders which are no longer generated.
  • Loading branch information
virkt25 committed Feb 15, 2018
1 parent baf9928 commit 0be9f2a
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion packages/cli/generators/project/templates/.prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
dist
dist6
api-docs
*.json
2 changes: 0 additions & 2 deletions packages/cli/generators/project/templates/_.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,3 @@ api-docs/

# Transpiled JavaScript files from Typescript
dist/
dist6/

2 changes: 1 addition & 1 deletion packages/cli/generators/project/templates/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"lib": ["es2017", "dom"],
"module": "commonjs",
"moduleResolution": "node",
"target": "es6",
"target": "es2017",
"sourceMap": true,
"declaration": true
},
Expand Down

0 comments on commit 0be9f2a

Please sign in to comment.