Skip to content
This repository has been archived by the owner on Jan 6, 2025. It is now read-only.

Commit

Permalink
chore(changelog): resolve merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasBurleson committed Dec 28, 2016
1 parent 3fe5ea3 commit 85cdcd1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 21 deletions.
4 changes: 0 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
<a name"2.0.0-beta.1"></a>
## 2.0.0-beta.1 (2016-12-24)

<<<<<<< HEAD
Initial public release to NPM.
=======
Initial public release to NPM.
>>>>>>> 63f4864... chore(release): add release and changelog scripts
17 changes: 0 additions & 17 deletions tools/gulp/tasks/changelog.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,7 @@
import {src, task, dest} from 'gulp';
import {spawnSync} from 'child_process';
import path = require('path');
<<<<<<< HEAD
import minimist = require('minimist');
import gulpUtils = require('gulp-util');

const changelog = require('gulp-conventional-changelog');
const semver = require('semver');

const args = minimist(process.argv.slice(2));
const chalk = gulpUtils.colors;
const log = gulpUtils.log;

const SHA = args['sha'] || args['SHA'];
=======
import parseArgs = require('minimist');
import gulpUtils = require('gulp-util');
const chalk = gulpUtils.colors;
Expand All @@ -24,7 +12,6 @@ const semver = require('semver');
const args = parseArgs(process.argv.slice(2),{'string':["sha","SHA"]});

const SHA : string = args['sha'] || args['SHA'];
>>>>>>> 63f4864... chore(release): add release and changelog scripts
const ROOT = path.normalize(__dirname + '/../../..');
const VERSION = args['version'] || require(path.join(ROOT,'package.json')).version;

Expand Down Expand Up @@ -81,11 +68,7 @@ function getLatestTag() {
* Transforms a normal SHA-1 into a 7-digit SHA.
* @returns {string} shortened SHA
*/
<<<<<<< HEAD
function getShortSha(sha) {
=======
function getShortSha(sha:string) {
>>>>>>> 63f4864... chore(release): add release and changelog scripts
return sha.substring(0, 7);
}

Expand Down

0 comments on commit 85cdcd1

Please sign in to comment.