Skip to content

Commit

Permalink
Merge pull request #254 from akd-io/feature/208-add-contributers-to-r…
Browse files Browse the repository at this point in the history
…eadme

Add contrib.rocks overview of all contributors to readme
  • Loading branch information
akd-io authored Jun 22, 2023
2 parents 30044f4 + 0322d26 commit b0aa3ae
Show file tree
Hide file tree
Showing 16 changed files with 34 additions and 30 deletions.
6 changes: 5 additions & 1 deletion packages/create-next-stack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,14 @@ FLAGS

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

## Contributing
## All contributors

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

<a href="https://github.com/akd-io/create-next-stack/graphs/contributors">
<img src="https://contrib.rocks/image?repo=akd-io/create-next-stack" />
</a>

## License

Create Next Stack is released under the [MIT License](LICENSE).
4 changes: 2 additions & 2 deletions packages/create-next-stack/src/tests/e2e/helpers/test-args.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { runCommand } from "../../../main/helpers/run-command"
import { performFinalChecks } from "./perform-final-checks"
import { prepareE2eTest } from "./prepare-e2e-test"
import { fifteenMinutes } from "./timeout"
import { twentyMinutes } from "./timeout"

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

await runCommand(pathToCLI, args, {
timeout: fifteenMinutes,
timeout: twentyMinutes,
cwd: runDirectory,
stdout: "inherit",
stderr: "inherit",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export const fifteenMinutes = 1000 * 60 * 15
export const twentyMinutes = 1000 * 60 * 20
export const oneMinute = 1000 * 60
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test } from "@jest/globals"
import { testArgsWithFinalChecks } from "../../helpers/test-args"
import { fifteenMinutes } from "../../helpers/timeout"
import { twentyMinutes } from "../../helpers/timeout"

test(
"testCssModulesWithSassAllFlags",
Expand All @@ -22,5 +22,5 @@ test(
".",
])
},
fifteenMinutes
twentyMinutes
)
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test } from "@jest/globals"
import { testArgsWithFinalChecks } from "../../helpers/test-args"
import { fifteenMinutes } from "../../helpers/timeout"
import { twentyMinutes } from "../../helpers/timeout"

test(
"testCssModulesWithSassOnly",
Expand All @@ -12,5 +12,5 @@ test(
".",
])
},
fifteenMinutes
twentyMinutes
)
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test } from "@jest/globals"
import { testArgsWithFinalChecks } from "../../helpers/test-args"
import { fifteenMinutes } from "../../helpers/timeout"
import { twentyMinutes } from "../../helpers/timeout"

test(
"testCssModulesAllFlags",
Expand All @@ -22,5 +22,5 @@ test(
".",
])
},
fifteenMinutes
twentyMinutes
)
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test } from "@jest/globals"
import { testArgsWithFinalChecks } from "../../helpers/test-args"
import { fifteenMinutes } from "../../helpers/timeout"
import { twentyMinutes } from "../../helpers/timeout"

test(
"testCssModulesOnly",
Expand All @@ -12,5 +12,5 @@ test(
".",
])
},
fifteenMinutes
twentyMinutes
)
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test } from "@jest/globals"
import { testArgsWithFinalChecks } from "../../helpers/test-args"
import { fifteenMinutes } from "../../helpers/timeout"
import { twentyMinutes } from "../../helpers/timeout"

test(
"testEmotionAllFlags",
Expand All @@ -25,5 +25,5 @@ test(
".",
])
},
fifteenMinutes
twentyMinutes
)
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test } from "@jest/globals"
import { testArgsWithFinalChecks } from "../../helpers/test-args"
import { fifteenMinutes } from "../../helpers/timeout"
import { twentyMinutes } from "../../helpers/timeout"

test(
"testEmotionOnly",
Expand All @@ -12,5 +12,5 @@ test(
".",
])
},
fifteenMinutes
twentyMinutes
)
4 changes: 2 additions & 2 deletions packages/create-next-stack/src/tests/e2e/tests/npm.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { expect, test } from "@jest/globals"
import { exists } from "../../../main/helpers/exists"
import { testArgsWithFinalChecks } from "../helpers/test-args"
import { fifteenMinutes } from "../helpers/timeout"
import { twentyMinutes } from "../helpers/timeout"

test(
"testNpm",
Expand Down Expand Up @@ -35,5 +35,5 @@ test(
const pnpmLockExists = await exists(`${runDirectory}/pnpm-lock.yaml`)
expect(pnpmLockExists).toBe(false)
},
fifteenMinutes
twentyMinutes
)
4 changes: 2 additions & 2 deletions packages/create-next-stack/src/tests/e2e/tests/pnpm.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { expect, test } from "@jest/globals"
import { exists } from "../../../main/helpers/exists"
import { testArgsWithFinalChecks } from "../helpers/test-args"
import { fifteenMinutes } from "../helpers/timeout"
import { twentyMinutes } from "../helpers/timeout"

test(
"testPnpm",
Expand Down Expand Up @@ -35,5 +35,5 @@ test(
const pnpmLockExists = await exists(`${runDirectory}/pnpm-lock.yaml`)
expect(pnpmLockExists).toBe(true)
},
fifteenMinutes
twentyMinutes
)
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test } from "@jest/globals"
import { testArgsWithFinalChecks } from "../../helpers/test-args"
import { fifteenMinutes } from "../../helpers/timeout"
import { twentyMinutes } from "../../helpers/timeout"

test(
"testStyledComponentsAllFlags",
Expand All @@ -22,5 +22,5 @@ test(
".",
])
},
fifteenMinutes
twentyMinutes
)
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test } from "@jest/globals"
import { testArgsWithFinalChecks } from "../../helpers/test-args"
import { fifteenMinutes } from "../../helpers/timeout"
import { twentyMinutes } from "../../helpers/timeout"

test(
"testStyledComponentsOnly",
Expand All @@ -12,5 +12,5 @@ test(
".",
])
},
fifteenMinutes
twentyMinutes
)
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test } from "@jest/globals"
import { testArgsWithFinalChecks } from "../../helpers/test-args"
import { fifteenMinutes } from "../../helpers/timeout"
import { twentyMinutes } from "../../helpers/timeout"

test(
"testTailwindCssAllFlags",
Expand All @@ -22,5 +22,5 @@ test(
".",
])
},
fifteenMinutes
twentyMinutes
)
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test } from "@jest/globals"
import { testArgsWithFinalChecks } from "../../helpers/test-args"
import { fifteenMinutes } from "../../helpers/timeout"
import { twentyMinutes } from "../../helpers/timeout"

test(
"testTailwindCssOnly",
Expand All @@ -12,5 +12,5 @@ test(
".",
])
},
fifteenMinutes
twentyMinutes
)
4 changes: 2 additions & 2 deletions packages/create-next-stack/src/tests/e2e/tests/yarn.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { expect, test } from "@jest/globals"
import { exists } from "../../../main/helpers/exists"
import { testArgsWithFinalChecks } from "../helpers/test-args"
import { fifteenMinutes } from "../helpers/timeout"
import { twentyMinutes } from "../helpers/timeout"

test(
"testYarn",
Expand Down Expand Up @@ -35,5 +35,5 @@ test(
const pnpmLockExists = await exists(`${runDirectory}/pnpm-lock.yaml`)
expect(pnpmLockExists).toBe(false)
},
fifteenMinutes
twentyMinutes
)

0 comments on commit b0aa3ae

Please sign in to comment.