Skip to content

Commit 63bc3fa

Browse files
authored
Merge pull request #197 from akd-io/release/0.2.5
Release v0.2.5
2 parents b14375e + be73657 commit 63bc3fa

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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.4",
4+
"version": "0.2.5",
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/main/plugins/create-next-stack/add-content/pages/generate-app.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ export const generateApp = (inputs: ValidCNSInputs): string => {
3030
const App = ({ Component, pageProps }: AppProps) => {
3131
return (
3232
<>
33-
${componentsStart}
33+
${componentsStart.join("\n")}
3434
<Component {...pageProps} />
35-
${componentsEnd}
35+
${componentsEnd.join("\n")}
3636
</>
3737
)
3838
};

website/templates/LandingPage/components/TechnologiesForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ export const TechnologiesForm: React.FC = () => {
203203
formData
204204
) => {
205205
const calculateCommand = (formData: TechnologiesFormData) => {
206-
const args = ["npx", "create-next-stack@0.2.4"]
206+
const args = ["npx", "create-next-stack@0.2.5"]
207207

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

0 commit comments

Comments
 (0)