Skip to content

Commit

Permalink
Merge pull request #103 from shimataro/develop
Browse files Browse the repository at this point in the history
version 1.6.4
  • Loading branch information
shimataro authored Jan 26, 2020
2 parents da773c8 + f964ddc commit ed760d1
Show file tree
Hide file tree
Showing 33 changed files with 14 additions and 31 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [1.6.4] - 2020-01-27

### Fixed

* `node_modules/.bin` error (thanks [@george3447](https://github.com/george3447))

## [1.6.3] - 2020-01-27

### Others

* add FAQ
* add Q&A

## [1.6.2] - 2020-01-25

Expand Down Expand Up @@ -71,7 +77,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

* First release.

[Unreleased]: https://github.com/shimataro/ssh-key-action/compare/v1.6.3...HEAD
[Unreleased]: https://github.com/shimataro/ssh-key-action/compare/v1.6.4...HEAD
[1.6.4]: https://github.com/shimataro/ssh-key-action/compare/v1.6.3...v1.6.4
[1.6.3]: https://github.com/shimataro/ssh-key-action/compare/v1.6.2...v1.6.3
[1.6.2]: https://github.com/shimataro/ssh-key-action/compare/v1.6.1...v1.6.2
[1.6.1]: https://github.com/shimataro/ssh-key-action/compare/v1.6.0...v1.6.1
Expand Down
1 change: 0 additions & 1 deletion node_modules/.bin/acorn

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/eslint

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/esparse

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/esvalidate

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/installed-package-contents

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/is-ci

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/js-yaml

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/json5

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/markdown-it

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/markdownlint

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/mkdirp

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/ncu

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/npm-check-updates

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/npm-packlist

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/npm-run-all

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/pacote

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/pidtree

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/rc

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/rimraf

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/run-p

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/run-s

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/semver

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/tsc

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/tsserver

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/which

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/window-size

This file was deleted.

1 change: 0 additions & 1 deletion node_modules/.bin/yamllint

This file was deleted.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "install-ssh-key",
"version": "1.6.3",
"version": "1.6.4",
"private": true,
"description": "Install SSH key in .ssh",
"main": "lib/main.js",
Expand Down
1 change: 1 addition & 0 deletions scripts/create-release-branch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ function build_package() {
function commit_changes() {
local VERSION=$1

rm -rf node_modules
npm ci --only=production
git add CHANGELOG.md package.json package-lock.json node_modules lib
git commit -m "version ${VERSION}"
Expand Down
1 change: 1 addition & 0 deletions scripts/rebuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ npm i
npm run build
npm run verify

rm -rf node_modules
npm ci --only=production
git add node_modules package-lock.json lib
1 change: 1 addition & 0 deletions scripts/update-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ npm run build
npm run verify

# commit
rm -rf node_modules
npm ci --only=production
git add package.json package-lock.json node_modules
git commit -m "update dependencies"
Expand Down

0 comments on commit ed760d1

Please sign in to comment.