fix: Deno configurations

This commit is contained in:
Andras Bacsai
2022-04-20 22:23:25 +02:00
parent 14d79031c1
commit 7f8428cd17
6 changed files with 55 additions and 17 deletions

View File

@@ -156,11 +156,11 @@ export function findBuildPack(pack, packageManager = 'npm') {
if (pack === 'deno') {
return {
...metaData,
installCommand: `yarn install`,
buildCommand: `yarn build`,
installCommand: null,
buildCommand: null,
startCommand: null,
publishDirectory: `_site`,
port: 80
publishDirectory: null,
port: 8000
};
}
return {