Skip to content

Commit

Permalink
Clean up the commands
Browse files Browse the repository at this point in the history
  • Loading branch information
zachleat committed Mar 3, 2022
1 parent a0e4cd9 commit dc3e7c4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion netlify.toml
@@ -1,3 +1,3 @@
[build]
publish = "_site"
command = "DEBUG=* eleventy"
command = "npm run build"
11 changes: 6 additions & 5 deletions package.json
Expand Up @@ -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",
Expand Down

0 comments on commit dc3e7c4

Please sign in to comment.