From e5a7311899a7d134ab72e6ca6fb88834fd00fb1a Mon Sep 17 00:00:00 2001 From: liabru Date: Sun, 15 Sep 2019 19:49:10 +0100 Subject: [PATCH] removed unused gulp release tasks --- Gulpfile.js | 15 --------------- package.json | 1 - 2 files changed, 16 deletions(-) diff --git a/Gulpfile.js b/Gulpfile.js index 8ad1c2a..f12fa97 100644 --- a/Gulpfile.js +++ b/Gulpfile.js @@ -4,7 +4,6 @@ const gulp = require('gulp'); const bump = require('gulp-bump'); const changelog = require('gulp-conventional-changelog'); const tag = require('gulp-tag-version'); -const release = require('gulp-github-release'); const sequence = require('run-sequence'); const gutil = require('gulp-util'); const pkg = require('./package.json'); @@ -107,17 +106,3 @@ gulp.task('release:push', callback => { } }); }); - -gulp.task('release:push:github', () => { - return gulp.src([ - 'CHANGELOG.md', - 'LICENSE', - buildDirectory + '/matter.min.js', - buildDirectory + '/matter.js' - ]).pipe(release({ - owner: 'liabru', - repo: pkg.name, - tag: pkg.version, - name: 'Matter.js ' + pkg.version - })); -}); diff --git a/package.json b/package.json index 3c611ef..dcf8ee9 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,6 @@ "gulp": "^4.0.2", "gulp-bump": "^2.6.1", "gulp-conventional-changelog": "^1.1.0", - "gulp-github-release": "^1.2.1", "gulp-tag-version": "^1.3.0", "gulp-util": "^3.0.8", "jest": "^24.9.0",