From c09b7697ae3894b4eeec977cf3d1d1a8a35cfc86 Mon Sep 17 00:00:00 2001 From: yann300 Date: Tue, 16 Oct 2018 17:32:34 +0200 Subject: [PATCH] run publish and create tag --- .gitignore | 1 + gulpfile.js | 5 +++-- lerna.json | 2 +- package.json | 1 + remix-analyzer/package.json | 4 ++-- remix-debug/package.json | 4 ++-- remix-lib/package.json | 2 +- remix-solidity/package.json | 4 ++-- remix-tests/package.json | 6 +++--- 9 files changed, 16 insertions(+), 13 deletions(-) diff --git a/.gitignore b/.gitignore index eddf24d1ff..2f9b6cc3d7 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ package-lock.json .tern-port TODO soljson.js +lerna-debug.log diff --git a/gulpfile.js b/gulpfile.js index 232d580250..c8234e39c0 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -2,9 +2,10 @@ 'use strict'; var gulp = require('gulp'); +var exec = require('child_process').exec; -var lernaJSON = require('./lerna.json'); +var packageJSON = require('./package.json'); gulp.task('publishTag', function () { - exec("git tag v"+ lernaJSON.version +"; git push --tags"); + exec("git tag v"+ packageJSON.version +"; git push --tags"); }); diff --git a/lerna.json b/lerna.json index 184e829ecc..648f59d921 100644 --- a/lerna.json +++ b/lerna.json @@ -17,5 +17,5 @@ "skipGit": true } }, - "version": "0.1.0" + "version": "independent" } diff --git a/package.json b/package.json index 1e1ce5eab7..1785d6104b 100644 --- a/package.json +++ b/package.json @@ -1,4 +1,5 @@ { + "version": "0.1.0", "devDependencies": { "gulp": "^3.9.1", "lerna": "^2.10.2" diff --git a/remix-analyzer/package.json b/remix-analyzer/package.json index 2a24abc649..244e89be34 100644 --- a/remix-analyzer/package.json +++ b/remix-analyzer/package.json @@ -1,6 +1,6 @@ { "name": "remix-analyzer", - "version": "0.2.8", + "version": "0.2.10", "description": "Remix Analyzer", "main": "./index.js", "contributors": [ @@ -21,7 +21,7 @@ "babel-eslint": "^7.1.1", "babel-plugin-transform-object-assign": "^6.22.0", "babel-preset-es2015": "^6.24.0", - "remix-lib": "^0.3.8", + "remix-lib": "0.3.10", "solc": "^0.4.24", "standard": "^7.0.1", "tape": "^4.6.0" diff --git a/remix-debug/package.json b/remix-debug/package.json index 97774d32fb..79a44e2662 100644 --- a/remix-debug/package.json +++ b/remix-debug/package.json @@ -1,6 +1,6 @@ { "name": "remix-debug", - "version": "0.2.9", + "version": "0.2.11", "description": "Ethereum IDE and tools for the web", "contributors": [ { @@ -23,7 +23,7 @@ "fast-async": "^6.1.2", "notify-error": "^1.2.0", "npm-run-all": "^4.1.2", - "remix-lib": "^0.3.8", + "remix-lib": "0.3.10", "solc": "^0.4.24" }, "devDependencies": { diff --git a/remix-lib/package.json b/remix-lib/package.json index b4aa95f968..6be93a55d2 100644 --- a/remix-lib/package.json +++ b/remix-lib/package.json @@ -1,6 +1,6 @@ { "name": "remix-lib", - "version": "0.3.8", + "version": "0.3.10", "description": "Ethereum IDE and tools for the web", "contributors": [ { diff --git a/remix-solidity/package.json b/remix-solidity/package.json index f0a2e4da0c..bf856ec5c4 100644 --- a/remix-solidity/package.json +++ b/remix-solidity/package.json @@ -1,6 +1,6 @@ { "name": "remix-solidity", - "version": "0.2.8", + "version": "0.2.10", "description": "Ethereum IDE and tools for the web", "contributors": [ { @@ -22,7 +22,7 @@ "ethereumjs-vm": "^2.3.3", "fast-async": "^6.1.2", "npm-run-all": "^4.0.2", - "remix-lib": "^0.3.8", + "remix-lib": "0.3.10", "solc": "^0.4.24", "standard": "^7.0.1", "tape": "^4.6.0", diff --git a/remix-tests/package.json b/remix-tests/package.json index f8fca503ed..5075f4bc2d 100644 --- a/remix-tests/package.json +++ b/remix-tests/package.json @@ -1,6 +1,6 @@ { "name": "remix-tests", - "version": "0.0.13", + "version": "0.0.15", "description": "Tests for the Ethereum tool suite Remix", "main": "./src/index.js", "contributors": [ @@ -41,9 +41,9 @@ "change-case": "^3.0.1", "colors": "^1.1.2", "commander": "^2.13.0", - "remix-lib": "^0.3.8", + "remix-lib": "0.3.10", "remix-simulator": "^0.0.4", - "remix-solidity": "^0.2.8", + "remix-solidity": "0.2.10", "signale": "^1.2.1", "solc": "^0.4.24", "standard": "^10.0.3",