How to use the @ts-common/azure-js-dev-tools.changeClonedDependenciesTo function in @ts-common/azure-js-dev-tools

To help you get started, we’ve selected a few @ts-common/azure-js-dev-tools examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Azure / azure-sdk-for-js / .scripts / local.ts View on Github external
import { resolvePath, changeClonedDependenciesTo } from "@ts-common/azure-js-dev-tools";

const packagePath: string = resolvePath(__dirname, "..");
changeClonedDependenciesTo(packagePath, "local");
github Azure / autorest.typescript / .scripts / local.ts View on Github external
import { changeClonedDependenciesTo } from "@ts-common/azure-js-dev-tools";
import { dependenciesOptions } from "./dependenciesOptions";

changeClonedDependenciesTo(__dirname, "local", dependenciesOptions);