From b413562a7e6f7a908c4e800cd837f2df2deffb3f Mon Sep 17 00:00:00 2001 From: Josh Gummersall Date: Wed, 2 Jun 2021 09:48:20 -0700 Subject: [PATCH] chore: add link/unlink scripts (#3720) --- package.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 8dde1fe5e8..279959be8d 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,8 @@ "build": "wsrun -e -m -t build", "build-docs": "wsrun -e -m build-docs", "clean": "wsrun -m clean", + "dev:link": "wsrun --bin=yarn link", + "dev:unlink": "wsrun --bin=yarn unlink", "functional-test": "yarn build && yarn workspace functional-tests test", "lint": "wsrun -m -l lint --quiet", "package": "wsrun -e -t -l --if is-not-private --bin yarn pack", @@ -23,16 +25,16 @@ "test:consumer": "yarn workspace consumer-test test", "test:devops": "npm-run-all test:mocha:junit test:nyc:cobertura", "test:github": "npm-run-all test:mocha:min test:runtime:min test:nyc:lcov", - "test:orchestrator": "yarn workspace botbuilder-ai-orchestrator test", - "test:runtime": "wsrun -m -p \"botbuilder-dialogs-adaptive-runtime*\" -t test", - "test:runtime:min": "wsrun -m -p \"botbuilder-dialogs-adaptive-runtime*\" -t test:min", "test:mocha": "nyc --silent mocha \"libraries/@(adaptive*|bot*)/tests/**/*.test.js\" --exit --check-leaks", "test:mocha:junit": "yarn test:mocha --reporter mocha-junit-reporter --reporter-options includePending=true", "test:mocha:min": "yarn test:mocha --reporter dot", "test:nyc:cobertura": "nyc report --reporter=cobertura", "test:nyc:lcov": "nyc report --reporter=text-lcov > .lcov.info", "test:nyc:report": "nyc report", + "test:orchestrator": "yarn workspace botbuilder-ai-orchestrator test", "test:repoutils": "yarn workspace botbuilder-repo-utils test", + "test:runtime": "wsrun -m -p \"botbuilder-dialogs-adaptive-runtime*\" -t test", + "test:runtime:min": "wsrun -m -p \"botbuilder-dialogs-adaptive-runtime*\" -t test:min", "test:schemas": "mocha libraries/botbuilder-dialogs-declarative/tests/schemaMergeTest.js --exit --bail", "update-versions": "yarn workspace botbuilder-repo-utils update-versions" },