Clean up the commands

This commit is contained in:
Zach Leatherman 2022-03-03 17:14:08 -06:00
parent a0e4cd9659
commit dc3e7c49f2
2 changed files with 7 additions and 6 deletions

View File

@ -1,3 +1,3 @@
[build] [build]
publish = "_site" publish = "_site"
command = "DEBUG=* eleventy" command = "npm run build"

View File

@ -3,11 +3,12 @@
"version": "6.0.0", "version": "6.0.0",
"description": "A starter repository for a blog web site using the Eleventy static site generator.", "description": "A starter repository for a blog web site using the Eleventy static site generator.",
"scripts": { "scripts": {
"build": "eleventy", "build": "npx @11ty/eleventy",
"watch": "eleventy --watch", "bench": "DEBUG=Eleventy:Benchmark* npx @11ty/eleventy",
"serve": "eleventy --serve", "watch": "npx @11ty/eleventy --watch",
"start": "eleventy --serve", "serve": "npx @11ty/eleventy --serve",
"debug": "DEBUG=* eleventy" "start": "npx @11ty/eleventy --serve",
"debug": "DEBUG=* npx @11ty/eleventy"
}, },
"repository": { "repository": {
"type": "git", "type": "git",