From 76def09a2882e8b028efac022b2f074f41edf32e Mon Sep 17 00:00:00 2001 From: Caleb Sander <caleb.sander@gmail.com> Date: Fri, 15 Jan 2021 18:33:48 -0500 Subject: [PATCH] Clarify that npm run make is an alias --- specs/make/make.md | 1 + 1 file changed, 1 insertion(+) diff --git a/specs/make/make.md b/specs/make/make.md index 1a8b288..be49004 100644 --- a/specs/make/make.md +++ b/specs/make/make.md @@ -83,6 +83,7 @@ Implement `make` **asynchronously** in Node.js. ### Rules Your program will be run as `npm run make makefile.js target1 ... targetN`. +`npm run make` runs the `make.js` program with `node`. `makefile.js` is a Node.js file that exports an array of all available rules to build files. Each rule has the following structure: ```ts -- GitLab