Skip to content

Commit 30044f4

Browse files
committed
Merge branch 'main' into develop
2 parents 0422bc2 + 82f428e commit 30044f4

File tree

17 files changed

+31
-31
lines changed

17 files changed

+31
-31
lines changed

apps/website/templates/LandingPage/components/TechnologiesForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ export const TechnologiesForm: React.FC = () => {
252252
formData
253253
) => {
254254
const calculateCommand = (formData: TechnologiesFormData) => {
255-
const args = ["npx", "create-next-stack@0.2.7"]
255+
const args = ["npx", "create-next-stack@0.2.8"]
256256

257257
args.push(`--package-manager=${options[formData.packageManager].value}`)
258258
args.push(`--styling=${options[formData.styling].value}`)

packages/create-next-stack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "create-next-stack",
33
"description": "Create Next Stack is a website and CLI tool used to easily set up the boilerplate of new Next.js apps.",
4-
"version": "0.2.7",
4+
"version": "0.2.8",
55
"author": "Anders Kjær Damgaard @akd-io",
66
"bugs": "https://github.com/akd-io/create-next-stack/issues",
77
"homepage": "https://github.com/akd-io/create-next-stack",

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

Lines changed: 2 additions & 2 deletions
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 { tenMinutes } from "./timeout"
4+
import { fifteenMinutes } 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: tenMinutes,
16+
timeout: fifteenMinutes,
1717
cwd: runDirectory,
1818
stdout: "inherit",
1919
stderr: "inherit",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export const tenMinutes = 1000 * 60 * 10
1+
export const fifteenMinutes = 1000 * 60 * 15
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

Lines changed: 2 additions & 2 deletions
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 { tenMinutes } from "../../helpers/timeout"
3+
import { fifteenMinutes } from "../../helpers/timeout"
44

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

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

Lines changed: 2 additions & 2 deletions
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 { tenMinutes } from "../../helpers/timeout"
3+
import { fifteenMinutes } from "../../helpers/timeout"
44

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

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

Lines changed: 2 additions & 2 deletions
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 { tenMinutes } from "../../helpers/timeout"
3+
import { fifteenMinutes } from "../../helpers/timeout"
44

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

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

Lines changed: 2 additions & 2 deletions
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 { tenMinutes } from "../../helpers/timeout"
3+
import { fifteenMinutes } from "../../helpers/timeout"
44

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

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

Lines changed: 2 additions & 2 deletions
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 { tenMinutes } from "../../helpers/timeout"
3+
import { fifteenMinutes } from "../../helpers/timeout"
44

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

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

Lines changed: 2 additions & 2 deletions
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 { tenMinutes } from "../../helpers/timeout"
3+
import { fifteenMinutes } from "../../helpers/timeout"
44

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

0 commit comments

Comments
 (0)