From 62df51df72f79e73c813a217a3f0183fe4eb2ceb Mon Sep 17 00:00:00 2001 From: Fabio Rigamonti <73019897+fabiorigam@users.noreply.github.com> Date: Wed, 2 Oct 2024 15:46:04 +0200 Subject: [PATCH] fix: update changeset and package.json files (#1377) * fix: update changeset and package.json files * fix: update node version on .nvmrc --- .changeset/config.json | 8 +++++++- .nvmrc | 2 +- apps/sdk-cloudflare-integration/package.json | 1 + apps/sdk-hardhat-integration/package.json | 3 ++- apps/sdk-nextjs-integration/package.json | 3 ++- apps/sdk-node-integration/package.json | 3 ++- 6 files changed, 15 insertions(+), 5 deletions(-) diff --git a/.changeset/config.json b/.changeset/config.json index fce1c2654..56357c51d 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -7,5 +7,11 @@ "access": "public", "baseBranch": "main", "updateInternalDependencies": "patch", - "ignore": [] + "ignore": [ + "docs", + "sdk-cloudflare-integration", + "sdk-hardhat-integration", + "sdk-nextjs-integration", + "sdk-node-integration" + ] } diff --git a/.nvmrc b/.nvmrc index cbd89321d..b714151ef 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -v18.17.0 \ No newline at end of file +v18.18.0 \ No newline at end of file diff --git a/apps/sdk-cloudflare-integration/package.json b/apps/sdk-cloudflare-integration/package.json index f64fe5856..5bda9de9b 100644 --- a/apps/sdk-cloudflare-integration/package.json +++ b/apps/sdk-cloudflare-integration/package.json @@ -2,6 +2,7 @@ "name": "sdk-cloudflare-integration", "description": "An example app of how to integrate the VeChain SDK with Cloudflare Workers", "version": "1.0.0-beta.32", + "private": true, "author": "VeChain Foundation", "license": "MIT", "scripts": { diff --git a/apps/sdk-hardhat-integration/package.json b/apps/sdk-hardhat-integration/package.json index 66fb5fdaf..307e395e5 100644 --- a/apps/sdk-hardhat-integration/package.json +++ b/apps/sdk-hardhat-integration/package.json @@ -1,7 +1,8 @@ { - "name": "vechain-sdk-hardhat-integration", + "name": "sdk-hardhat-integration", "description": "An example app of how to use the @vechain/sdk-hardhat-plugin to interact with the VeChainThor blockchain", "version": "1.0.0-beta.32", + "private": true, "main": "index.js", "author": "VeChain Foundation", "license": "MIT", diff --git a/apps/sdk-nextjs-integration/package.json b/apps/sdk-nextjs-integration/package.json index 16832707a..b1eb93ec2 100644 --- a/apps/sdk-nextjs-integration/package.json +++ b/apps/sdk-nextjs-integration/package.json @@ -1,7 +1,8 @@ { - "name": "vechain-sdk-nextjs", + "name": "sdk-nextjs-integration", "description": "An example app of how to integrate the VeChain SDK with Next.js", "version": "1.0.0-beta.32", + "private": true, "author": "VeChain Foundation", "license": "MIT", "scripts": { diff --git a/apps/sdk-node-integration/package.json b/apps/sdk-node-integration/package.json index 22da59f20..32b857c94 100644 --- a/apps/sdk-node-integration/package.json +++ b/apps/sdk-node-integration/package.json @@ -1,7 +1,8 @@ { - "name": "sdk-user", + "name": "sdk-node-integration", "description": "An example app of how to integrate the VeChain SDK with Node.js", "version": "1.0.0-beta.32", + "private": true, "main": "dist/index.js", "types": "src/index.ts", "license": "MIT",