Skip to content

Commit 3e62373

Browse files
authored
Merge pull request #13 from code4rena-dev/fix/cleanup
.gitignore updates and ci default variable fix
2 parents 96492dc + 4ae51a7 commit 3e62373

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
!/.github/
1010
!/.gitignore
1111
!/.npmrc
12+
!/.prettierrc.json
1213
!/Dockerfile
1314
!/bin/
1415
!/CHANGELOG*

lib/content/gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
!/.github/
1010
!/.gitignore
1111
!/.npmrc
12+
!/.prettierrc.json
1213
!/Dockerfile
1314
!/bin/
1415
!/CHANGELOG*
@@ -25,6 +26,7 @@
2526
!/tap-snapshots/
2627
!/test/
2728
!/tsconfig*.json
29+
!/heroku.yml
2830

2931
# re-ignore typescript output artifacts
3032
/knexfile.js

lib/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export default async function (root: string, variables: Variables) {
9898
"scripts/clean.ts": copy(join(__dirname, "content", "clean.ts")),
9999
".github/workflows/ci.yml": mustache({
100100
sourcePath: join(__dirname, "content", "ci.yml"),
101-
variables: variables.ci,
101+
variables: variables.ci || {},
102102
}),
103103
".github/matchers/tap.json": copy(join(__dirname, "content", "tap.json")),
104104
};

0 commit comments

Comments
 (0)