diff --git a/README.md b/README.md index d7f73b0..8427967 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ To ensure that you can develop SPFx solutions, you may use the **check dependenc This action will check if you have the required dependencies such as: -- Node version: 16 or 18 +- Node version: 18 - NPM dependencies: - gulp - yo diff --git a/package-lock.json b/package-lock.json index 7bc5a41..876732c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "viva-connections-toolkit", - "version": "3.1.0", + "version": "3.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "viva-connections-toolkit", - "version": "3.1.0", + "version": "3.2.0", "license": "MIT", "dependencies": { "@pnp/cli-microsoft365": "6.11.0", diff --git a/package.json b/package.json index defbf71..860fd58 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "viva-connections-toolkit", "displayName": "SharePoint Framework Toolkit", "description": "SharePoint Framework Toolkit aims to boost your productivity in developing and managing SharePoint Framework solutions helping at every stage of your development flow, from setting up your development workspace to deploying a solution straight to your tenant without the need to leave VS Code and now even create a CI/CD pipeline to introduce automate deployment of your app. This toolkit is provided by the community.", - "version": "3.1.0", + "version": "3.2.0", "publisher": "m365pnp", "preview": false, "homepage": "https://github.com/pnp/vscode-viva", diff --git a/src/services/Dependencies.ts b/src/services/Dependencies.ts index 805f26a..7fa5770 100644 --- a/src/services/Dependencies.ts +++ b/src/services/Dependencies.ts @@ -8,8 +8,8 @@ import { TerminalCommandExecuter } from './TerminalCommandExecuter'; import { Extension } from './Extension'; -const SUPPORTED_VERSIONS = ['16.13', '18.17.1']; -const DEPENDENCIES = ['gulp-cli', 'yo', '@microsoft/generator-sharepoint']; +const SUPPORTED_VERSIONS = ['18.17.1']; +const DEPENDENCIES = ['gulp-cli@3.0.0', 'yo@5.0.0', '@microsoft/generator-sharepoint@1.19.0']; export class Dependencies {