Skip to content

Commit 2fb42f3

Browse files
committed
🌱 Initial commit
0 parents  commit 2fb42f3

14 files changed

+4923
-0
lines changed

.eslintignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
lib/
2+
coverage/
3+
jest.config.js

.eslintrc

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"root": true,
3+
"env": {
4+
"jest": true
5+
},
6+
"plugins": ["jest"],
7+
"extends": [
8+
"plugin:jest/recommended",
9+
"xo",
10+
"xo-typescript",
11+
"prettier",
12+
"prettier/@typescript-eslint"
13+
]
14+
}

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
coverage
2+
lib
3+
node_modules
4+
5+
*.log
6+
.DS_Store

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
save-exact=true

.prettierrc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"useTabs": false,
3+
"singleQuote": true,
4+
"trailingComma": "es5"
5+
}

.travis.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
git:
2+
depth: 1
3+
os:
4+
- linux
5+
language: node_js
6+
node_js:
7+
- '8'
8+
- '10'
9+
notifications:
10+
email:
11+
on_success: never
12+
cache:
13+
yarn: true
14+
directories:
15+
- node_modules
16+
script:
17+
- yarn ci
18+
- yarn global add codecov
19+
after_success:
20+
- codecov

.yarnrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
version-git-message "🔖 v%s"

LICENCE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019-present Reservix GmbH
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# docker-await-postgres

jest.config.js

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
module.exports = {
2+
// Setup
3+
// ---------------
4+
testEnvironment: 'node',
5+
preset: 'ts-jest',
6+
7+
// Paths
8+
// ---------------
9+
roots: ['<rootDir>/src/'],
10+
testMatch: ['**/*.test.ts'],
11+
12+
// Coverage
13+
// ---------------
14+
coveragePathIgnorePatterns: ['/node_modules/', '/*.d.ts/', '/fixture/'],
15+
16+
globals: {
17+
// Ts-jest configuration
18+
// ---------------
19+
'ts-jest': {
20+
diagnostics: {
21+
warnOnly: true,
22+
},
23+
},
24+
},
25+
};

package.json

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
{
2+
"name": "docker-await-postgres",
3+
"description": "wait until postgres container is started ... for real",
4+
"version": "0.0.0",
5+
"license": "MIT",
6+
"repository": "Reservix/docker-await-postgres",
7+
"keywords": [
8+
"docker",
9+
"postgres"
10+
],
11+
"author": "Reservix GmbH <[email protected]> (https://labs.reservix.de)",
12+
"contributors": [
13+
"Sebastian Sebald <[email protected]>"
14+
],
15+
"engines": {
16+
"node": ">=8"
17+
},
18+
"main": "lib/index.js",
19+
"files": [
20+
"lib"
21+
],
22+
"husky": {
23+
"hooks": {
24+
"pre-commit": "pretty-quick --staged"
25+
}
26+
},
27+
"dependencies": {},
28+
"devDependencies": {
29+
"@types/jest": "24.0.6",
30+
"@typescript-eslint/eslint-plugin": "1.4.0",
31+
"conventional-changelog-cli": "2.0.12",
32+
"conventional-changelog-emojis": "3.0.1",
33+
"eslint": "5.14.1",
34+
"eslint-config-prettier": "4.0.0",
35+
"eslint-config-xo": "0.26.0",
36+
"eslint-config-xo-typescript": "0.8.0",
37+
"eslint-plugin-jest": "22.3.0",
38+
"husky": "1.3.1",
39+
"jest": "24.1.0",
40+
"npm-run-all": "4.1.5",
41+
"prettier": "1.16.4",
42+
"pretty-quick": "1.10.0",
43+
"ts-jest": "24.0.0",
44+
"typescript": "3.3.3"
45+
},
46+
"scripts": {
47+
"start": "tsc",
48+
"test": "jest --config jest.config.js",
49+
"clean": "rm -rf lib coverage",
50+
"typecheck": "tsc --noEmit",
51+
"lint": "eslint \"src/**/*.ts\"",
52+
"format": "prettier --write \"src/**/*.ts\"",
53+
"ci": "jest --config jest.config.js --coverage",
54+
"version": "conventional-changelog -p emojis -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
55+
"prepublishOnly": "npm-run-all clean test start"
56+
}
57+
}

src/index.ts

Whitespace-only changes.

tsconfig.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"compilerOptions": {
3+
"module": "commonjs",
4+
"target": "es2017",
5+
"lib": ["dom", "es2017"],
6+
"sourceMap": true,
7+
"declaration": true,
8+
"allowSyntheticDefaultImports": true,
9+
"esModuleInterop": true,
10+
"moduleResolution": "node",
11+
"strict": true,
12+
"forceConsistentCasingInFileNames": true,
13+
"suppressImplicitAnyIndexErrors": true,
14+
"noUnusedLocals": true,
15+
"skipLibCheck": true,
16+
"outDir": "lib"
17+
},
18+
"include": ["src/*"],
19+
"exclude": ["coverage", "lib", "fixture", "node_modules", "**/*.test.ts"]
20+
}

0 commit comments

Comments
 (0)