mirror of
https://github.com/liabru/matter-js.git
synced 2024-12-25 13:39:06 -05:00
removed unused gulp release tasks
This commit is contained in:
parent
288b9cdb2f
commit
e5a7311899
2 changed files with 0 additions and 16 deletions
15
Gulpfile.js
15
Gulpfile.js
|
@ -4,7 +4,6 @@ const gulp = require('gulp');
|
||||||
const bump = require('gulp-bump');
|
const bump = require('gulp-bump');
|
||||||
const changelog = require('gulp-conventional-changelog');
|
const changelog = require('gulp-conventional-changelog');
|
||||||
const tag = require('gulp-tag-version');
|
const tag = require('gulp-tag-version');
|
||||||
const release = require('gulp-github-release');
|
|
||||||
const sequence = require('run-sequence');
|
const sequence = require('run-sequence');
|
||||||
const gutil = require('gulp-util');
|
const gutil = require('gulp-util');
|
||||||
const pkg = require('./package.json');
|
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
|
|
||||||
}));
|
|
||||||
});
|
|
||||||
|
|
|
@ -24,7 +24,6 @@
|
||||||
"gulp": "^4.0.2",
|
"gulp": "^4.0.2",
|
||||||
"gulp-bump": "^2.6.1",
|
"gulp-bump": "^2.6.1",
|
||||||
"gulp-conventional-changelog": "^1.1.0",
|
"gulp-conventional-changelog": "^1.1.0",
|
||||||
"gulp-github-release": "^1.2.1",
|
|
||||||
"gulp-tag-version": "^1.3.0",
|
"gulp-tag-version": "^1.3.0",
|
||||||
"gulp-util": "^3.0.8",
|
"gulp-util": "^3.0.8",
|
||||||
"jest": "^24.9.0",
|
"jest": "^24.9.0",
|
||||||
|
|
Loading…
Reference in a new issue