jaketrent / html-webpack-template

a better default template for html-webpack-plugin
MIT License
830 stars 139 forks source link

Add git tags for recent releases #60

Closed edmorley closed 6 years ago

edmorley commented 6 years ago

Hi!

When trying to figure out #59, I noticed that the most recent git tag was for 5.2.0, which made debugging that issue harder.

Please could the following tags be added?

(This list was generated using a combination of the NPM gitHead value, with confirmation by diffing a local checkout of the repo against the NPM tarball).

Many thanks :-)

jaketrent commented 6 years ago

@edmorley thanks for compiling this. Yes, I will publish these tags this week. Thank you!

jaketrent commented 6 years ago

Ran:

$ git tag -a v5.3.0 aad4ea7
$ git tag -a v5.4.1 3f7144b
$ git tag -a v5.4.2 6600b68
$ git tag -a v5.5.0 edc8e1f
$ git tag -a v5.5.1 3466e4a
$ git tag -a v6.0.0 3ad9fdd
$ git tag -a v6.0.1 739fb35

$ git tag -a v5.6.0 e9043e2
fatal: tag 'v5.6.0' already exists

$ git push --tags origin master
Counting objects: 16, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (16/16), done.
Writing objects: 100% (16/16), 1.83 KiB | 938.00 KiB/s, done.
Total 16 (delta 5), reused 0 (delta 0)
remote: Resolving deltas: 100% (5/5), completed with 3 local objects.
To github.com:jaketrent/html-webpack-template.git
   19f5454..e65a4ec  master -> master
 * [new tag]         v5.3.0 -> v5.3.0
 * [new tag]         v5.4.1 -> v5.4.1
 * [new tag]         v5.4.2 -> v5.4.2
 * [new tag]         v5.5.0 -> v5.5.0
 * [new tag]         v5.5.1 -> v5.5.1
 * [new tag]         v5.6.0 -> v5.6.0
 * [new tag]         v6.0.0 -> v6.0.0
 * [new tag]         v6.0.1 -> v6.0.1
 * [new tag]         v6.0.2 -> v6.0.2

Working for your purposes on your end?

edmorley commented 6 years ago

Looks great now! Thank you for this and the other fixes :-)