Browse Source

Release 0.9.10

master 0.9.10
Guillermo Rauch 9 years ago
parent
commit
590e0939ab
  1. 5
      History.md
  2. 17
      gulpfile.js
  3. 2
      package.json

5
History.md

@ -1,4 +1,9 @@
0.9.10 / 2016-03-12
===================
* delete post-install
0.9.9 / 2016-03-12
==================

17
gulpfile.js

@ -10,8 +10,7 @@ gulp.task('help', help);
gulp.task('compile', [
'compile-lib',
'compile-bin',
'compile-scripts'
'compile-bin'
]);
gulp.task('compile-lib', function () {
@ -43,20 +42,6 @@ gulp.task('compile-bin', function () {
.pipe(gulp.dest('build/bin'));
});
gulp.task('compile-scripts', function () {
return gulp.src('scripts/*')
.pipe(babel({
presets: ['es2015'],
plugins: [
'syntax-async-functions',
'transform-async-to-generator',
'transform-runtime'
]
}))
.pipe(ext.crop())
.pipe(gulp.dest('build/scripts'));
});
gulp.task('lint', function () {
return gulp.src([
'gulpfile.js',

2
package.json

@ -1,6 +1,6 @@
{
"name": "now",
"version": "0.9.9",
"version": "0.9.10",
"description": "Realtime Deployments for Node.JS apps.",
"main": "./build/lib/index",
"files": [

Loading…
Cancel
Save