summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE/client/bower_components/hammerjs/changelog.js
diff options
context:
space:
mode:
authortalasila <talasila@research.att.com>2017-02-07 15:03:57 -0500
committertalasila <talasila@research.att.com>2017-02-07 15:05:15 -0500
commit4ad39a5c96dd99acf819ce189b13fec946d7506b (patch)
treea1449286441947cc3d07a45227fa0d6f978e1a7d /ecomp-portal-FE/client/bower_components/hammerjs/changelog.js
parent5500448cbd1f374d0ac743ee2fd636fe2d3c0027 (diff)
Initial OpenECOMP Portal commit
Change-Id: I804b80e0830c092e307da1599bd9fbb5c3e2da77 Signed-off-by: talasila <talasila@research.att.com>
Diffstat (limited to 'ecomp-portal-FE/client/bower_components/hammerjs/changelog.js')
-rw-r--r--ecomp-portal-FE/client/bower_components/hammerjs/changelog.js71
1 files changed, 71 insertions, 0 deletions
diff --git a/ecomp-portal-FE/client/bower_components/hammerjs/changelog.js b/ecomp-portal-FE/client/bower_components/hammerjs/changelog.js
new file mode 100644
index 00000000..887a3292
--- /dev/null
+++ b/ecomp-portal-FE/client/bower_components/hammerjs/changelog.js
@@ -0,0 +1,71 @@
+var changelog = require( "changelogplease" );
+var gittags = require( "git-tags" ).get( function( error, tags ) {
+ if ( error ) {
+ throw error
+ }
+ console.log( tags[ 1 ] + ".." + tags[ 0 ] );
+ var exclude = [ "Merge", "Whitespace", "Fixup", "Cleanup", "Formatting", "Ignore" ];
+ changelog( {
+ ticketUrl: "https://github.com/hammerjs/hammer.js/issues/{id}",
+ commitUrl: "https://github.com/hammerjs/hammerjs/commit/{id}",
+ sort: false,
+ repo: "./",
+ committish: tags[ 1 ] + ".." + tags[ 0 ]
+ }, function( error, log ) {
+ if ( error ) {
+ throw error;
+ }
+ log = parseLog( log );
+ console.log( log );
+ } );
+ function parseLog( log ) {
+ var lines = log.split( "\n" );
+ var newLog = [];
+ var log = [];
+ var currentComponent;
+
+
+ lines.shift();
+ lines.forEach( function( line ) {
+ var newLine = parseLine( line );
+ if ( newLine ) {
+ log.push( line );
+ }
+ } );
+ var log = log.join( "\n" );
+ return log.replace( /\*/g, "-" ).replace( /__TICKETREF__,/g, "" );
+ }
+ function parseLine( line ) {
+ var parts = getParts( line );
+
+ if ( exclude.indexOf( parts.component ) > -1 ) {
+ return false;
+ }
+ return parts;
+ }
+ function getParts( line ) {
+ var parts = line.split( ":" );
+ var component = "";
+ var message;
+ var commits = line.match( /\{\{([A-Za-z0-9 ]){0,99}\}\}/ )
+
+ if ( parts.length > 1 && parts[ 0 ].length <= 20 ) {
+ component = parts[ 0 ];
+ parts.shift();
+ message = parts.join( ":" );
+ } else {
+ parts = line.split( " " );
+ component = parts[ 1 ];
+ parts.shift();
+ message = parts.join( " " );
+ }
+
+ if ( component ) {
+ component = component.replace( /\* |,/, "" );
+ }
+ return {
+ component: component,
+ message: message
+ };
+ }
+} );