UNPKG

create-vitnode-app

Version:

Create a new VitNode app in seconds.

35 lines (34 loc) 698 B
{ "$schema": "https://turbo.build/schema.json", "ui": "tui", "globalDependencies": [".env"], "tasks": { "build": { "outputs": [".next/**", "!.next/cache/**", "dist/**"], "dependsOn": ["^build"] }, "start": { "outputs": [".next/**", "!.next/cache/**", "dist/**"], "dependsOn": ["^start"], "persistent": true }, "lint": { "dependsOn": ["^lint"] }, "lint:fix": { "dependsOn": ["^lint:fix"] }, "config:init": { "dependsOn": ["^config:init"], "cache": false }, "db": { "dependsOn": ["^db"], "cache": false }, "dev": { "cache": false, "persistent": true } } }