Skip to content

Commit b0aa3ae

Browse files
authored
Merge pull request #254 from akd-io/feature/208-add-contributers-to-readme
Add contrib.rocks overview of all contributors to readme
2 parents 30044f4 + 0322d26 commit b0aa3ae

16 files changed

+34
-30
lines changed

packages/create-next-stack/README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,14 @@ FLAGS
117117

118118
<!-- CNS-END-OF-HELP-OUTPUT -->
119119

120-
## Contributing
120+
## All contributors
121121

122122
Contributions are welcome! Please see the [contributing guidelines](CONTRIBUTING.md) for more information.
123123

124+
<a href="https://github.com/akd-io/create-next-stack/graphs/contributors">
125+
<img src="https://contrib.rocks/image?repo=akd-io/create-next-stack" />
126+
</a>
127+
124128
## License
125129

126130
Create Next Stack is released under the [MIT License](LICENSE).

packages/create-next-stack/src/tests/e2e/helpers/test-args.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { runCommand } from "../../../main/helpers/run-command"
22
import { performFinalChecks } from "./perform-final-checks"
33
import { prepareE2eTest } from "./prepare-e2e-test"
4-
import { fifteenMinutes } from "./timeout"
4+
import { twentyMinutes } from "./timeout"
55

66
/**
77
* Prepare an e2e test and run the CLI with the given arguments.
@@ -13,7 +13,7 @@ export const testArgsWithoutFinalChecks = async (args: string[]) => {
1313
const { pathToCLI, runDirectory } = await prepareE2eTest()
1414

1515
await runCommand(pathToCLI, args, {
16-
timeout: fifteenMinutes,
16+
timeout: twentyMinutes,
1717
cwd: runDirectory,
1818
stdout: "inherit",
1919
stderr: "inherit",
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export const fifteenMinutes = 1000 * 60 * 15
1+
export const twentyMinutes = 1000 * 60 * 20
22
export const oneMinute = 1000 * 60

packages/create-next-stack/src/tests/e2e/tests/css-modules-with-sass/css-modules-with-sass-all-flags.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { test } from "@jest/globals"
22
import { testArgsWithFinalChecks } from "../../helpers/test-args"
3-
import { fifteenMinutes } from "../../helpers/timeout"
3+
import { twentyMinutes } from "../../helpers/timeout"
44

55
test(
66
"testCssModulesWithSassAllFlags",
@@ -22,5 +22,5 @@ test(
2222
".",
2323
])
2424
},
25-
fifteenMinutes
25+
twentyMinutes
2626
)

packages/create-next-stack/src/tests/e2e/tests/css-modules-with-sass/css-modules-with-sass-only.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { test } from "@jest/globals"
22
import { testArgsWithFinalChecks } from "../../helpers/test-args"
3-
import { fifteenMinutes } from "../../helpers/timeout"
3+
import { twentyMinutes } from "../../helpers/timeout"
44

55
test(
66
"testCssModulesWithSassOnly",
@@ -12,5 +12,5 @@ test(
1212
".",
1313
])
1414
},
15-
fifteenMinutes
15+
twentyMinutes
1616
)

packages/create-next-stack/src/tests/e2e/tests/css-modules/css-modules-all-flags.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { test } from "@jest/globals"
22
import { testArgsWithFinalChecks } from "../../helpers/test-args"
3-
import { fifteenMinutes } from "../../helpers/timeout"
3+
import { twentyMinutes } from "../../helpers/timeout"
44

55
test(
66
"testCssModulesAllFlags",
@@ -22,5 +22,5 @@ test(
2222
".",
2323
])
2424
},
25-
fifteenMinutes
25+
twentyMinutes
2626
)

packages/create-next-stack/src/tests/e2e/tests/css-modules/css-modules-only.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { test } from "@jest/globals"
22
import { testArgsWithFinalChecks } from "../../helpers/test-args"
3-
import { fifteenMinutes } from "../../helpers/timeout"
3+
import { twentyMinutes } from "../../helpers/timeout"
44

55
test(
66
"testCssModulesOnly",
@@ -12,5 +12,5 @@ test(
1212
".",
1313
])
1414
},
15-
fifteenMinutes
15+
twentyMinutes
1616
)

packages/create-next-stack/src/tests/e2e/tests/emotion/emotion-all-flags.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { test } from "@jest/globals"
22
import { testArgsWithFinalChecks } from "../../helpers/test-args"
3-
import { fifteenMinutes } from "../../helpers/timeout"
3+
import { twentyMinutes } from "../../helpers/timeout"
44

55
test(
66
"testEmotionAllFlags",
@@ -25,5 +25,5 @@ test(
2525
".",
2626
])
2727
},
28-
fifteenMinutes
28+
twentyMinutes
2929
)

packages/create-next-stack/src/tests/e2e/tests/emotion/emotion-only.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { test } from "@jest/globals"
22
import { testArgsWithFinalChecks } from "../../helpers/test-args"
3-
import { fifteenMinutes } from "../../helpers/timeout"
3+
import { twentyMinutes } from "../../helpers/timeout"
44

55
test(
66
"testEmotionOnly",
@@ -12,5 +12,5 @@ test(
1212
".",
1313
])
1414
},
15-
fifteenMinutes
15+
twentyMinutes
1616
)

packages/create-next-stack/src/tests/e2e/tests/npm.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { expect, test } from "@jest/globals"
22
import { exists } from "../../../main/helpers/exists"
33
import { testArgsWithFinalChecks } from "../helpers/test-args"
4-
import { fifteenMinutes } from "../helpers/timeout"
4+
import { twentyMinutes } from "../helpers/timeout"
55

66
test(
77
"testNpm",
@@ -35,5 +35,5 @@ test(
3535
const pnpmLockExists = await exists(`${runDirectory}/pnpm-lock.yaml`)
3636
expect(pnpmLockExists).toBe(false)
3737
},
38-
fifteenMinutes
38+
twentyMinutes
3939
)

packages/create-next-stack/src/tests/e2e/tests/pnpm.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { expect, test } from "@jest/globals"
22
import { exists } from "../../../main/helpers/exists"
33
import { testArgsWithFinalChecks } from "../helpers/test-args"
4-
import { fifteenMinutes } from "../helpers/timeout"
4+
import { twentyMinutes } from "../helpers/timeout"
55

66
test(
77
"testPnpm",
@@ -35,5 +35,5 @@ test(
3535
const pnpmLockExists = await exists(`${runDirectory}/pnpm-lock.yaml`)
3636
expect(pnpmLockExists).toBe(true)
3737
},
38-
fifteenMinutes
38+
twentyMinutes
3939
)

packages/create-next-stack/src/tests/e2e/tests/styled-components/styled-components-all-flags.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { test } from "@jest/globals"
22
import { testArgsWithFinalChecks } from "../../helpers/test-args"
3-
import { fifteenMinutes } from "../../helpers/timeout"
3+
import { twentyMinutes } from "../../helpers/timeout"
44

55
test(
66
"testStyledComponentsAllFlags",
@@ -22,5 +22,5 @@ test(
2222
".",
2323
])
2424
},
25-
fifteenMinutes
25+
twentyMinutes
2626
)

packages/create-next-stack/src/tests/e2e/tests/styled-components/styled-components-only.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { test } from "@jest/globals"
22
import { testArgsWithFinalChecks } from "../../helpers/test-args"
3-
import { fifteenMinutes } from "../../helpers/timeout"
3+
import { twentyMinutes } from "../../helpers/timeout"
44

55
test(
66
"testStyledComponentsOnly",
@@ -12,5 +12,5 @@ test(
1212
".",
1313
])
1414
},
15-
fifteenMinutes
15+
twentyMinutes
1616
)

packages/create-next-stack/src/tests/e2e/tests/tailwind-css/tailwind-css-all-flags.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { test } from "@jest/globals"
22
import { testArgsWithFinalChecks } from "../../helpers/test-args"
3-
import { fifteenMinutes } from "../../helpers/timeout"
3+
import { twentyMinutes } from "../../helpers/timeout"
44

55
test(
66
"testTailwindCssAllFlags",
@@ -22,5 +22,5 @@ test(
2222
".",
2323
])
2424
},
25-
fifteenMinutes
25+
twentyMinutes
2626
)

packages/create-next-stack/src/tests/e2e/tests/tailwind-css/tailwind-css-only.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { test } from "@jest/globals"
22
import { testArgsWithFinalChecks } from "../../helpers/test-args"
3-
import { fifteenMinutes } from "../../helpers/timeout"
3+
import { twentyMinutes } from "../../helpers/timeout"
44

55
test(
66
"testTailwindCssOnly",
@@ -12,5 +12,5 @@ test(
1212
".",
1313
])
1414
},
15-
fifteenMinutes
15+
twentyMinutes
1616
)

packages/create-next-stack/src/tests/e2e/tests/yarn.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { expect, test } from "@jest/globals"
22
import { exists } from "../../../main/helpers/exists"
33
import { testArgsWithFinalChecks } from "../helpers/test-args"
4-
import { fifteenMinutes } from "../helpers/timeout"
4+
import { twentyMinutes } from "../helpers/timeout"
55

66
test(
77
"testYarn",
@@ -35,5 +35,5 @@ test(
3535
const pnpmLockExists = await exists(`${runDirectory}/pnpm-lock.yaml`)
3636
expect(pnpmLockExists).toBe(false)
3737
},
38-
fifteenMinutes
38+
twentyMinutes
3939
)

0 commit comments

Comments
 (0)