From 5f2fc06477edb87a146443bcc4353ae38f9b6857 Mon Sep 17 00:00:00 2001 From: k-tomoyasu Date: Sat, 16 Apr 2022 19:50:05 +0900 Subject: [PATCH] versioon up to 0.6.0 --- README.md | 5 +++-- package.json | 2 +- src/cmd/LicenseCommand.ts | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4307f10..239541d 100644 --- a/README.md +++ b/README.md @@ -40,15 +40,16 @@ and output stdout `withLibraries("package_name_A", "package_name_B" ...)` that p Usage: react-native-oss-license [options] Options: - -f, --format require output format. options:[settings-bundle,license-tools-plugin,about-libraries] + -f, --format output format. options:[settings-bundle,license-tools-plugin,about-libraries] --dev include devDependencies (default: false) --depth dependencies depth (default: null) - --output-path specify path where output file (default: "default path") + --output-path specify path where output file --json output json to stdout (default: false) --add-version-number write library version number (default: false) --only-direct-dependency output only dependencies you write packages.json. (default: false) --skip-not-required skip licenses those not require copyright notice (default: false) --bundle-id unique id of your app. It is used for output such as "plist" filename, etc. (default: null) + --uses-plugin whether AboutLibraries android plugin is used on native side as well (default: false) --version show current version -h, --help output usage information diff --git a/package.json b/package.json index 2bb7517..6e2cfea 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-oss-license", - "version": "0.5.1", + "version": "0.6.0", "description": "License list generator for react-native app", "main": "index.js", "scripts": { diff --git a/src/cmd/LicenseCommand.ts b/src/cmd/LicenseCommand.ts index a3fc7f4..b49ba9d 100644 --- a/src/cmd/LicenseCommand.ts +++ b/src/cmd/LicenseCommand.ts @@ -33,7 +33,7 @@ export default class LicenseCommand { 'whether AboutLibraries android plugin is used on native side as well', false ) - .version('0.5.1', '--version', 'show current version') + .version('0.6.0', '--version', 'show current version') } parse(args: string[]): CmdOption {