-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependency prettier to v2.3.1 (#241)
Co-authored-by: Renovate Bot <[email protected]> Co-authored-by: Gustav Utterheim <[email protected]>
- Loading branch information
1 parent
8641253
commit ad1df0f
Showing
9 changed files
with
50 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,6 @@ const ora = { | |
start: jest.fn(() => ({ | ||
stopAndPersist, | ||
fail, | ||
})) | ||
} | ||
})), | ||
}; | ||
export default (): typeof ora => ora; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,25 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Documentation | codeowners-generator</title> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | ||
<meta name="description" content="Documentation for codeowners-generator - use codeowners anywhere in your monorepo!"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0"> | ||
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css"> | ||
</head> | ||
<body> | ||
<div id="app"></div> | ||
<script> | ||
window.$docsify = { | ||
name: '', | ||
repo: '' | ||
} | ||
</script> | ||
<!-- Docsify v4 --> | ||
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script> | ||
</body> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>Documentation | codeowners-generator</title> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | ||
<meta | ||
name="description" | ||
content="Documentation for codeowners-generator - use codeowners anywhere in your monorepo!" | ||
/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0" /> | ||
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css" /> | ||
</head> | ||
<body> | ||
<div id="app"></div> | ||
<script> | ||
window.$docsify = { | ||
name: '', | ||
repo: '', | ||
}; | ||
</script> | ||
<!-- Docsify v4 --> | ||
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,21 @@ | ||
process.env.TZ = "UTC"; | ||
process.env.TZ = 'UTC'; | ||
|
||
module.exports = { | ||
globals: { | ||
"ts-jest": { | ||
disableSourceMapSupport: true | ||
} | ||
'ts-jest': { | ||
disableSourceMapSupport: true, | ||
}, | ||
}, | ||
verbose: true, | ||
transform: { | ||
"^.+\\.tsx?$": "ts-jest" | ||
'^.+\\.tsx?$': 'ts-jest', | ||
}, | ||
preset: "ts-jest", | ||
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"], | ||
testURL: "http://localhost", | ||
transformIgnorePatterns: ["[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"], | ||
testMatch: ["**/*.(spec|test).{ts,tsx}"], | ||
preset: 'ts-jest', | ||
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'], | ||
testURL: 'http://localhost', | ||
transformIgnorePatterns: ['[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$'], | ||
testMatch: ['**/*.(spec|test).{ts,tsx}'], | ||
collectCoverage: true, | ||
collectCoverageFrom: [ | ||
"config/**/*.{ts,tsx}", | ||
"src/**/*.{ts,tsx}", | ||
"!src/utils/guards.ts", | ||
"!src/bin/cli.ts" | ||
], | ||
coverageDirectory: "./coverage/" | ||
collectCoverageFrom: ['config/**/*.{ts,tsx}', 'src/**/*.{ts,tsx}', '!src/utils/guards.ts', '!src/bin/cli.ts'], | ||
coverageDirectory: './coverage/', | ||
}; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
{ | ||
"extends": [ | ||
"config:base" | ||
] | ||
"extends": ["config:base"] | ||
} |