Unverified Commit d37356c7 authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #998 from ethereum/updateLerna

update lerna / add gulp
parents dddd4e4e cb71dc9d
#!/usr/bin/env node
'use strict';
var gulp = require('gulp');
var lernaJSON = require('./lerna.json');
gulp.task('publishTag', function () {
exec("git tag v"+ lernaJSON.version +"; git push --tags");
});
......@@ -8,5 +8,14 @@
"remix-tests",
"remix-simulator"
],
"version": "independent"
"command": {
"init": {
"exact": true
},
"publish": {
"exact": true,
"skipGit": true
}
},
"version": "0.1.0"
}
{
"devDependencies": {
"lerna": "^2.10.2"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"publish": "lerna publish"
}
"devDependencies": {
"gulp": "^3.9.1",
"lerna": "^2.10.2"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"publish": "lerna publish",
"release": "lerna bootstrap; lerna publish; gulp; gulp publishTag;"
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment