mirror of
https://github.com/prymitive/karma
synced 2026-05-19 04:26:41 +00:00
fix(tests): fix tested file extensions
This commit is contained in:
committed by
Łukasz Mierzwa
parent
4f941fd194
commit
ac5c336014
@@ -39,7 +39,7 @@ lint-docs: node_modules/markdownlint-cli/markdownlint.js
|
||||
|
||||
.PHONY: format
|
||||
format: node_modules/prettier/bin-prettier.js
|
||||
node_modules/prettier/bin-prettier.js --write 'src/**/*.js' 'src/**/*.tsx'
|
||||
node_modules/prettier/bin-prettier.js --write 'src/**/*.js' 'src/**/*.ts' 'src/**/*.tsx'
|
||||
|
||||
build/stats.json: build
|
||||
node_modules/source-map-explorer/dist/cli.js build/static/*/*.{js,css} --json > build/stats.json
|
||||
|
||||
@@ -66,8 +66,8 @@
|
||||
},
|
||||
"jest": {
|
||||
"collectCoverageFrom": [
|
||||
"src/**/*.{js,jsx,tsx}",
|
||||
"!src/**/*.stories.{js,jsx,tsx}"
|
||||
"src/**/*.{js,ts,tsx}",
|
||||
"!src/**/*.stories.{js,ts,tsx}"
|
||||
]
|
||||
},
|
||||
"devDependencies": {
|
||||
|
||||
Reference in New Issue
Block a user