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]
publish = "_site"
command = "DEBUG=* eleventy"
command = "npm run build"

View File

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