changelog-view
Advanced tools
Comparing version 1.8.1 to 1.8.2
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
@@ -7,62 +8,95 @@ | ||
## [1.8.2] - 2019-03-05 | ||
Use ink and ink-tab 2 | ||
## [1.8.1] - 2018-05-17 | ||
No changes | ||
## [1.8.0] - 2018-05-17 | ||
### Changed | ||
* Upgrade lots of dependencies, but mainly ink-tab to 1.2 (and ink to 0.5) | ||
* Fix an issue when no changelog was found | ||
* Verbose mode is more verbose no help debbuging | ||
* Upgrade lots of dependencies, but mainly ink-tab to 1.2 (and ink to 0.5) | ||
* Fix an issue when no changelog was found | ||
* Verbose mode is more verbose no help debbuging | ||
## [1.7.0] - 2018-04-05 | ||
### Added | ||
* added current version of changelog-view when calling cli with `--help` option | ||
* added current version of changelog-view when calling cli with `--help` option | ||
## [1.6.0] - 2018-04-05 | ||
### Added | ||
* add `--verbose` option to display debug informations | ||
* add `--verbose` option to display debug informations | ||
## [1.5.1] - 2018-04-02 | ||
### Changed | ||
* Update README.md file to match current version | ||
* Update README.md file to match current version | ||
## [1.5.0] - 2018-03-16 | ||
### Changed | ||
* Use ink-tab 1.1.0, allow to navigate with tab and fixes an issue | ||
* Use ink-tab 1.1.0, allow to navigate with tab and fixes an issue | ||
## [1.4.2] - 2018-01-25 | ||
### Changed | ||
* Fix issue when using npx changelog-view and postinstall script | ||
* Fix issue when using npx changelog-view and postinstall script | ||
## [1.4.1] - 2018-01-23 | ||
### Changed | ||
* Fix issue when bundling | ||
* Fix issue when bundling | ||
## [1.4.0] - 2018-01-23 - YANKED | ||
### Changed | ||
* Changed the output format, it now uses [ink](https://github.com/vadimdemedes/ink) for rendering and [ink-tab](https://github.com/jdeniau/ink-tab) for browsing. | ||
* Changed the output format, it now uses [ink](https://github.com/vadimdemedes/ink) for rendering and [ink-tab](https://github.com/jdeniau/ink-tab) for browsing. | ||
## [1.3.2] - 2017-09-20 | ||
### Added | ||
* Assume that repository like "foo/bar" is "https://github.com/foo/bar.git" | ||
* Assume that repository like "foo/bar" is "https://github.com/foo/bar.git" | ||
## [1.3.1] - 2017-09-20 | ||
### Added | ||
* If README.md / HISTORY.md is empty, check the next solutions | ||
* Better output if no changelog found since version | ||
* If README.md / HISTORY.md is empty, check the next solutions | ||
* Better output if no changelog found since version | ||
## [1.3.0] - 2017-09-20 | ||
### Added | ||
* Search in development package for PHP/Composer projects | ||
* Search in development package for PHP/Composer projects | ||
## [1.2.0] - 2017-09-15 | ||
### Added | ||
* Detect package informations from `composer.lock` file (for PHP projects). | ||
* Detect package informations from `composer.lock` file (for PHP projects). | ||
## [1.1.0] - 2017-09-15 | ||
### Added | ||
* Detect package informations from node_modules `package.json` file. | ||
* Detect package informations from node_modules `package.json` file. | ||
## [1.0.0] - 2017-09-15 | ||
### Added | ||
* First official version of `changelog-view` | ||
* First official version of `changelog-view` |
@@ -10,4 +10,4 @@ { | ||
"svg-term-cli": "^2.1.1", | ||
"webpack-dev-server": "3.0.0" | ||
"webpack-dev-server": "3.1.1" | ||
} | ||
} |
{ | ||
"name": "changelog-view", | ||
"version": "1.8.1", | ||
"version": "1.8.2", | ||
"description": "Tool to view changelog of package in console", | ||
@@ -12,13 +12,15 @@ "bin": { | ||
"devDependencies": { | ||
"babel-cli": "^6.26.0", | ||
"babel-core": "^6.26.3", | ||
"babel-plugin-external-helpers": "^6.22.0", | ||
"babel-plugin-transform-builtin-extend": "^1.1.2", | ||
"babel-plugin-transform-react-jsx": "^6.24.1", | ||
"@babel/cli": "^7.2.3", | ||
"@babel/core": "^7.3.4", | ||
"@babel/node": "^7.2.2", | ||
"@babel/polyfill": "^7.4.0", | ||
"@babel/preset-env": "^7.4.2", | ||
"@babel/preset-react": "^7.0.0", | ||
"babel-loader": "^8.0.5", | ||
"babel-polyfill": "^6.26.0", | ||
"babel-preset-env": "^1.7.0", | ||
"core-js": "^3.0.0", | ||
"find-versions": "^2.0.0", | ||
"ink": "^0.5.0", | ||
"ink-spinner": "git://github.com/jdeniau/ink-spinner.git#jd-fix-ink05-build", | ||
"ink-tab": "^1.2.2", | ||
"ink": "^2.0.3", | ||
"ink-spinner": "^3.0.0", | ||
"ink-tab": "^2.0.1", | ||
"jest": "^20.0.4", | ||
@@ -33,12 +35,10 @@ "lint-staged": "^7.1.0", | ||
"prettier": "^1.12.1", | ||
"rollup": "^0.59.1", | ||
"rollup-plugin-babel": "^3.0.4", | ||
"rollup-plugin-commonjs": "^9.1.3", | ||
"rollup-plugin-json": "^3.0.0", | ||
"rollup-plugin-node-resolve": "^3.3.0", | ||
"semver": "^5.4.1" | ||
"react": "^16.0.0", | ||
"semver": "^5.4.1", | ||
"webpack": "^4.29.6", | ||
"webpack-cli": "^3.3.0" | ||
}, | ||
"scripts": { | ||
"test": "jest", | ||
"build": "rollup -c && chmod a+x bin/changelog-view && (git commit -m 'build binary' bin/changelog-view || true)", | ||
"build": "webpack --config webpack.config.js && chmod a+x bin/changelog-view && (git commit -m 'build binary' bin/changelog-view || true)", | ||
"prepublishOnly": "npm run build", | ||
@@ -45,0 +45,0 @@ "precommit": "lint-staged" |
// #!/usr/bin/env node | ||
import 'babel-polyfill'; | ||
import minimist from 'minimist'; | ||
@@ -4,0 +3,0 @@ import logger from './logger'; |
@@ -1,2 +0,3 @@ | ||
import { h, render, Component, Fragment } from 'ink'; | ||
import React, { Component, Fragment } from 'react'; | ||
import { render } from 'ink'; | ||
import { Tabs, Tab } from 'ink-tab'; | ||
@@ -3,0 +4,0 @@ import Spinner from 'ink-spinner'; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2335034
2395