mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-23 11:55:01 +03:00
c9914618a7
Fixes #291 Incorporated new task into gruntfile which generates a markdown formatted changelog from the git commit messages of the last 14 git tags, corresponding to two weeks of nightly releases. The changelog is saved in __dirname/CHANGELOG.md. At this stage, the code is a fair bit too complex to be left in the gruntfile and should be split out into a separate module, but this is a first bash at the function which can be improved later. Additionally, several additions have been made to the generator to improve reliability: - Now generates changelog based on log output with --graph (thx hannah) - Grabs tag refs from git - Added changelog to gitignore - Added message for builds without any changes - Ignores any commits which have not been incorporated into a build
42 lines
559 B
Plaintext
42 lines
559 B
Plaintext
b-cov
|
|
*.seed
|
|
*.log
|
|
*.csv
|
|
*.dat
|
|
*.out
|
|
*.pid
|
|
*.gz
|
|
|
|
pids
|
|
logs
|
|
results
|
|
|
|
npm-debug.log
|
|
node_modules
|
|
|
|
.idea/*
|
|
*.iml
|
|
projectFilesBackup
|
|
|
|
.DS_Store
|
|
|
|
# Ghost DB file
|
|
*.db
|
|
|
|
.build
|
|
.dist
|
|
|
|
/core/client/tpl/hbs-tpl.js
|
|
/core/client/assets/css
|
|
.sass-cache/
|
|
/core/client/assets/sass/config.rb
|
|
/core/client/assets/sass/layouts/config.rb
|
|
/core/client/assets/sass/modules/config.rb
|
|
/core/client/assets/sass/modules/bourbon
|
|
/core/client/assets/sass/modules/bourbon/*
|
|
/core/server/data/export/exported*
|
|
/docs
|
|
/_site
|
|
|
|
# Changelog, which is autogenerated, not committed
|
|
CHANGELOG.md |