From 4c82771888c49220d12064e19512e019013ee2ed Mon Sep 17 00:00:00 2001 From: Seth Toda Date: Wed, 20 Oct 2021 11:45:13 -0600 Subject: [PATCH] APIGOV-20804: Fix build script --- bitbucket/bitbucket-extension/package.json | 2 +- layer7/layer7-extension/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitbucket/bitbucket-extension/package.json b/bitbucket/bitbucket-extension/package.json index 432ce1f..8d60543 100644 --- a/bitbucket/bitbucket-extension/package.json +++ b/bitbucket/bitbucket-extension/package.json @@ -9,7 +9,7 @@ "url": "https://axway.com" }, "scripts": { - "build": "yarn tsc && yarn copy:assets", + "build": "npm run tsc && npm run copy:assets", "copy:assets": "npx cpx 'src/assets/**' 'dist/src/assets'", "test": "ts-mocha --timeout 10000", "test:coverage": "nyc yarn test", diff --git a/layer7/layer7-extension/package.json b/layer7/layer7-extension/package.json index 3f28513..1d3ec1b 100644 --- a/layer7/layer7-extension/package.json +++ b/layer7/layer7-extension/package.json @@ -9,7 +9,7 @@ "url": "https://axway.com" }, "scripts": { - "build": "yarn tsc && yarn copy:assets", + "build": "npm run tsc && npm run copy:assets", "copy:assets": "npx cpx 'src/assets/**' 'dist/src/assets'", "test": "ts-mocha --timeout 10000", "test:coverage": "nyc yarn test",