We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e254e65 commit fa5bdbdCopy full SHA for fa5bdbd
Makefile
@@ -0,0 +1,6 @@
1
+.PHONY: run
2
+
3
+run:
4
+ @command -v npx >/dev/null 2>&1 || { echo "npx not found. Please install Node.js and npm."; exit 1; }
5
+ @npx eleventy --version >/dev/null 2>&1 || { echo "Eleventy not found. Installing dependencies..."; npm install; }
6
+ npm run dev
0 commit comments