From f8c2965e4029b49a0f47c5e7ce175a7ea8f4e22a Mon Sep 17 00:00:00 2001 From: Michael Stillwell Date: Fri, 20 Mar 2020 19:58:11 +0000 Subject: [PATCH] Fix README --- packages/linter/README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/packages/linter/README.md b/packages/linter/README.md index 7b7347342..22088da92 100644 --- a/packages/linter/README.md +++ b/packages/linter/README.md @@ -15,9 +15,9 @@ Command-line (local build): ```sh # from the amp-toolbox root $ npm install -$ npm run build # generates packages/linter/src/cli.js +$ npm run build # generates packages/linter/dist/cli.js $ cd packages/linter -$ node src/cli.js https://amp.dev/ +$ node dist/cli.js https://amp.dev/ ``` Command-line (from npm): @@ -57,13 +57,12 @@ performed. These scripts can be invoked in the usual way by `npm run XXX` if `npm install` is run in this directory. They can also be invoked from the `amp-toolbox` root -directory without installing locally by `lerna run --scope '*/toolbox-linter' -XXX`. (lerna sets the `PATH` so that the required binaries are available.) +directory without installing locally by `lerna run --scope '*/toolbox-linter' XXX`. (lerna sets the `PATH` so that the required binaries are available.) #### `build` Populates the `dist` directory with the appropriate `*.js` and `*.d.ts` files. -Note that tests are *not* included. This script is intended to be used when +Note that tests are _not_ included. This script is intended to be used when building the npm package. #### `transpile`