Skip to content

Commit

Permalink
feat(new): remove commit-msg from the application and require it from…
Browse files Browse the repository at this point in the history
… @clea/cli

Closes #15
  • Loading branch information
Kevin Grandemange committed Apr 4, 2017
1 parent 106c260 commit cd500fb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
vendor | 2.57 MB | 440 kB | 144 kB
styles | 70 kB | 28.4 kB | 9.11 kB

- **new**: add --commit-message-conventions options to enable the hook commit-msg with the [google conventions](https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/edit)

## [0.0.1-rc.1](https://github.com/groupe-sii/clea-cli/compare/0.0.1-beta.6...0.0.1-rc.1) - 2017-03-29

### Breaking changes
Expand Down
2 changes: 1 addition & 1 deletion bin/postinstall.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
const fs = require('fs-extra'),
logger = require('../vendors/logger');

fs.copy('./tools/git/commit-msg.js', '.git/hooks/commit-msg', (err) => {
fs.copy('./node_modules/@clea/cli/lib/models/git-configs/commit-msg.js', '.git/hooks/commit-msg', (err) => {
if (err) {
return logger.error(err);
}
Expand Down
File renamed without changes.

0 comments on commit cd500fb

Please sign in to comment.