From fb1e41497f72bbf453ef5646b8e38565c997a81d Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Thu, 21 Dec 2023 15:29:44 -0800 Subject: [PATCH] chore: update commands --- netlify.toml | 6 +++++- package.json | 6 +++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/netlify.toml b/netlify.toml index 33d4ec97..37b15fb1 100644 --- a/netlify.toml +++ b/netlify.toml @@ -59,4 +59,8 @@ for = "/contribute.json" X-Frame-Options = "DENY" X-XSS-Protection = "1; mode=block" Referrer-Policy = "strict-origin-when-cross-origin" - Permissions-Policy = "autoplay=(), camera=(), gyroscope=(), magnetometer=(), microphone=(), payment=(), publickey-credentials-get=()" \ No newline at end of file + Permissions-Policy = "autoplay=(), camera=(), gyroscope=(), magnetometer=(), microphone=(), payment=(), publickey-credentials-get=()" + +[build] + command = "npm run build" + publish = "_site" \ No newline at end of file diff --git a/package.json b/package.json index 1232920a..29a5d3cb 100644 --- a/package.json +++ b/package.json @@ -4,11 +4,11 @@ "description": "The source for my personal site, blog and portfolio. Built using 11ty and hosted on Netlify.", "type": "module", "scripts": { - "start": "NODE_ENV=development npx tailwindcss -i ./tailwind.css -o src/assets/styles/tailwind.css && rm -rf .cache && ELEVENTY_PRODUCTION=false eleventy --serve", - "debug": "NODE_ENV=development npx tailwindcss -i ./tailwind.css -o src/styles/tailwind.css && DEBUG=Eleventy* npx @11ty/eleventy --serve", + "start": "ELEVENTY_PRODUCTION=false eleventy --serve && NODE_ENV=development npx tailwindcss -i ./tailwind.css -o src/assets/styles/tailwind.css && rm -rf .cache", + "debug": "DEBUG=Eleventy* npx @11ty/eleventy --serve && NODE_ENV=development npx tailwindcss -i ./tailwind.css -o src/styles/tailwind.css", "lint": "eslint .", "lint:fix": "eslint . --fix", - "build": "NODE_ENV=production npx tailwindcss -i ./tailwind.css -c ./tailwind.config.js -o src/styles/tailwind.css --minify && ELEVENTY_PRODUCTION=true eleventy" + "build": "ELEVENTY_PRODUCTION=true eleventy && NODE_ENV=production npx tailwindcss -i ./tailwind.css -c ./tailwind.config.js -o src/styles/tailwind.css --minify" }, "keywords": [ "11ty",