Skip to content
This repository has been archived by the owner on Jun 29, 2022. It is now read-only.

Commit

Permalink
Merge pull request #7 from gabrielseco/hotfix/fix-commander-deps
Browse files Browse the repository at this point in the history
Fix: Add commander to dependencies
  • Loading branch information
javierbrea committed Nov 14, 2019
2 parents b8bdd9b + 2f4814e commit 9cba94d
Show file tree
Hide file tree
Showing 5 changed files with 63 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ script:
- npm run avoid-file-links
- npm run test
- npm run coveralls
- sonar-scanner -Dsonar.login=${SONAR_TOKEN}
# - sonar-scanner -Dsonar.login=${SONAR_TOKEN}

deploy:
provider: npm
Expand Down
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Removed
### BREAKING CHANGES

## [1.1.1] - 2019-11-8
## [1.1.2] - 2019-11-14

### Fixed
- Add commander to dependencies

## [1.1.1] - 2019-11-08
### Fixed
- Fix license. Read NOTICE file for further info

## [1.1.0] - 2019-11-7
## [1.1.0] - 2019-11-07
### Changed
- Upgrade dependencies

## [1.0.0] - 2019-11-6
## [1.0.0] - 2019-11-06
### Added
- Forked from xbyorange/npm-file-link github repository (https://github.com/XbyOrange/npm-file-link), branch v1.0.0, commit 7de958092ebb5b1f32fef4f7a30dcb9a9aabede0 (https://github.com/XbyOrange/npm-file-link/commit/7de958092ebb5b1f32fef4f7a30dcb9a9aabede0).
- Migrated from "XbyOrange" npm-file-link private repository, version 1.0.1
Expand Down
65 changes: 49 additions & 16 deletions package-lock.json

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

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "npm-file-link",
"version": "1.1.1",
"version": "1.1.2",
"description": "CLI for linking npm repositories locally using \"file:\" method",
"keywords": [
"cli",
Expand Down Expand Up @@ -35,10 +35,11 @@
},
"dependencies": {
"chalk": "3.0.0-beta.2",
"commander": "^4.0.1",
"fs-extra": "^8.1.0",
"globule": "^1.2.1",
"lodash": "^4.17.15",
"inquirer": "^7.0.0"
"inquirer": "^7.0.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"coveralls": "^3.0.7",
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
sonar.organization=javierbrea
sonar.projectKey=npm-file-link
sonar.projectVersion=1.1.1
sonar.projectVersion=1.1.2

sonar.javascript.file.suffixes=.js
sonar.sourceEncoding=UTF-8
Expand Down

0 comments on commit 9cba94d

Please sign in to comment.