Skip to content

Commit

Permalink
Firebase real database driver
Browse files Browse the repository at this point in the history
  • Loading branch information
jinhduong committed Apr 26, 2018
1 parent e6a4965 commit cd2935c
Show file tree
Hide file tree
Showing 11 changed files with 2,869 additions and 188 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,5 @@ typings/
dist
demo/**/*.js
demo/**/*.js.map
npm-release

12 changes: 11 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,20 @@ const del = require('del');
const gulp = require('gulp');

gulp.task('clean', function () {
return del('dist/**/*', { force: true });
return del(['dist/**/*']);
});

gulp.task('clean-npm', function () {
return del(['npm-release/**/*']);
});

gulp.task('rl', () => {
gulp.src('./dist/browser-lib/*.js')
.pipe(gulp.dest('./release'));
});

gulp.task('npmrl', () => {
gulp.src(['dist/**/*', '!dist/browser/**/*', '!dist/browser-lib/**/*', '!dist/demo/**/*', 'package.json',
'README.md', 'LICENSE'])
.pipe(gulp.dest('./npm-release'));
})

0 comments on commit cd2935c

Please sign in to comment.