From e8e0aa811fcd9f177cb7712819f41e26c0ad10dc Mon Sep 17 00:00:00 2001 From: aniket-engg Date: Wed, 12 Aug 2020 14:47:23 +0530 Subject: [PATCH 1/4] skip git enabled for lerna --- lerna.json | 1 + 1 file changed, 1 insertion(+) diff --git a/lerna.json b/lerna.json index b307e6dba7..7d35b87525 100644 --- a/lerna.json +++ b/lerna.json @@ -3,6 +3,7 @@ "version": "independent", "command": { "publish": { + "skipGit": true, "ignoreChanges": ["ignored-file", "*.md"], "message": "remix-libs(release): publish version" } From da3351c4f3ef2873a13bacf2fb9ed985fdc8bf02 Mon Sep 17 00:00:00 2001 From: aniket-engg Date: Wed, 12 Aug 2020 15:09:29 +0530 Subject: [PATCH 2/4] access public --- lerna.json | 1 - package.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lerna.json b/lerna.json index 7d35b87525..b307e6dba7 100644 --- a/lerna.json +++ b/lerna.json @@ -3,7 +3,6 @@ "version": "independent", "command": { "publish": { - "skipGit": true, "ignoreChanges": ["ignored-file", "*.md"], "message": "remix-libs(release): publish version" } diff --git a/package.json b/package.json index 96d37b4872..a63949fdb0 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,7 @@ "lint:libs": "nx run-many --target=lint --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver", "build:libs": "nx run-many --target=build --parallel=false --with-deps=true --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver", "test:libs": "nx run-many --target=test --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver", - "publish:libs": "npm run build:libs; lerna publish", + "publish:libs": "npm run build:libs; lerna publish --skip-git --access public", "browsertest": "sleep 5 && npm run nightwatch_local", "csslint": "csslint --ignore=order-alphabetical --errors='errors,duplicate-properties,empty-rules' --exclude-list='apps/remix-ide/assets/css/font-awesome.min.css' apps/remix-ide/assets/css/", "downloadsolc_root": "wget --no-check-certificate https://solc-bin.ethereum.org/bin/soljson-v0.6.6+commit.6c089d02.js -O ./apps/remix-ide/soljson.js", From c9a4bc7dbeaa5b9ed7bb763ea4d24fac2ef996d5 Mon Sep 17 00:00:00 2001 From: aniket-engg Date: Wed, 12 Aug 2020 15:17:14 +0530 Subject: [PATCH 3/4] publishconfig access to public --- libs/remix-analyzer/package.json | 3 +++ libs/remix-astwalker/package.json | 3 +++ libs/remix-debug/package.json | 3 +++ libs/remix-lib/package.json | 3 +++ libs/remix-simulator/package.json | 3 +++ libs/remix-solidity/package.json | 3 +++ libs/remix-tests/package.json | 3 +++ libs/remix-url-resolver/package.json | 3 +++ package.json | 2 +- 9 files changed, 25 insertions(+), 1 deletion(-) diff --git a/libs/remix-analyzer/package.json b/libs/remix-analyzer/package.json index e6d4d3f9ae..aaaeaa5912 100644 --- a/libs/remix-analyzer/package.json +++ b/libs/remix-analyzer/package.json @@ -22,6 +22,9 @@ "@remix-project/remix-astwalker": "0.0.24", "@remix-project/remix-lib": "0.4.29" }, + "publishConfig": { + "access": "public" + }, "scripts": { "build": "tsc", "test": "./../../node_modules/.bin/ts-node --require tsconfig-paths/register ./../../node_modules/.bin/tape ./test/tests.ts" diff --git a/libs/remix-astwalker/package.json b/libs/remix-astwalker/package.json index 6f75981a0b..c65bcea719 100644 --- a/libs/remix-astwalker/package.json +++ b/libs/remix-astwalker/package.json @@ -7,6 +7,9 @@ "build": "tsc", "test": "./../../node_modules/.bin/nyc --reporter=lcov --require ts-node/register --require tsconfig-paths/register ./../../node_modules/.bin/tape ./tests/*.ts | ./../../node_modules/.bin/tap-spec; ./../../node_modules/.bin/nyc report ---reporter=text" }, + "publishConfig": { + "access": "public" + }, "repository": { "type": "git", "url": "git+https://github.com/ethereum/remix-project.git" diff --git a/libs/remix-debug/package.json b/libs/remix-debug/package.json index bf5ed83e9b..edd30127a8 100644 --- a/libs/remix-debug/package.json +++ b/libs/remix-debug/package.json @@ -39,6 +39,9 @@ "scripts": { "test": "./../../node_modules/.bin/tape --require tsconfig-paths/register ./test/tests.js" }, + "publishConfig": { + "access": "public" + }, "repository": { "type": "git", "url": "git+https://github.com/ethereum/remix-project.git" diff --git a/libs/remix-lib/package.json b/libs/remix-lib/package.json index 5a4b528b83..de5db95770 100644 --- a/libs/remix-lib/package.json +++ b/libs/remix-lib/package.json @@ -38,6 +38,9 @@ "scripts": { "test": "./../../node_modules/.bin/tape ./test/tests.js" }, + "publishConfig": { + "access": "public" + }, "repository": { "type": "git", "url": "git+https://github.com/ethereum/remix-project.git" diff --git a/libs/remix-simulator/package.json b/libs/remix-simulator/package.json index d45dd05836..79091044ae 100644 --- a/libs/remix-simulator/package.json +++ b/libs/remix-simulator/package.json @@ -43,6 +43,9 @@ "scripts": { "test": "./../../node_modules/.bin/mocha --require tsconfig-paths/register test/" }, + "publishConfig": { + "access": "public" + }, "bin": { "ethsim": "./bin/ethsim", "remix-simulator": "./bin/ethsim" diff --git a/libs/remix-solidity/package.json b/libs/remix-solidity/package.json index f24d2bcb6c..855e72b974 100644 --- a/libs/remix-solidity/package.json +++ b/libs/remix-solidity/package.json @@ -37,6 +37,9 @@ "build": "tsc", "test": "./../../node_modules/.bin/tape ./test/tests.js" }, + "publishConfig": { + "access": "public" + }, "repository": { "type": "git", "url": "git+https://github.com/ethereum/remix-project.git" diff --git a/libs/remix-tests/package.json b/libs/remix-tests/package.json index d077082987..f395001630 100644 --- a/libs/remix-tests/package.json +++ b/libs/remix-tests/package.json @@ -21,6 +21,9 @@ "build": "tsc", "test": "./../../node_modules/.bin/jest" }, + "publishConfig": { + "access": "public" + }, "repository": { "type": "git", "url": "git+https://github.com/ethereum/remix-project.git" diff --git a/libs/remix-url-resolver/package.json b/libs/remix-url-resolver/package.json index 0d7c3b0158..47a676fc27 100644 --- a/libs/remix-url-resolver/package.json +++ b/libs/remix-url-resolver/package.json @@ -8,6 +8,9 @@ "build": "tsc", "test": "./../../node_modules/.bin/mocha --require ts-node/register --require tsconfig-paths/register tests/*.ts -t 300000" }, + "publishConfig": { + "access": "public" + }, "repository": { "type": "git", "url": "git+https://github.com/ethereum/remix-project.git" diff --git a/package.json b/package.json index a63949fdb0..57d4ccc93c 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,7 @@ "lint:libs": "nx run-many --target=lint --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver", "build:libs": "nx run-many --target=build --parallel=false --with-deps=true --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver", "test:libs": "nx run-many --target=test --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver", - "publish:libs": "npm run build:libs; lerna publish --skip-git --access public", + "publish:libs": "npm run build:libs; lerna publish --skip-git", "browsertest": "sleep 5 && npm run nightwatch_local", "csslint": "csslint --ignore=order-alphabetical --errors='errors,duplicate-properties,empty-rules' --exclude-list='apps/remix-ide/assets/css/font-awesome.min.css' apps/remix-ide/assets/css/", "downloadsolc_root": "wget --no-check-certificate https://solc-bin.ethereum.org/bin/soljson-v0.6.6+commit.6c089d02.js -O ./apps/remix-ide/soljson.js", From bd29b4ffbdf7629f471a6fb85a890fcaaf29d8b1 Mon Sep 17 00:00:00 2001 From: aniket-engg Date: Wed, 12 Aug 2020 15:29:03 +0530 Subject: [PATCH 4/4] bump versions after publish --- libs/remix-analyzer/package.json | 2 +- libs/remix-astwalker/package.json | 2 +- libs/remix-debug/package.json | 2 +- libs/remix-lib/package.json | 2 +- libs/remix-simulator/package.json | 2 +- libs/remix-solidity/package.json | 2 +- libs/remix-tests/package.json | 2 +- libs/remix-url-resolver/package.json | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/libs/remix-analyzer/package.json b/libs/remix-analyzer/package.json index aaaeaa5912..6b09c5338e 100644 --- a/libs/remix-analyzer/package.json +++ b/libs/remix-analyzer/package.json @@ -1,6 +1,6 @@ { "name": "@remix-project/remix-analyzer", - "version": "0.5.3", + "version": "0.5.4", "description": "Tool to perform static analysis on Solidity smart contracts", "main": "./index.js", "types": ".index.d.ts", diff --git a/libs/remix-astwalker/package.json b/libs/remix-astwalker/package.json index c65bcea719..b82fd9ffbd 100644 --- a/libs/remix-astwalker/package.json +++ b/libs/remix-astwalker/package.json @@ -1,6 +1,6 @@ { "name": "@remix-project/remix-astwalker", - "version": "0.0.24", + "version": "0.0.25", "description": "Tool to walk through Solidity AST", "main": "./index.js", "scripts": { diff --git a/libs/remix-debug/package.json b/libs/remix-debug/package.json index edd30127a8..45604fcbd1 100644 --- a/libs/remix-debug/package.json +++ b/libs/remix-debug/package.json @@ -1,6 +1,6 @@ { "name": "@remix-project/remix-debug", - "version": "0.4.5", + "version": "0.4.6", "description": "Tool to debug Ethereum transactions", "contributors": [ { diff --git a/libs/remix-lib/package.json b/libs/remix-lib/package.json index de5db95770..21e5543a68 100644 --- a/libs/remix-lib/package.json +++ b/libs/remix-lib/package.json @@ -1,6 +1,6 @@ { "name": "@remix-project/remix-lib", - "version": "0.4.29", + "version": "0.4.30", "description": "Library to various Remix tools", "contributors": [ { diff --git a/libs/remix-simulator/package.json b/libs/remix-simulator/package.json index 79091044ae..9fa6e5584f 100644 --- a/libs/remix-simulator/package.json +++ b/libs/remix-simulator/package.json @@ -1,6 +1,6 @@ { "name": "@remix-project/remix-simulator", - "version": "0.1.9-beta.6", + "version": "0.1.9-beta.7", "description": "Ethereum IDE and tools for the web", "contributors": [ { diff --git a/libs/remix-solidity/package.json b/libs/remix-solidity/package.json index 855e72b974..c91627d4dd 100644 --- a/libs/remix-solidity/package.json +++ b/libs/remix-solidity/package.json @@ -1,6 +1,6 @@ { "name": "@remix-project/remix-solidity", - "version": "0.3.30", + "version": "0.3.31", "description": "Tool to load and run Solidity compiler", "main": "./index.js", "types": "./index.d.ts", diff --git a/libs/remix-tests/package.json b/libs/remix-tests/package.json index f395001630..7d01d4a303 100644 --- a/libs/remix-tests/package.json +++ b/libs/remix-tests/package.json @@ -1,6 +1,6 @@ { "name": "@remix-project/remix-tests", - "version": "0.1.33", + "version": "0.1.34", "description": "Tool to test Solidity smart contracts", "main": "./src/index.js", "types": "./src/index.d.ts", diff --git a/libs/remix-url-resolver/package.json b/libs/remix-url-resolver/package.json index 47a676fc27..1fc7f6d5c5 100644 --- a/libs/remix-url-resolver/package.json +++ b/libs/remix-url-resolver/package.json @@ -1,6 +1,6 @@ { "name": "@remix-project/remix-url-resolver", - "version": "0.0.15", + "version": "0.0.16", "description": "Solidity import url resolver engine", "main": "./index.js", "types": "./index.d.ts",