Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Side by Side Diff: node_modules/vulcanize/util/changelogs.sh

Issue 800513006: Added vulcanize under third_party/npm_modules (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « node_modules/vulcanize/test/test.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/bash
2 #
3 # @license
4 # Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
5 # This code may only be used under the BSD style license found at http://polymer .github.io/LICENSE.txt
6 # The complete set of authors may be found at http://polymer.github.io/AUTHORS.t xt
7 # The complete set of contributors may be found at http://polymer.github.io/CONT RIBUTORS.txt
8 # Code distributed by Google as part of the polymer project is also
9 # subject to an additional IP rights grant found at http://polymer.github.io/PAT ENTS.txt
10 #
11
12 # tags sorted semver style
13 TAGS=($(git tag -l | sort -k1,1r -k2,2r -k3,3r -t.))
14
15 TO=(${TAGS[@]})
16
17 FROM=(${TAGS[@]:1})
18 FROM+=(`git rev-list --max-parents=0 HEAD`)
19
20 for i in ${!FROM[@]}; do
21 echo "### ${TO[$i]}"
22 git log ${FROM[$i]}..${TO[$i]} --pretty="- %s"
23 done
OLDNEW
« no previous file with comments | « node_modules/vulcanize/test/test.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698