From 99e6acc74075ea3197f9a796d41f0e4635cf4a1f Mon Sep 17 00:00:00 2001 From: Sergei Voronezhskii Date: Fri, 30 Apr 2021 11:48:23 +0300 Subject: [PATCH] Fixed Typo in lib-react-native install script --- CHANGELOG.md | 6 ++++++ lerna.json | 2 +- packages/core/package.json | 5 ++++- packages/lib-node/package.json | 5 ++++- packages/lib-react-native/install.js | 1 + packages/lib-react-native/package.json | 5 ++++- packages/lib-web/package.json | 11 +++++++---- packages/tests-node/package.json | 2 +- packages/tests-react-native/package.json | 2 +- packages/tests-web/package.json | 2 +- packages/tests/package.json | 2 +- 11 files changed, 31 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64aeffc0..09ae6f03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## [1.14.2] – 2021-04-30 + +### Fixed + +- Typo in lib-react-native install script + ## [1.14.1] – 2021-04-28 ### Fixed diff --git a/lerna.json b/lerna.json index 1f7d4a1e..93ffe866 100644 --- a/lerna.json +++ b/lerna.json @@ -3,7 +3,7 @@ "packages": [ "packages/*" ], - "version": "1.14.1", + "version": "1.14.2", "command": { "version": { "message": "Release", diff --git a/packages/core/package.json b/packages/core/package.json index 7fee740c..b137cd7e 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@tonclient/core", - "version": "1.14.1", + "version": "1.14.2", "description": "TON Client for Java Script", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -11,6 +11,9 @@ "scripts": { "prepublishOnly": "npm i && tsc" }, + "publishConfig": { + "access": "public" + }, "keywords": [ "TON", "Client", diff --git a/packages/lib-node/package.json b/packages/lib-node/package.json index d0b25015..dc3c56de 100644 --- a/packages/lib-node/package.json +++ b/packages/lib-node/package.json @@ -1,6 +1,6 @@ { "name": "@tonclient/lib-node", - "version": "1.14.1", + "version": "1.14.2", "description": "TON Client NodeJs AddOn", "repository": { "type": "git", @@ -9,6 +9,9 @@ "scripts": { "postinstall": "node install.js" }, + "publishConfig": { + "access": "public" + }, "keywords": [ "TON", "Client", diff --git a/packages/lib-react-native/install.js b/packages/lib-react-native/install.js index 62ebcfd2..f89d3cba 100644 --- a/packages/lib-react-native/install.js +++ b/packages/lib-react-native/install.js @@ -24,6 +24,7 @@ const os = require('os'); const binariesSource = process.env.TON_CLIENT_BIN_SRC || 'https://binaries.tonlabs.io'; const binariesVersion = process.env.TON_CLIENT_BIN_VERSION || require('./package.json') .version + .split('.') .slice(0, 2) .join('_'); const binariesHomePath = path.resolve(os.homedir(), '.tonlabs', 'binaries', binariesVersion); diff --git a/packages/lib-react-native/package.json b/packages/lib-react-native/package.json index 4e84cf99..62316c00 100644 --- a/packages/lib-react-native/package.json +++ b/packages/lib-react-native/package.json @@ -1,6 +1,6 @@ { "name": "@tonclient/lib-react-native", - "version": "1.14.1", + "version": "1.14.2", "description": "TON Client React Native Module", "main": "index.js", "repository": { @@ -10,6 +10,9 @@ "scripts": { "postinstall": "node install.js" }, + "publishConfig": { + "access": "public" + }, "keywords": [ "TON", "Client", diff --git a/packages/lib-web/package.json b/packages/lib-web/package.json index 6497c816..d60be51e 100644 --- a/packages/lib-web/package.json +++ b/packages/lib-web/package.json @@ -1,15 +1,18 @@ { "name": "@tonclient/lib-web", - "version": "1.14.1", + "version": "1.14.2", "description": "TON Client WASM module for browsers", "main": "index.js", - "scripts": { - "postinstall": "node install.js" - }, "repository": { "type": "git", "url": "https://github.com/tonlabs/ton-client-js.git" }, + "scripts": { + "postinstall": "node install.js" + }, + "publishConfig": { + "access": "public" + }, "keywords": [ "TON", "Client", diff --git a/packages/tests-node/package.json b/packages/tests-node/package.json index 057b19fb..915066bf 100644 --- a/packages/tests-node/package.json +++ b/packages/tests-node/package.json @@ -1,6 +1,6 @@ { "name": "@tonclient/tests-node", - "version": "1.14.1", + "version": "1.14.2", "private": true, "description": "TON Client Tests runner on NodeJs", "main": "index.js", diff --git a/packages/tests-react-native/package.json b/packages/tests-react-native/package.json index 063b8ee3..556766ca 100644 --- a/packages/tests-react-native/package.json +++ b/packages/tests-react-native/package.json @@ -1,6 +1,6 @@ { "name": "@tonclient/tests-react-native", - "version": "1.14.1", + "version": "1.14.2", "private": true, "main": "index.js", "browser": true, diff --git a/packages/tests-web/package.json b/packages/tests-web/package.json index a73dbd68..ccdb45b2 100644 --- a/packages/tests-web/package.json +++ b/packages/tests-web/package.json @@ -1,6 +1,6 @@ { "name": "@tonclient/tests-web", - "version": "1.14.1", + "version": "1.14.2", "private": true, "description": "TON Client WASM module tests runner", "scripts": { diff --git a/packages/tests/package.json b/packages/tests/package.json index 1752fe96..e2091c07 100644 --- a/packages/tests/package.json +++ b/packages/tests/package.json @@ -1,6 +1,6 @@ { "name": "@tonclient/tests", - "version": "1.14.1", + "version": "1.14.2", "private": true, "description": "TON Client Tests", "main": "dist/index.js",