From 68f5b32876f0fb85399e3b71ccd7023b46110259 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 3 May 2022 22:49:52 +0200 Subject: [PATCH] fix: missing node versions --- package.json | 2 +- src/lib/buildPacks/common.ts | 6 ++++-- src/lib/locales/en.json | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index ccc938119..ece20c8eb 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "coolify", "description": "An open-source & self-hostable Heroku / Netlify alternative.", - "version": "2.6.2", + "version": "2.6.3", "license": "AGPL-3.0", "scripts": { "dev": "docker-compose -f docker-compose-dev.yaml up -d && cross-env NODE_ENV=development & svelte-kit dev --host 0.0.0.0", diff --git a/src/lib/buildPacks/common.ts b/src/lib/buildPacks/common.ts index 6ac518136..cb47b0dd5 100644 --- a/src/lib/buildPacks/common.ts +++ b/src/lib/buildPacks/common.ts @@ -8,14 +8,16 @@ import { staticDeployments } from '$lib/components/common'; const staticApps = ['static', 'react', 'vuejs', 'svelte', 'gatsby', 'astro', 'eleventy']; const nodeBased = [ 'react', + 'preact', 'vuejs', 'svelte', 'gatsby', - 'php', 'astro', 'eleventy', 'node', - 'nestjs' + 'nestjs', + 'nuxtjs', + 'nextjs' ]; export function makeLabelForStandaloneApplication({ diff --git a/src/lib/locales/en.json b/src/lib/locales/en.json index a7adfcef0..0a535db35 100644 --- a/src/lib/locales/en.json +++ b/src/lib/locales/en.json @@ -184,7 +184,7 @@ "git_source": "Git Source", "git_repository": "Git Repository", "build_pack": "Build Pack", - "base_image": "Deplyoment Image", + "base_image": "Deployment Image", "base_image_explainer": "Image that will be used for the deployment.", "base_build_image": "Build Image", "base_build_image_explainer": "Image that will be used during the build process.",