From 1721441ca96caf34e344ddeb23f72fcf1e53853d Mon Sep 17 00:00:00 2001 From: Michael Dawson Date: Tue, 16 May 2023 19:19:06 -0400 Subject: [PATCH] fix: remove references to npm pack The pack target no longer exists and related packing is built into the npm build script target Signed-off-by: Michael Dawson --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c051e26e..1e6823c5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -9,7 +9,7 @@ $ npm install Build the typescript and package it for distribution. ```bash -$ npm run build && npm run pack +$ npm run build ``` Run the tests :heavy_check_mark: @@ -49,7 +49,7 @@ $ npm run all IMPORTANT: Be sure to commit the result of: ```bash -$ npm run pack +$ npm run build ``` Otherwise PR checks will fail.