Skip to content

Commit

Permalink
Clean up deprecated gulp tasks
Browse files Browse the repository at this point in the history
Signed-off-by: Reid Mitchell <rmitchell@pivotal.io>
  • Loading branch information
Ming Xiao authored and reidmit committed Oct 5, 2017
1 parent 89a2b38 commit 5d618a9
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 312 deletions.
1 change: 0 additions & 1 deletion CORE_TEAM_DOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
## New member checklist

- Add to GitHub, ADT CLA google group, tracker, Google drive folder, and calendar invites (IPM, retro, standup)
- Add new member's NPM login to the publish helper in `tasks/helpers/publish-helper.js`
- Add to ~/.gitauthors file on all team computers

## Setting up your environment
Expand Down
112 changes: 0 additions & 112 deletions spec/task-helpers/publish-helper_spec.js

This file was deleted.

42 changes: 0 additions & 42 deletions tasks/acceptance.js

This file was deleted.

5 changes: 0 additions & 5 deletions tasks/css-components.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,7 @@ import del from 'del';
import gulp from 'gulp';
import mergeStream from 'merge-stream';
import runSequence from 'run-sequence';
import {publishPackages, publishFakePackages} from './helpers/publish-helper';
import path from 'path';

const plugins = require('gulp-load-plugins')();
const argv = require('yargs').argv;

const buildFolder = 'dist/css';

gulp.task('css-build-src', function() {
Expand Down
86 changes: 0 additions & 86 deletions tasks/helpers/publish-helper.js

This file was deleted.

3 changes: 0 additions & 3 deletions tasks/js-components.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
import del from 'del';
import gulp from 'gulp';
import path from 'path';
import runSequence from 'run-sequence';
import {publishPackages} from './helpers/publish-helper';

const plugins = require('gulp-load-plugins')();
const argv = require('yargs').argv;

const COPYRIGHT = '/*(c) Copyright 2015 Pivotal Software, Inc. All Rights Reserved.*/\n';
const buildFolder = 'dist/js';
Expand Down
63 changes: 0 additions & 63 deletions tasks/release-push.js

This file was deleted.

11 changes: 11 additions & 0 deletions tasks/release.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import gulp from 'gulp';
import ChangelogHelper from './helpers/changelog-helper';
import GitHelper from './helpers/git-helper';
import TrackerHelper from './helpers/tracker-helper';
import {argv} from 'yargs';

gulp.task('update-changelog', async () => {
const {trackerToken} = argv;
if (!trackerToken) throw new Error('Log into lpass and run update-changelog.sh');
await new ChangelogHelper(new GitHelper(), new TrackerHelper(trackerToken)).updateChangelog('v8.3.2');
});

0 comments on commit 5d618a9

Please sign in to comment.