diff --git a/.changeset/strong-timers-wonder.md b/.changeset/strong-timers-wonder.md deleted file mode 100644 index e747390b..00000000 --- a/.changeset/strong-timers-wonder.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -"@adobe/token-diff-generator": minor ---- - -Format and output command line options added. - -``` -Options: - -otv, --old-token-version indicates which github tag to pull old tokens from - -ntv, --new-token-version indicates which github tag to pull new tokens from - -otb, --old-token-branch indicates which branch to fetch old token data from - -ntb, --new-token-branch indicates which branch to fetch updated token data from - -tn, --token-names indicates specific tokens to compare - -l, --local indicates to compare to local data - -r, --repo github repository to target - -gak, --githubAPIKey github api key to use - -f, --format cli (default) or markdown - -o, --output file path to store diff output - -d, --debug file path to store diff json - -h, --help display help for command -``` diff --git a/tools/diff-generator/CHANGELOG.md b/tools/diff-generator/CHANGELOG.md index 125f1f8d..9f0c5931 100644 --- a/tools/diff-generator/CHANGELOG.md +++ b/tools/diff-generator/CHANGELOG.md @@ -1,5 +1,27 @@ # @adobe/token-diff-generator +## 1.3.0 + +### Minor Changes + +- [#443](https://github.com/adobe/spectrum-tokens/pull/443) [`b371af5`](https://github.com/adobe/spectrum-tokens/commit/b371af50645fe04ef4aef286b7350e3113a4ff3a) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Format and output command line options added. + + ``` + Options: + -otv, --old-token-version indicates which github tag to pull old tokens from + -ntv, --new-token-version indicates which github tag to pull new tokens from + -otb, --old-token-branch indicates which branch to fetch old token data from + -ntb, --new-token-branch indicates which branch to fetch updated token data from + -tn, --token-names indicates specific tokens to compare + -l, --local indicates to compare to local data + -r, --repo github repository to target + -gak, --githubAPIKey github api key to use + -f, --format cli (default) or markdown + -o, --output file path to store diff output + -d, --debug file path to store diff json + -h, --help display help for command + ``` + ## 1.2.0 ### Minor Changes diff --git a/tools/diff-generator/package.json b/tools/diff-generator/package.json index c6661d15..71a4f82c 100644 --- a/tools/diff-generator/package.json +++ b/tools/diff-generator/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/token-diff-generator", - "version": "1.2.0", + "version": "1.3.0", "description": "Creates diffs for tokens", "type": "module", "scripts": { diff --git a/tools/diff-generator/src/lib/cli.js b/tools/diff-generator/src/lib/cli.js index 6121e1fc..edd32ff1 100755 --- a/tools/diff-generator/src/lib/cli.js +++ b/tools/diff-generator/src/lib/cli.js @@ -27,7 +27,7 @@ import storeOutput from "./store-output.js"; import { githubAPIKey } from "../../github-api-key.js"; /* this is updated by the npm prepare script using update-version.js */ -const version = "1.2.0"; +const version = "1.3.0"; const program = new Command();