Skip to content

Commit

Permalink
Merge pull request #33 from rstudio/aron-fix-distclean
Browse files Browse the repository at this point in the history
distclean: .cache/data not __test__/data
  • Loading branch information
aronatkins authored Jun 21, 2024
2 parents efa94f0 + 580d453 commit 9046ba3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ clean:

.PHONY: distclean
distclean: clean
rm -rf .cache/data
rm -rf .cache/

.PHONY: up
up: .require-license
Expand Down
1 change: 1 addition & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ module.exports = {
clearMocks: true,
collectCoverage: true,
coverageDirectory: 'coverage',
modulePathIgnorePatterns: ["./.cache/"],
preset: 'ts-jest',
testEnvironment: 'node'
}
2 changes: 1 addition & 1 deletion tsconfig.eslint.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"exclude": ["node_modules", "__tests__/data/**/*", "lib/**/*"],
"exclude": ["node_modules", ".cache/**/*", "lib/**/*"],
"extends": "./tsconfig.json"
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"outDir": "./lib",
"resolveJsonModule": true
},
"exclude": ["node_modules", "__tests__/**/*.spec.ts", "__tests__/data/**/*", "lib/**/*"],
"exclude": ["node_modules", "__tests__/**/*.spec.ts", ".cache/**/*", "lib/**/*"],
"extends": "@tsconfig/node16/tsconfig.json"
}

0 comments on commit 9046ba3

Please sign in to comment.