-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ci/changelog): add ci script and changelog
- Loading branch information
Showing
5 changed files
with
65 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Change Log | ||
|
||
## [Unreleased](https://github.com/fgribreau/node-unidecode/tree/HEAD) | ||
|
||
[Full Changelog](https://github.com/fgribreau/node-unidecode/compare/v0.1.5...HEAD) | ||
|
||
**Merged pull requests:** | ||
|
||
- Bundler friendly \(and ES6 compatible\) requires [\#5](https://github.com/FGRibreau/node-unidecode/pull/5) ([medikoo](https://github.com/medikoo)) | ||
|
||
- Add transliteration for 一 \(U4E00\) [\#4](https://github.com/FGRibreau/node-unidecode/pull/4) ([halfdan](https://github.com/halfdan)) | ||
|
||
## [v0.1.5](https://github.com/fgribreau/node-unidecode/tree/v0.1.5) (2015-04-19) | ||
|
||
[Full Changelog](https://github.com/fgribreau/node-unidecode/compare/v0.1.4...v0.1.5) | ||
|
||
## [v0.1.4](https://github.com/fgribreau/node-unidecode/tree/v0.1.4) (2015-04-19) | ||
|
||
**Fixed bugs:** | ||
|
||
- Error: Cannot find module './data/x1d.js' [\#1](https://github.com/FGRibreau/node-unidecode/issues/1) | ||
|
||
**Merged pull requests:** | ||
|
||
- Lint and fix bad escaping [\#8](https://github.com/FGRibreau/node-unidecode/pull/8) ([commenthol](https://github.com/commenthol)) | ||
|
||
- Testcases [\#7](https://github.com/FGRibreau/node-unidecode/pull/7) ([commenthol](https://github.com/commenthol)) | ||
|
||
- fix replacement for \[ [\#3](https://github.com/FGRibreau/node-unidecode/pull/3) ([c089](https://github.com/c089)) | ||
|
||
|
||
|
||
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/env bash | ||
# gem install github_changelog_generator | ||
github_changelog_generator -u fgribreau -p node-unidecode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/usr/bin/env zsh | ||
|
||
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.21.0/install.sh | bash | ||
source ~/.nvm/nvm.sh | ||
|
||
nvm install | ||
nvm use | ||
|
||
npm install | ||
|
||
node -v | ||
npm -v | ||
|
||
npm install | ||
|
||
set -e | ||
|
||
# Any subsequent commands which fail will cause the shell script to exit immediately | ||
setopt extended_glob; | ||
|
||
npm test | ||
|
||
#npm install check-build -g | ||
#check-build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters