Skip to content

Commit

Permalink
fix: ignore .d2 directory
Browse files Browse the repository at this point in the history
  • Loading branch information
amcgee authored and varl committed Nov 22, 2019
1 parent 02fad82 commit c4c384b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/files.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,15 @@ const log = require('@dhis2/cli-helpers-engine').reporter

const { stagedFiles } = require('./git-files.js')

const blacklist = ['node_modules', 'build', 'dist', 'target', '.git', 'vendor']
const blacklist = [
'node_modules',
'build',
'dist',
'target',
'.git',
'vendor',
'.d2',
]

const whitelists = {
js: ['.js', '.jsx', '.ts'],
Expand Down

0 comments on commit c4c384b

Please sign in to comment.