From 03c535e5a5405a4d5aa4864ffa2a03630b1f28d8 Mon Sep 17 00:00:00 2001 From: beyro Date: Fri, 10 Jan 2025 14:29:05 +0100 Subject: [PATCH] Specify v2 in npm/npx commands This change is only needed so long as NPM is defaulting to version 1. --- docs/quick-start.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/quick-start.md b/docs/quick-start.md index d31d271..cd716f1 100644 --- a/docs/quick-start.md +++ b/docs/quick-start.md @@ -9,21 +9,21 @@ npm install -g typescript tsc --init mkdir src npm install --save-dev @types/xrm -npm install --save dataverse-ify +npm install --save dataverse-ify@2 ``` Now you need to auth against Dataverse using: ``` -npx dataverse-auth [environment] +npx dataverse-auth@2 [environment] ``` E.g. ``` -npx dataverse-auth contosoorg.crm.dynamics.com +npx dataverse-auth@2 contosoorg.crm.dynamics.com ``` Now you can generate your types ``` -npx dataverse-gen init +npx dataverse-gen@2 init ``` Follow the instructions - you can select the entities/actions/functions to include in the config