From 9cfe0d73fc24d5c83f39555de384f236adef193e Mon Sep 17 00:00:00 2001 From: Tommy Nguyen <4123478+tido64@users.noreply.github.com> Date: Tue, 30 Nov 2021 20:34:07 +0100 Subject: [PATCH] chore: migrate from Beachball to Changesets (#880) - `change` remains mostly the same. The difference now is that we select the packages that should have the same change log entry. Where we used to specify `--type none`, we can do `yarn change --empty` instead. - `publish:beachball` was split into `version:changesets` (for bumping version numbers) and `publish:changesets` (actually publishing). --- .changeset/README.md | 11 + .changeset/config.json | 10 + .changeset/thick-turkeys-hang.md | 2 + .github/labeler.yml | 7 + .github/workflows/build.yml | 8 +- .github/workflows/pr.yml | 2 +- CONTRIBUTING.md | 6 +- package.json | 19 +- .../CHANGELOG.json | 448 --- .../CHANGELOG.json | 348 -- packages/bundle-diff/CHANGELOG.json | 298 -- packages/cli/CHANGELOG.json | 3289 ----------------- packages/config/CHANGELOG.json | 1012 ----- packages/console/CHANGELOG.json | 268 -- packages/dep-check/CHANGELOG.json | 1985 ---------- .../CHANGELOG.json | 125 - packages/eslint-config/CHANGELOG.json | 185 - packages/eslint-plugin/CHANGELOG.json | 223 -- packages/golang/CHANGELOG.json | 80 - packages/jest-preset/CHANGELOG.json | 140 - packages/metro-config/CHANGELOG.json | 1114 ------ .../CHANGELOG.json | 858 ----- .../CHANGELOG.json | 858 ----- .../metro-resolver-symlinks/CHANGELOG.json | 369 -- .../metro-serializer-esbuild/CHANGELOG.json | 798 ---- packages/metro-serializer/CHANGELOG.json | 433 --- packages/metro-service/CHANGELOG.json | 570 --- packages/metro-swc-worker/CHANGELOG.json | 199 - .../react-native-test-app-msal/CHANGELOG.json | 35 - .../rn-changelog-generator/CHANGELOG.json | 35 - packages/template/README.md | 5 +- packages/test-app/CHANGELOG.json | 2458 ------------ packages/third-party-notices/CHANGELOG.json | 776 ---- packages/tools-language/CHANGELOG.json | 185 - packages/tools-node/CHANGELOG.json | 373 -- packages/tools-react-native/CHANGELOG.json | 140 - .../CHANGELOG.json | 211 -- .../CHANGELOG.json | 175 - packages/typescript-service/CHANGELOG.json | 624 ---- scripts/CHANGELOG.json | 125 - yarn.lock | 804 +++- 41 files changed, 781 insertions(+), 18830 deletions(-) create mode 100644 .changeset/README.md create mode 100644 .changeset/config.json create mode 100644 .changeset/thick-turkeys-hang.md delete mode 100644 packages/babel-plugin-import-path-remapper/CHANGELOG.json delete mode 100644 packages/babel-preset-metro-react-native/CHANGELOG.json delete mode 100644 packages/bundle-diff/CHANGELOG.json delete mode 100644 packages/cli/CHANGELOG.json delete mode 100644 packages/config/CHANGELOG.json delete mode 100644 packages/console/CHANGELOG.json delete mode 100644 packages/dep-check/CHANGELOG.json delete mode 100644 packages/esbuild-plugin-import-path-remapper/CHANGELOG.json delete mode 100644 packages/eslint-config/CHANGELOG.json delete mode 100644 packages/eslint-plugin/CHANGELOG.json delete mode 100644 packages/golang/CHANGELOG.json delete mode 100644 packages/jest-preset/CHANGELOG.json delete mode 100644 packages/metro-config/CHANGELOG.json delete mode 100644 packages/metro-plugin-cyclic-dependencies-detector/CHANGELOG.json delete mode 100644 packages/metro-plugin-duplicates-checker/CHANGELOG.json delete mode 100644 packages/metro-resolver-symlinks/CHANGELOG.json delete mode 100644 packages/metro-serializer-esbuild/CHANGELOG.json delete mode 100644 packages/metro-serializer/CHANGELOG.json delete mode 100644 packages/metro-service/CHANGELOG.json delete mode 100644 packages/metro-swc-worker/CHANGELOG.json delete mode 100644 packages/react-native-test-app-msal/CHANGELOG.json delete mode 100644 packages/rn-changelog-generator/CHANGELOG.json delete mode 100644 packages/test-app/CHANGELOG.json delete mode 100644 packages/third-party-notices/CHANGELOG.json delete mode 100644 packages/tools-language/CHANGELOG.json delete mode 100644 packages/tools-node/CHANGELOG.json delete mode 100644 packages/tools-react-native/CHANGELOG.json delete mode 100644 packages/typescript-react-native-compiler/CHANGELOG.json delete mode 100644 packages/typescript-react-native-resolver/CHANGELOG.json delete mode 100644 packages/typescript-service/CHANGELOG.json delete mode 100644 scripts/CHANGELOG.json diff --git a/.changeset/README.md b/.changeset/README.md new file mode 100644 index 000000000..468dd170c --- /dev/null +++ b/.changeset/README.md @@ -0,0 +1,11 @@ +# Changesets + +Hello and welcome! This folder has been automatically generated by +`@changesets/cli`, a build tool that works with multi-package repos, or +single-package repos to help you version and publish your code. You can find the +full documentation for it +[in our repository](https://github.com/changesets/changesets) + +We have a quick list of common questions to get you started engaging with this +project in +[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md) diff --git a/.changeset/config.json b/.changeset/config.json new file mode 100644 index 000000000..9a3c6102f --- /dev/null +++ b/.changeset/config.json @@ -0,0 +1,10 @@ +{ + "$schema": "https://unpkg.com/@changesets/config@1.6.2/schema.json", + "changelog": "@changesets/cli/changelog", + "commit": true, + "linked": [], + "access": "public", + "baseBranch": "origin/main", + "updateInternalDependencies": "minor", + "ignore": [] +} diff --git a/.changeset/thick-turkeys-hang.md b/.changeset/thick-turkeys-hang.md new file mode 100644 index 000000000..a845151cc --- /dev/null +++ b/.changeset/thick-turkeys-hang.md @@ -0,0 +1,2 @@ +--- +--- diff --git a/.github/labeler.yml b/.github/labeler.yml index 61676fbc9..3967e742b 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,3 +1,10 @@ +'chore': + - .github/**/* + - .gitignore + - .npmrc + - .yarnrc + - package.json + - scripts/**/* 'feature: cli': - packages/cli/**/* - packages/config/**/* diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f6ec8fe4a..22decc461 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,6 +4,7 @@ on: branches: [main] jobs: build_and_publish: + name: "Build and publish" runs-on: ubuntu-latest steps: - name: Set up Git @@ -35,4 +36,9 @@ jobs: - name: Bundle packages run: yarn bundle:ci - name: Publish - run: yarn run publish:beachball --yes --token ${{ secrets.NPM_TOKEN }} + uses: changesets/action@master + with: + publish: yarn publish:changesets + env: + GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }} + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 823abc4db..955e0b743 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -31,7 +31,7 @@ jobs: env: CI_SKIP_GO: 1 - name: Check for change files - run: yarn run beachball check --branch origin/${{ github.base_ref }} --changehint \"Run 'yarn run change' from root of repo to generate a change file.\" + run: yarn change:check --since origin/${{ github.base_ref }} - name: Format run: yarn format - name: Report formatting changes diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7709a8cd2..2d16a10fc 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -140,14 +140,14 @@ Please describe the changes for: @rnx-kit/cli Follow the prompts and describe the changes you are making to each package. This information is written in files under `/change`. Our CI loop uses these files to bump package versions and update package change logs. The entire process is -coordinated by [Beachball](https://github.com/microsoft/beachball#beachball). +coordinated by [Changesets](https://github.com/atlassian/changesets#readme). ## Releases Our release process is fully automated by -[Beachball](https://github.com/microsoft/beachball#beachball). +[Changesets](https://github.com/atlassian/changesets#readme). -When a PR is merged, our CI loop uses `Beachball` to version-bump each changed +When a PR is merged, our CI loop uses `Changesets` to version-bump each changed package and publish it to `npm`. ## Style Guide diff --git a/package.json b/package.json index 33847c94f..0f4439df3 100644 --- a/package.json +++ b/package.json @@ -15,28 +15,28 @@ "build": "lage build --grouped", "build:ci": "lage build:ci --verbose --grouped", "build-scope": "lage build --grouped --log-level warn --no-deps --scope", - "bump-versions": "beachball bump", "bundle": "lage bundle --grouped", "bundle:ci": "lage bundle --verbose --grouped", "bundle+esbuild": "lage bundle+esbuild --verbose --grouped", - "change": "beachball change", - "check": "beachball check --branch origin/main --changehint \"Run 'yarn run change' from root of repo to generate a change file.\"", + "change": "changeset add", + "change:check": "changeset status", "ci": "yarn --cache-folder .yarn-offline-mirror --prefer-offline --frozen-lockfile --non-interactive", "clean": "lage cache --clear && lage clean --log-level warn --grouped", "depcheck": "lage depcheck --log-level warn --grouped", "format": "lage format --log-level warn --grouped", "new-package": "node scripts/new-package.js", "lint": "lage lint --verbose --grouped --no-cache", - "publish:beachball": "beachball publish --verbose --bump-deps -m\"📦 applying package updates [skip ci]\"", + "publish:changesets": "changeset publish", "rnx-dep-check": "yarn build-scope @rnx-kit/dep-check && scripts/rnx-dep-check.js", "test": "lage test --verbose --grouped", "update-readme": "yarn update-readme:main && lage update-readme", - "update-readme:main": "node scripts/update-readme.js" + "update-readme:main": "node scripts/update-readme.js", + "version:changesets": "changeset version" }, "devDependencies": { "@babel/core": "^7.0.0", + "@changesets/cli": "^2.18.0", "@rnx-kit/dep-check": "*", - "beachball": "^2.2.0", "cosmiconfig": "^7.0.0", "lage": "^0.31.0", "metro": "^0.66.2", @@ -62,13 +62,6 @@ "scripts" ] }, - "beachball": { - "branch": "origin/main", - "disallowedChangeTypes": [ - "major" - ], - "access": "public" - }, "eslintConfig": { "extends": "@rnx-kit/eslint-config" }, diff --git a/packages/babel-plugin-import-path-remapper/CHANGELOG.json b/packages/babel-plugin-import-path-remapper/CHANGELOG.json deleted file mode 100644 index bc3ce3ba5..000000000 --- a/packages/babel-plugin-import-path-remapper/CHANGELOG.json +++ /dev/null @@ -1,448 +0,0 @@ -{ - "name": "@rnx-kit/babel-plugin-import-path-remapper", - "entries": [ - { - "date": "Tue, 30 Nov 2021 17:24:14 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.12", - "version": "1.0.12", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/babel-plugin-import-path-remapper", - "comment": "Bump @rnx-kit/tools-node to v1.2.6", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - } - ] - } - }, - { - "date": "Thu, 18 Nov 2021 20:51:04 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.11", - "version": "1.0.11", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/babel-plugin-import-path-remapper", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ], - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/babel-plugin-import-path-remapper", - "comment": "Bump @rnx-kit/tools-node to v1.2.5", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.10", - "version": "1.0.10", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/babel-plugin-import-path-remapper", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.10", - "version": "1.0.10", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/babel-plugin-import-path-remapper", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 19:24:49 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.10", - "version": "1.0.10", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/babel-plugin-import-path-remapper", - "comment": "Bump @rnx-kit/tools-node to v1.2.4", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 07:33:42 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.9", - "version": "1.0.9", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/babel-plugin-import-path-remapper", - "comment": "Bump @rnx-kit/tools-node to v1.2.3", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - } - ] - } - }, - { - "date": "Wed, 03 Nov 2021 18:15:39 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.8", - "version": "1.0.8", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/babel-plugin-import-path-remapper", - "comment": "Bump @rnx-kit/tools-node to v1.2.2", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - } - ] - } - }, - { - "date": "Mon, 01 Nov 2021 13:46:13 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.7", - "version": "1.0.7", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/babel-plugin-import-path-remapper", - "comment": "Bump @rnx-kit/tools-node to v1.2.1", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - } - ] - } - }, - { - "date": "Sat, 30 Oct 2021 07:50:51 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.6", - "version": "1.0.6", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/babel-plugin-import-path-remapper", - "comment": "Bump @rnx-kit/tools-node to v1.2.0", - "commit": "6133f8fe0298611e4c736e94b46f32752d139e76" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 12:14:31 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.5", - "version": "1.0.5", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/babel-plugin-import-path-remapper", - "comment": "Bump @rnx-kit/tools-node to v1.1.6", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 10:31:10 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.4", - "version": "1.0.4", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/babel-plugin-import-path-remapper", - "comment": "Bump @rnx-kit/tools-node to v1.1.5", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 08:51:30 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.3", - "version": "1.0.3", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/babel-plugin-import-path-remapper", - "comment": "Bump @rnx-kit/tools-node to v1.1.4", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 16:06:09 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/babel-plugin-import-path-remapper", - "comment": "Upgrade Jest to v27", - "commit": "f7b4eeebbd2576f83048ce5d2a0c538574d76c99" - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 16:05:55 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/babel-plugin-import-path-remapper", - "comment": "Upgrade Jest to v27", - "commit": "4463a88285b37b622deb06717c92ff0f3c5451ad" - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 08:38:38 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.2", - "version": "1.0.2", - "comments": { - "patch": [ - { - "author": "sverre.johansen@gmail.com", - "package": "@rnx-kit/babel-plugin-import-path-remapper", - "comment": "Preserve Comments within require and import", - "commit": "272f195ab4b9341bb8a47aa38a9e17fb54dfe6e6" - } - ] - } - }, - { - "date": "Thu, 16 Sep 2021 10:10:39 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.1", - "version": "1.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/babel-plugin-import-path-remapper", - "comment": "Fixed all `lib` components in a path being incorrectly replaced", - "commit": "ac474077fa1675e2faaa74ced891ba1e1a6673f0" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 09:53:10 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Added `lint` script", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "d5c36bb21e3482c24ff8b029cb60802d04e6bb64", - "package": "@rnx-kit/babel-plugin-import-path-remapper" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:45 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Added `format` script", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "eaedb2cae443a479e131cfd71fab5c1039daca9d", - "package": "@rnx-kit/babel-plugin-import-path-remapper" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:25 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Added `format` script", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "12196abcec79794493615829c3783d35f5bfc364", - "package": "@rnx-kit/babel-plugin-import-path-remapper" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:47 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Add badges for build status and version", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "2dc9fe456410eed10abbfa464ae7aa7e5cef7aef", - "package": "@rnx-kit/babel-plugin-import-path-remapper" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:07 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Add badges for build status and version", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "f3ff6e5f5c20cf9e8c81ca25a4fae3f483925c59", - "package": "@rnx-kit/babel-plugin-import-path-remapper" - } - ] - } - }, - { - "date": "Mon, 28 Jun 2021 14:19:44 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Ran depcheck and cleaned up dependencies", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4794d9d1b5f8b9d1174dc0799291ff2e0a19b792", - "package": "@rnx-kit/babel-plugin-import-path-remapper" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 09:28:25 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Added ESLint config", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4701f7a40c050f8d376fbcfc84ce6e50f5fcf501", - "package": "@rnx-kit/babel-plugin-import-path-remapper" - } - ] - } - }, - { - "date": "Thu, 06 May 2021 20:37:55 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Split tsconfig options out into a shared file that can be included in all projects without specifying any source files.", - "author": "afoxman@microsoft.com", - "commit": "c34ccb3ca74893ea0741603b46aa96a238d59831", - "package": "@rnx-kit/babel-plugin-import-path-remapper" - } - ] - } - }, - { - "date": "Thu, 11 Mar 2021 15:31:28 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Cosmetical changes to package.json", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "f51c3a2734ba34d74ce0b784daba05b2deb85bcf", - "package": "@rnx-kit/babel-plugin-import-path-remapper" - } - ] - } - }, - { - "date": "Tue, 09 Mar 2021 20:34:23 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Remove platform-specific jest tasks. Clean up unneeded Jest dependencies.", - "author": "afoxman@microsoft.com", - "commit": "199a3ace5c54d83aaef163a3b09b5df01e4cf6b3", - "package": "@rnx-kit/babel-plugin-import-path-remapper" - } - ] - } - }, - { - "date": "Mon, 22 Feb 2021 10:50:46 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Enable stricter tsconfig options", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "1a3c54e876c6a7c25f423cebc4b2556b611c575a", - "package": "@rnx-kit/babel-plugin-import-path-remapper" - } - ] - } - }, - { - "date": "Fri, 19 Feb 2021 07:03:27 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Align on build tools", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "9afadb4f2c5e9b5476d5575295b6ea0b909db760", - "package": "@rnx-kit/babel-plugin-import-path-remapper" - } - ] - } - }, - { - "date": "Tue, 16 Feb 2021 09:27:59 GMT", - "tag": "@rnx-kit/babel-plugin-import-path-remapper_v1.0.0", - "version": "1.0.0", - "comments": { - "minor": [ - { - "comment": "Babel plugin for remapping 'lib/' imports to 'src/'", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "93d5f4d1b75e87f1ffc6d18b6d99c817a060045d", - "package": "@rnx-kit/babel-plugin-import-path-remapper" - } - ] - } - } - ] -} diff --git a/packages/babel-preset-metro-react-native/CHANGELOG.json b/packages/babel-preset-metro-react-native/CHANGELOG.json deleted file mode 100644 index fa64661f4..000000000 --- a/packages/babel-preset-metro-react-native/CHANGELOG.json +++ /dev/null @@ -1,348 +0,0 @@ -{ - "name": "@rnx-kit/babel-preset-metro-react-native", - "entries": [ - { - "date": "Thu, 18 Nov 2021 20:51:04 GMT", - "tag": "@rnx-kit/babel-preset-metro-react-native_v1.0.16", - "version": "1.0.16", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/babel-preset-metro-react-native", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/babel-preset-metro-react-native_v1.0.15", - "version": "1.0.15", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/babel-preset-metro-react-native", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/babel-preset-metro-react-native_v1.0.15", - "version": "1.0.15", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/babel-preset-metro-react-native", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 16:06:09 GMT", - "tag": "@rnx-kit/babel-preset-metro-react-native_v1.0.7", - "version": "1.0.7", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/babel-preset-metro-react-native", - "comment": "Added lint script", - "commit": "f7b4eeebbd2576f83048ce5d2a0c538574d76c99" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/babel-preset-metro-react-native", - "comment": "Upgrade Jest to v27", - "commit": "f7b4eeebbd2576f83048ce5d2a0c538574d76c99" - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 16:05:55 GMT", - "tag": "@rnx-kit/babel-preset-metro-react-native_v1.0.7", - "version": "1.0.7", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/babel-preset-metro-react-native", - "comment": "Added lint script", - "commit": "4463a88285b37b622deb06717c92ff0f3c5451ad" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/babel-preset-metro-react-native", - "comment": "Upgrade Jest to v27", - "commit": "4463a88285b37b622deb06717c92ff0f3c5451ad" - } - ] - } - }, - { - "date": "Tue, 21 Sep 2021 13:01:58 GMT", - "tag": "@rnx-kit/babel-preset-metro-react-native_v1.0.6", - "version": "1.0.6", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/babel-preset-metro-react-native", - "comment": "Enable `--isolatedModules` to ensure compatibility with transpilers that only operate on a single file at a time, e.g. Babel or esbuild.", - "commit": "862d756cce07a4403fcba65d8b0e1979c384fd01" - } - ], - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/babel-preset-metro-react-native", - "comment": "Add `esbuild` transform profile for use with `metro-serializer-esbuild`", - "commit": "862d756cce07a4403fcba65d8b0e1979c384fd01" - } - ] - } - }, - { - "date": "Thu, 16 Sep 2021 10:10:39 GMT", - "tag": "@rnx-kit/babel-preset-metro-react-native_v1.0.5", - "version": "1.0.5", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/babel-preset-metro-react-native", - "comment": "Updated tests following a bug fix in `babel-plugin-import-path-remapper`", - "commit": "ac474077fa1675e2faaa74ced891ba1e1a6673f0" - } - ], - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/babel-preset-metro-react-native", - "commit": "ac474077fa1675e2faaa74ced891ba1e1a6673f0", - "comment": "Bump @rnx-kit/babel-preset-metro-react-native to v1.0.5" - } - ] - } - }, - { - "date": "Mon, 16 Aug 2021 14:17:13 GMT", - "tag": "@rnx-kit/babel-preset-metro-react-native_v1.0.4", - "version": "1.0.4", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/babel-preset-metro-react-native", - "comment": "Add support for @babel/plugin-transform-typescript 7.15", - "commit": "59fb7d424f11437a534812df67804544baddeacc" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:45 GMT", - "tag": "@rnx-kit/babel-preset-metro-react-native_v1.0.3", - "version": "1.0.3", - "comments": { - "none": [ - { - "comment": "Added `format` script", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "eaedb2cae443a479e131cfd71fab5c1039daca9d", - "package": "@rnx-kit/babel-preset-metro-react-native" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:25 GMT", - "tag": "@rnx-kit/babel-preset-metro-react-native_v1.0.3", - "version": "1.0.3", - "comments": { - "none": [ - { - "comment": "Added `format` script", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "12196abcec79794493615829c3783d35f5bfc364", - "package": "@rnx-kit/babel-preset-metro-react-native" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:47 GMT", - "tag": "@rnx-kit/babel-preset-metro-react-native_v1.0.3", - "version": "1.0.3", - "comments": { - "none": [ - { - "comment": "Add badges for build status and version", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "2dc9fe456410eed10abbfa464ae7aa7e5cef7aef", - "package": "@rnx-kit/babel-preset-metro-react-native" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:07 GMT", - "tag": "@rnx-kit/babel-preset-metro-react-native_v1.0.3", - "version": "1.0.3", - "comments": { - "none": [ - { - "comment": "Add badges for build status and version", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "f3ff6e5f5c20cf9e8c81ca25a4fae3f483925c59", - "package": "@rnx-kit/babel-preset-metro-react-native" - } - ] - } - }, - { - "date": "Mon, 28 Jun 2021 14:19:44 GMT", - "tag": "@rnx-kit/babel-preset-metro-react-native_v1.0.3", - "version": "1.0.3", - "comments": { - "none": [ - { - "comment": "Ran depcheck and cleaned up dependencies", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4794d9d1b5f8b9d1174dc0799291ff2e0a19b792", - "package": "@rnx-kit/babel-preset-metro-react-native" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 09:28:25 GMT", - "tag": "@rnx-kit/babel-preset-metro-react-native_v1.0.3", - "version": "1.0.3", - "comments": { - "none": [ - { - "comment": "Added ESLint config", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4701f7a40c050f8d376fbcfc84ce6e50f5fcf501", - "package": "@rnx-kit/babel-preset-metro-react-native" - } - ] - } - }, - { - "date": "Tue, 18 May 2021 19:20:51 GMT", - "tag": "@rnx-kit/babel-preset-metro-react-native_v1.0.3", - "version": "1.0.3", - "comments": { - "patch": [ - { - "comment": "Move @babel/core to dependencies.", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c767296fbf6f78fc5259cd6ddbd4d219891922e0", - "package": "@rnx-kit/babel-preset-metro-react-native" - } - ] - } - }, - { - "date": "Thu, 06 May 2021 20:37:55 GMT", - "tag": "@rnx-kit/babel-preset-metro-react-native_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "comment": "Split tsconfig options out into a shared file that can be included in all projects without specifying any source files.", - "author": "afoxman@microsoft.com", - "commit": "c34ccb3ca74893ea0741603b46aa96a238d59831", - "package": "@rnx-kit/babel-preset-metro-react-native" - } - ] - } - }, - { - "date": "Fri, 16 Apr 2021 12:03:52 GMT", - "tag": "@rnx-kit/babel-preset-metro-react-native_v1.0.2", - "version": "1.0.2", - "comments": { - "patch": [ - { - "comment": "Allow forwarding options to Metro", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "770100be65c0c06f380769ace3f287d27d4408c0", - "package": "@rnx-kit/babel-preset-metro-react-native" - } - ] - } - }, - { - "date": "Wed, 07 Apr 2021 16:29:26 GMT", - "tag": "@rnx-kit/babel-preset-metro-react-native_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "comment": "Address unmet dependency warning", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "85047602b77d9eb201c3aad51b8206d504a70eb3", - "package": "@rnx-kit/babel-preset-metro-react-native" - } - ] - } - }, - { - "date": "Mon, 15 Mar 2021 07:09:22 GMT", - "tag": "@rnx-kit/babel-preset-metro-react-native_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "comment": "Test Babel plugins are applied", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "38515b5c325c76c6ac6652757433c62deb2e811c", - "package": "@rnx-kit/babel-preset-metro-react-native" - } - ] - } - }, - { - "date": "Thu, 11 Mar 2021 23:54:05 GMT", - "tag": "@rnx-kit/babel-preset-metro-react-native_v1.0.1", - "version": "1.0.1", - "comments": { - "patch": [ - { - "comment": "Fixed a typo in README", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "ad889b0e030e217d9df940a3aa605da6387fbc19", - "package": "@rnx-kit/babel-preset-metro-react-native" - } - ] - } - }, - { - "date": "Thu, 11 Mar 2021 15:17:06 GMT", - "tag": "@rnx-kit/babel-preset-metro-react-native_v1.0.0", - "version": "1.0.0", - "comments": { - "minor": [ - { - "comment": "Introduce Babel preset for React Native applications", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "69a7140e2bfbab0799d1339d62a4c7b989e02fcb", - "package": "@rnx-kit/babel-preset-metro-react-native" - } - ] - } - } - ] -} diff --git a/packages/bundle-diff/CHANGELOG.json b/packages/bundle-diff/CHANGELOG.json deleted file mode 100644 index 8bec2c811..000000000 --- a/packages/bundle-diff/CHANGELOG.json +++ /dev/null @@ -1,298 +0,0 @@ -{ - "name": "@rnx-kit/bundle-diff", - "entries": [ - { - "date": "Thu, 18 Nov 2021 20:51:04 GMT", - "tag": "@rnx-kit/bundle-diff_v1.0.10", - "version": "1.0.10", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/bundle-diff", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/bundle-diff_v1.0.9", - "version": "1.0.9", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/bundle-diff", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/bundle-diff_v1.0.9", - "version": "1.0.9", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/bundle-diff", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Mon, 01 Nov 2021 13:46:12 GMT", - "tag": "@rnx-kit/bundle-diff_v1.0.6", - "version": "1.0.6", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/bundle-diff", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb", - "comment": "Normalize main and types fields across all packages which use them." - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 16:06:09 GMT", - "tag": "@rnx-kit/bundle-diff_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/bundle-diff", - "comment": "Upgrade Jest to v27", - "commit": "f7b4eeebbd2576f83048ce5d2a0c538574d76c99" - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 16:05:55 GMT", - "tag": "@rnx-kit/bundle-diff_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/bundle-diff", - "comment": "Upgrade Jest to v27", - "commit": "4463a88285b37b622deb06717c92ff0f3c5451ad" - } - ] - } - }, - { - "date": "Wed, 08 Sep 2021 06:42:50 GMT", - "tag": "@rnx-kit/bundle-diff_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/bundle-diff", - "comment": "Use repo Jest preset", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3" - } - ] - } - }, - { - "date": "Tue, 24 Aug 2021 08:09:36 GMT", - "tag": "@rnx-kit/bundle-diff_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/bundle-diff", - "commit": "ccf242e997e1b399f3dc7253f36e5639a3e64036", - "comment": "Bump @rnx-kit/bundle-diff to v1.0.2" - } - ] - } - }, - { - "date": "Wed, 04 Aug 2021 10:08:23 GMT", - "tag": "@rnx-kit/bundle-diff_v1.0.2", - "version": "1.0.2", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/bundle-diff", - "commit": "1d13d5df2ec61bb3426521199cde4e588cb849b1", - "comment": "Bump @rnx-kit/bundle-diff to v1.0.2" - } - ] - } - }, - { - "date": "Thu, 29 Jul 2021 19:42:04 GMT", - "tag": "@rnx-kit/bundle-diff_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/bundle-diff", - "comment": "Replace @rnx-kit/babel-preset-jest-typescript with @rnx-kit/jest-preset", - "commit": "bf6cf5092d383a447d0075fcf4f2584bbb347236" - } - ], - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/bundle-diff", - "commit": "bf6cf5092d383a447d0075fcf4f2584bbb347236", - "comment": "Bump @rnx-kit/bundle-diff to v1.0.1" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 09:53:10 GMT", - "tag": "@rnx-kit/bundle-diff_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Added `lint` script", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "d5c36bb21e3482c24ff8b029cb60802d04e6bb64", - "package": "@rnx-kit/bundle-diff" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:45 GMT", - "tag": "@rnx-kit/bundle-diff_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Added `format` script", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "eaedb2cae443a479e131cfd71fab5c1039daca9d", - "package": "@rnx-kit/bundle-diff" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:25 GMT", - "tag": "@rnx-kit/bundle-diff_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Added `format` script", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "12196abcec79794493615829c3783d35f5bfc364", - "package": "@rnx-kit/bundle-diff" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:47 GMT", - "tag": "@rnx-kit/bundle-diff_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Add badges for build status and version", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "2dc9fe456410eed10abbfa464ae7aa7e5cef7aef", - "package": "@rnx-kit/bundle-diff" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:07 GMT", - "tag": "@rnx-kit/bundle-diff_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Add badges for build status and version", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "f3ff6e5f5c20cf9e8c81ca25a4fae3f483925c59", - "package": "@rnx-kit/bundle-diff" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 09:28:25 GMT", - "tag": "@rnx-kit/bundle-diff_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Added ESLint config", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4701f7a40c050f8d376fbcfc84ce6e50f5fcf501", - "package": "@rnx-kit/bundle-diff" - } - ] - } - }, - { - "date": "Thu, 06 May 2021 20:37:55 GMT", - "tag": "@rnx-kit/bundle-diff_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Split tsconfig options out into a shared file that can be included in all projects without specifying any source files.", - "author": "afoxman@microsoft.com", - "commit": "c34ccb3ca74893ea0741603b46aa96a238d59831", - "package": "@rnx-kit/bundle-diff" - } - ] - } - }, - { - "date": "Wed, 05 May 2021 07:05:52 GMT", - "tag": "@rnx-kit/bundle-diff_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Use Babel preset for Jest + TypeScript", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c8ab12de29e878b96cb44fdff06aaf2e0ea868d7", - "package": "@rnx-kit/bundle-diff" - } - ] - } - }, - { - "date": "Thu, 29 Apr 2021 12:34:45 GMT", - "tag": "@rnx-kit/bundle-diff_v1.0.0", - "version": "1.0.0", - "comments": { - "minor": [ - { - "comment": "Simple tool for diffing the content of two bundles", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "2ee84ee361193306335278db7f6c2399155a54e2", - "package": "@rnx-kit/bundle-diff" - } - ] - } - } - ] -} diff --git a/packages/cli/CHANGELOG.json b/packages/cli/CHANGELOG.json deleted file mode 100644 index 7489c0042..000000000 --- a/packages/cli/CHANGELOG.json +++ /dev/null @@ -1,3289 +0,0 @@ -{ - "name": "@rnx-kit/cli", - "entries": [ - { - "date": "Tue, 30 Nov 2021 17:24:14 GMT", - "tag": "@rnx-kit/cli_v0.9.54", - "version": "0.9.54", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/config to v0.4.21", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/console to v1.0.11", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/dep-check to v1.9.5", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.21", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.2.15", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-serializer to v1.0.11", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.23", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-service to v1.1.13", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/third-party-notices to v1.2.13", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-language to v1.2.6", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-node to v1.2.6", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-react-native to v1.0.10", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/typescript-react-native-resolver to v0.1.3", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/typescript-service to v1.5.3", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - } - ] - } - }, - { - "date": "Fri, 19 Nov 2021 16:08:47 GMT", - "tag": "@rnx-kit/cli_v0.9.53", - "version": "0.9.53", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/typescript-react-native-resolver to v0.1.2", - "commit": "0654e1e1433ba6ae20f5696aa78529e0c0d6e415" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/typescript-service to v1.5.2", - "commit": "0654e1e1433ba6ae20f5696aa78529e0c0d6e415" - } - ] - } - }, - { - "date": "Thu, 18 Nov 2021 20:51:04 GMT", - "tag": "@rnx-kit/cli_v0.9.52", - "version": "0.9.52", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ], - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/config to v0.4.20", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/console to v1.0.10", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/dep-check to v1.9.4", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.20", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.2.14", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-serializer to v1.0.10", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.22", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-service to v1.1.12", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/third-party-notices to v1.2.12", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-language to v1.2.5", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-node to v1.2.5", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-react-native to v1.0.9", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/typescript-react-native-resolver to v0.1.1", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/typescript-service to v1.5.1", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - } - ] - } - }, - { - "date": "Tue, 16 Nov 2021 14:33:15 GMT", - "tag": "@rnx-kit/cli_v0.9.51", - "version": "0.9.51", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/dep-check to v1.9.3", - "commit": "5e6b37004875b8778dbb7c889aee715a7952bf0b" - } - ] - } - }, - { - "date": "Mon, 15 Nov 2021 12:33:07 GMT", - "tag": "@rnx-kit/cli_v0.9.50", - "version": "0.9.50", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/dep-check to v1.9.2", - "commit": "ff0bfe9f7ca3fec970417f64dcd4e41da3c99939" - } - ] - } - }, - { - "date": "Fri, 12 Nov 2021 13:04:39 GMT", - "tag": "@rnx-kit/cli_v0.9.49", - "version": "0.9.49", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/dep-check to v1.9.1", - "commit": "646b90d5771c866d78a9ffcb0375ce8dab018101" - } - ] - } - }, - { - "date": "Thu, 11 Nov 2021 17:49:21 GMT", - "tag": "@rnx-kit/cli_v0.9.48", - "version": "0.9.48", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/dep-check to v1.9.0", - "commit": "c40418e51589ab5b862989e25b7708fba62ba5c1" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 21:11:31 GMT", - "tag": "@rnx-kit/cli_v0.9.47", - "version": "0.9.47", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "commit": "f75a209043f131e09b32b8783bf912a8c14f26f7", - "comment": "Update the CLI's Metro/TS integration to use the new, generalized resolver in @rnx-kit/typescript-react-native-resolver. Remove the unneeded \"default\" resolver." - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/typescript-react-native-resolver to v0.1.0", - "commit": "f75a209043f131e09b32b8783bf912a8c14f26f7" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/typescript-service to v1.5.0", - "commit": "f75a209043f131e09b32b8783bf912a8c14f26f7" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/cli_v0.9.46", - "version": "0.9.46", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/cli_v0.9.46", - "version": "0.9.46", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 16:33:53 GMT", - "tag": "@rnx-kit/cli_v0.9.46", - "version": "0.9.46", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "commit": "not available", - "comment": "Transition from using our private Metro @types packages to the officially published @types packages." - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 16:31:46 GMT", - "tag": "@rnx-kit/cli_v0.9.46", - "version": "0.9.46", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "commit": "9c3acf4028bb449e60340b1096993b3f3fe462d5", - "comment": "Transition from using our private Metro @types packages to the officially published @types packages." - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 10:20:15 GMT", - "tag": "@rnx-kit/cli_v0.9.46", - "version": "0.9.46", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "3b0b310ba9394c145fd1570043c0649f1f9200e7", - "comment": "Default value for `projectRoot` overrides value in Metro config" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/config to v0.4.19", - "commit": "62e605f399f6c0817054a16d7e398d9876d9bbc2" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/dep-check to v1.8.18", - "commit": "62e605f399f6c0817054a16d7e398d9876d9bbc2" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 19:24:49 GMT", - "tag": "@rnx-kit/cli_v0.9.45", - "version": "0.9.45", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/config to v0.4.18", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/console to v1.0.9", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/dep-check to v1.8.17", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.19", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.2.13", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-serializer to v1.0.9", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.21", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-service to v1.1.11", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/third-party-notices to v1.2.11", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-language to v1.2.4", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-node to v1.2.4", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-react-native to v1.0.8", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/typescript-service to v1.4.3", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 07:33:42 GMT", - "tag": "@rnx-kit/cli_v0.9.44", - "version": "0.9.44", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/config to v0.4.17", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/console to v1.0.8", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/dep-check to v1.8.16", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.18", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.2.12", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-serializer to v1.0.8", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.20", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-service to v1.1.10", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/third-party-notices to v1.2.10", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-language to v1.2.3", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-node to v1.2.3", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-react-native to v1.0.7", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/typescript-service to v1.4.2", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - } - ] - } - }, - { - "date": "Wed, 03 Nov 2021 18:15:39 GMT", - "tag": "@rnx-kit/cli_v0.9.43", - "version": "0.9.43", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/config to v0.4.16", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/console to v1.0.7", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/dep-check to v1.8.15", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.17", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.2.11", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-serializer to v1.0.7", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.19", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-service to v1.1.9", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/third-party-notices to v1.2.9", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-language to v1.2.2", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-node to v1.2.2", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-react-native to v1.0.6", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/typescript-service to v1.4.1", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - } - ] - } - }, - { - "date": "Mon, 01 Nov 2021 15:07:43 GMT", - "tag": "@rnx-kit/cli_v0.9.42", - "version": "0.9.42", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "commit": "a45168c5c37cde1565d91cf6b4f7f24e50696a0e", - "comment": "Update the CLI, adjusting it to use the new typescript-service package." - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/typescript-service to v1.4.0", - "commit": "a45168c5c37cde1565d91cf6b4f7f24e50696a0e" - } - ] - } - }, - { - "date": "Mon, 01 Nov 2021 13:46:12 GMT", - "tag": "@rnx-kit/cli_v0.9.41", - "version": "0.9.41", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb", - "comment": "Normalize main and types fields across all packages which use them." - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/config to v0.4.15", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/console to v1.0.6", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/dep-check to v1.8.14", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.16", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.2.10", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-serializer to v1.0.6", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.18", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-service to v1.1.8", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/third-party-notices to v1.2.8", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-language to v1.2.1", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-node to v1.2.1", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-react-native to v1.0.5", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/typescript-service to v1.3.10", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - } - ] - } - }, - { - "date": "Sat, 30 Oct 2021 07:50:51 GMT", - "tag": "@rnx-kit/cli_v0.9.40", - "version": "0.9.40", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/config to v0.4.14", - "commit": "6133f8fe0298611e4c736e94b46f32752d139e76" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/dep-check to v1.8.13", - "commit": "6133f8fe0298611e4c736e94b46f32752d139e76" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.15", - "commit": "6133f8fe0298611e4c736e94b46f32752d139e76" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.2.9", - "commit": "6133f8fe0298611e4c736e94b46f32752d139e76" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-service to v1.1.7", - "commit": "6133f8fe0298611e4c736e94b46f32752d139e76" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/third-party-notices to v1.2.7", - "commit": "6133f8fe0298611e4c736e94b46f32752d139e76" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-language to v1.2.0", - "commit": "6133f8fe0298611e4c736e94b46f32752d139e76" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-node to v1.2.0", - "commit": "6133f8fe0298611e4c736e94b46f32752d139e76" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/typescript-service to v1.3.9", - "commit": "6133f8fe0298611e4c736e94b46f32752d139e76" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 14:13:32 GMT", - "tag": "@rnx-kit/cli_v0.9.39", - "version": "0.9.39", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/dep-check to v1.8.12", - "commit": "1a724093ce98611f0d2d40b37de9c91119deb5f1" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 12:14:31 GMT", - "tag": "@rnx-kit/cli_v0.9.38", - "version": "0.9.38", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/config to v0.4.13", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/console to v1.0.5", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/dep-check to v1.8.11", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.14", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.2.8", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-serializer to v1.0.5", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.17", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-service to v1.1.6", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/third-party-notices to v1.2.6", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-language to v1.1.4", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-node to v1.1.6", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-react-native to v1.0.4", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/typescript-service to v1.3.8", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 10:31:10 GMT", - "tag": "@rnx-kit/cli_v0.9.37", - "version": "0.9.37", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/config to v0.4.12", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/console to v1.0.4", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/dep-check to v1.8.10", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.13", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.2.7", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-serializer to v1.0.4", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.16", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-service to v1.1.5", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/third-party-notices to v1.2.5", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-language to v1.1.3", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-node to v1.1.5", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-react-native to v1.0.3", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/typescript-service to v1.3.7", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 08:51:30 GMT", - "tag": "@rnx-kit/cli_v0.9.36", - "version": "0.9.36", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/config to v0.4.11", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/console to v1.0.3", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/dep-check to v1.8.9", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.12", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.2.6", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-serializer to v1.0.3", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.15", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/metro-service to v1.1.4", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/third-party-notices to v1.2.4", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-language to v1.1.2", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-node to v1.1.4", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/tools-react-native to v1.0.2", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/typescript-service to v1.3.6", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - } - ] - } - }, - { - "date": "Tue, 26 Oct 2021 17:22:16 GMT", - "tag": "@rnx-kit/cli_v0.9.35", - "version": "0.9.35", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/dep-check to v1.8.8", - "commit": "feff223563721779580bf96e6b1c71db4c3081c9" - } - ] - } - }, - { - "date": "Thu, 14 Oct 2021 07:54:03 GMT", - "tag": "@rnx-kit/cli_v0.9.34", - "version": "0.9.34", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/dep-check to v1.8.7", - "commit": "0e1c7f2ede6feeaa12df3b43b33516df7fb88f95" - } - ] - } - }, - { - "date": "Wed, 29 Sep 2021 11:02:41 GMT", - "tag": "@rnx-kit/cli_v0.9.33", - "version": "0.9.33", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/config to v0.4.10", - "commit": "9cc04af545d3c278daa05687277adbdabcff6eed" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/dep-check to v1.8.6", - "commit": "9cc04af545d3c278daa05687277adbdabcff6eed" - } - ] - } - }, - { - "date": "Wed, 29 Sep 2021 09:09:11 GMT", - "tag": "@rnx-kit/cli_v0.9.32", - "version": "0.9.32", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/dep-check to v1.8.5", - "commit": "67b92e575fa8a8ed4d631a1f953009fe5582f33d" - } - ] - } - }, - { - "date": "Mon, 27 Sep 2021 12:28:41 GMT", - "tag": "@rnx-kit/cli_v0.9.31", - "version": "0.9.31", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/config to v0.4.9", - "commit": "e0c30adaae8b368a6c5b2d66dc9e69fdab5b8c71" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/dep-check to v1.8.4", - "commit": "e0c30adaae8b368a6c5b2d66dc9e69fdab5b8c71" - } - ] - } - }, - { - "date": "Mon, 27 Sep 2021 10:56:47 GMT", - "tag": "@rnx-kit/cli_v0.9.30", - "version": "0.9.30", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/config to v0.4.8", - "commit": "d1640ad5e33316d66dbb969e8c8242b0c0ca9ffa" - }, - { - "author": "beachball", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/dep-check to v1.8.3", - "commit": "d1640ad5e33316d66dbb969e8c8242b0c0ca9ffa" - } - ] - } - }, - { - "date": "Tue, 14 Sep 2021 15:28:16 GMT", - "tag": "@rnx-kit/cli_v0.9.29", - "version": "0.9.29", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "9d8cbae61aa4942747d1c7c1e9bd007d764168de", - "comment": "Bump @rnx-kit/cli to v0.9.29" - } - ] - } - }, - { - "date": "Mon, 13 Sep 2021 18:43:23 GMT", - "tag": "@rnx-kit/cli_v0.9.28", - "version": "0.9.28", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "comment": "Fix plugins cannot be disabled when bundling/serving", - "commit": "879da8b132357b2b19d643ee4f508d11a69e81ef" - } - ] - } - }, - { - "date": "Mon, 13 Sep 2021 17:38:26 GMT", - "tag": "@rnx-kit/cli_v0.9.27", - "version": "0.9.27", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "b912e8f7cc3d3ee7a7b31768d10fc8077c9f622d", - "comment": "Bump @rnx-kit/cli to v0.9.27" - } - ] - } - }, - { - "date": "Wed, 08 Sep 2021 07:04:15 GMT", - "tag": "@rnx-kit/cli_v0.9.26", - "version": "0.9.26", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "a3f63fb86e5facc1f7251abc116e3d23aca37473", - "comment": "Bump @rnx-kit/cli to v0.9.26" - } - ] - } - }, - { - "date": "Wed, 08 Sep 2021 06:42:50 GMT", - "tag": "@rnx-kit/cli_v0.9.25", - "version": "0.9.25", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "comment": "Use repo Jest preset", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3", - "comment": "Bump @rnx-kit/cli to v0.9.25" - } - ] - } - }, - { - "date": "Mon, 06 Sep 2021 06:57:59 GMT", - "tag": "@rnx-kit/cli_v0.9.25", - "version": "0.9.25", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "263c7c4d160895f857f6b76b147ad3c6a5e97343", - "comment": "Bump @rnx-kit/cli to v0.9.25" - } - ] - } - }, - { - "date": "Fri, 03 Sep 2021 12:18:30 GMT", - "tag": "@rnx-kit/cli_v0.9.24", - "version": "0.9.24", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "ced0ef438232d91f7fa527f51e23e6da9e7dbf2c", - "comment": "Bump @rnx-kit/cli to v0.9.24" - } - ] - } - }, - { - "date": "Fri, 03 Sep 2021 09:49:28 GMT", - "tag": "@rnx-kit/cli_v0.9.23", - "version": "0.9.23", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "73624d095f4e874d5ceee8d123c9b8fedfdf0452", - "comment": "Bump @rnx-kit/cli to v0.9.23" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 10:50:41 GMT", - "tag": "@rnx-kit/cli_v0.9.22", - "version": "0.9.22", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "ff12b97c1107ad1eb6d253f74ff0f3daa7ec1b26", - "comment": "Bump @rnx-kit/cli to v0.9.22" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 07:00:17 GMT", - "tag": "@rnx-kit/cli_v0.9.21", - "version": "0.9.21", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "0eecc568dd8ff556cd3964772c614cbbf7eefb98", - "comment": "Bump @rnx-kit/cli to v0.9.21" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 06:43:13 GMT", - "tag": "@rnx-kit/cli_v0.9.21", - "version": "0.9.21", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "25b936b3786f2a37dc6feacb4034e6afb56e343b", - "comment": "Bump @rnx-kit/cli to v0.9.21" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 06:21:44 GMT", - "tag": "@rnx-kit/cli_v0.9.20", - "version": "0.9.20", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "eed680eae677e25f2b0b70e832319260271cc0e6", - "comment": "Bump @rnx-kit/cli to v0.9.20" - } - ] - } - }, - { - "date": "Fri, 27 Aug 2021 18:41:43 GMT", - "tag": "@rnx-kit/cli_v0.9.20", - "version": "0.9.20", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "dcb826baf0cc3705b460776bdb31e19930f4f2dc", - "comment": "Bump @rnx-kit/cli to v0.9.20" - } - ] - } - }, - { - "date": "Thu, 26 Aug 2021 17:24:29 GMT", - "tag": "@rnx-kit/cli_v0.9.19", - "version": "0.9.19", - "comments": { - "patch": [ - { - "author": "dannyvv@microsoft.com", - "package": "@rnx-kit/cli", - "commit": "28439d4f5c7da369bfb8cea52afc5b72988c015c", - "comment": "Bump @rnx-kit/cli to v0.9.19" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 16:13:13 GMT", - "tag": "@rnx-kit/cli_v0.9.18", - "version": "0.9.18", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "comment": "Separate out the code which converts from a bundle config to Metro bundle args. Add tests for the conversion.", - "commit": "a66b07778871fffd7921acf14e697031432c424e" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 08:52:48 GMT", - "tag": "@rnx-kit/cli_v0.9.18", - "version": "0.9.18", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "comment": "Mechanical change -- move metro-specific bundling logic to its own file. No code changes.", - "commit": "0e657ab7ff261ebf6873ef7418cbb40d6418ca8e" - }, - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "comment": "Use createDirectory tools function", - "commit": "0e657ab7ff261ebf6873ef7418cbb40d6418ca8e" - } - ], - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "commit": "0e657ab7ff261ebf6873ef7418cbb40d6418ca8e", - "comment": "Bump @rnx-kit/cli to v0.9.18" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 08:31:56 GMT", - "tag": "@rnx-kit/cli_v0.9.17", - "version": "0.9.17", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "comment": "Make `@react-native-community/cli-server-api` optional. We want to prevent cli from installing an extra copy, and also not require the user to explicitly add it to their dependencies. Since we're running inside `@react-native-community/cli`, it is reasonable to assume that this package will be installed. And if it isn't, we need to update our code anyway.", - "commit": "09e3ee0807e9558a0c46b252b2662c524095c41c" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 07:32:57 GMT", - "tag": "@rnx-kit/cli_v0.9.16", - "version": "0.9.16", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "comment": "Create a new type to encapsulate everything needed for bundling. Use this as the main type for driving metro bundle runs in the rnxBundle loop.", - "commit": "b8093ce5af4bcdad1b2d91b45da54ee640fab8ae" - }, - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "commit": "b8093ce5af4bcdad1b2d91b45da54ee640fab8ae", - "comment": "Bump @rnx-kit/cli to v0.9.16" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 06:13:43 GMT", - "tag": "@rnx-kit/cli_v0.9.15", - "version": "0.9.15", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "comment": "Bump @react-native-community/cli to 6.0", - "commit": "0ef422105802569f5ce0688aea238926c9570fe9" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "0ef422105802569f5ce0688aea238926c9570fe9", - "comment": "Bump @rnx-kit/cli to v0.9.15" - } - ] - } - }, - { - "date": "Tue, 24 Aug 2021 09:20:39 GMT", - "tag": "@rnx-kit/cli_v0.9.15", - "version": "0.9.15", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "comment": "Combine all kit config retrieval under getKitBundleConfigs. Move \"apply overrides\" out of the config loop. When applying overrides, do it across all kit bundle configs, not just one at a time.", - "commit": "47bed722fef16852bd119dc460e500f4e6a5521e" - } - ] - } - }, - { - "date": "Tue, 24 Aug 2021 08:15:03 GMT", - "tag": "@rnx-kit/cli_v0.9.14", - "version": "0.9.14", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "comment": "Create type KitBundleConfig which combines a platform and its bundle configuration. Update rnxBundle to build a set of these, and apply command-line overrides to each one. Add/update related tests.", - "commit": "b72c487ff1c4a6e5750a5c6156b4283e632683d4" - } - ] - } - }, - { - "date": "Tue, 24 Aug 2021 08:09:36 GMT", - "tag": "@rnx-kit/cli_v0.9.13", - "version": "0.9.13", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "ccf242e997e1b399f3dc7253f36e5639a3e64036", - "comment": "Bump @rnx-kit/cli to v0.9.13" - } - ] - } - }, - { - "date": "Mon, 23 Aug 2021 18:57:47 GMT", - "tag": "@rnx-kit/cli_v0.9.13", - "version": "0.9.13", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "comment": "Fix type-checking on windows", - "commit": "113f0631a2342c55ee52046ec3c70b14b9962303" - } - ] - } - }, - { - "date": "Mon, 23 Aug 2021 18:52:43 GMT", - "tag": "@rnx-kit/cli_v0.9.12", - "version": "0.9.12", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "36fc1c476c151223208d9f35c8a68a386807e3be", - "comment": "Bump @rnx-kit/cli to v0.9.12" - } - ] - } - }, - { - "date": "Mon, 23 Aug 2021 18:18:31 GMT", - "tag": "@rnx-kit/cli_v0.9.12", - "version": "0.9.12", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "comment": "Fix targeting bug in bundle command", - "commit": "0f3e59491a4c9f9389dacb32d4161031179da2ba" - } - ] - } - }, - { - "date": "Mon, 23 Aug 2021 17:58:06 GMT", - "tag": "@rnx-kit/cli_v0.9.11", - "version": "0.9.11", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "comment": "Separate the retrieval of a platform bundle definition from applying overrides to it. Move override logic into its own source file. Move override tests to their own suite.", - "commit": "45341d8c509d074de7e45b9ea071a91babe12fae" - } - ] - } - }, - { - "date": "Mon, 23 Aug 2021 17:40:48 GMT", - "tag": "@rnx-kit/cli_v0.9.11", - "version": "0.9.11", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "comment": "Update serializer hook to do full TypeScript validation with platform override support as well as module-name substitution support", - "commit": "44540aa06df3f7ec554caf13bad7acd16a74a381" - }, - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "commit": "44540aa06df3f7ec554caf13bad7acd16a74a381", - "comment": "Bump @rnx-kit/cli to v0.9.11" - } - ], - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "comment": "Add tests for bundle/kit-config", - "commit": "44540aa06df3f7ec554caf13bad7acd16a74a381" - } - ] - } - }, - { - "date": "Mon, 23 Aug 2021 17:18:07 GMT", - "tag": "@rnx-kit/cli_v0.9.10", - "version": "0.9.10", - "comments": { - "patch": [ - { - "author": "sverre.johansen@gmail.com", - "package": "@rnx-kit/cli", - "commit": "7200426250deb288fb38a3d8da91bb74a0e71437", - "comment": "Bump @rnx-kit/cli to v0.9.10" - } - ] - } - }, - { - "date": "Mon, 23 Aug 2021 09:13:20 GMT", - "tag": "@rnx-kit/cli_v0.9.9", - "version": "0.9.9", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "comment": "Mechanical change: move kit-config code into separate bundle and serve files. No code changes.", - "commit": "528f370fdcdd2db2523eaa9e0ade9ed6f100d775" - } - ] - } - }, - { - "date": "Mon, 23 Aug 2021 08:49:21 GMT", - "tag": "@rnx-kit/cli_v0.9.9", - "version": "0.9.9", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "comment": "`--experimental-tree-shake` shouldn't need extra config", - "commit": "32ae291705cd20962bf4f315972d74ea088b7455" - } - ] - } - }, - { - "date": "Sat, 21 Aug 2021 08:22:48 GMT", - "tag": "@rnx-kit/cli_v0.9.8", - "version": "0.9.8", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "comment": "Integrate tools package and other common libraries throughout monorepo, removing custom code.", - "commit": "f65f706c734841c4339ca1f825b9c9505cea8941" - }, - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "commit": "f65f706c734841c4339ca1f825b9c9505cea8941", - "comment": "Bump @rnx-kit/cli to v0.9.8" - } - ] - } - }, - { - "date": "Fri, 20 Aug 2021 09:36:58 GMT", - "tag": "@rnx-kit/cli_v0.9.7", - "version": "0.9.7", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "comment": "Fix `--experimental-tree-shake` not being applied correctly", - "commit": "2deee7a9285f3899e99aca2135ecd123fc777de2" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "2deee7a9285f3899e99aca2135ecd123fc777de2", - "comment": "Bump @rnx-kit/cli to v0.9.7" - } - ] - } - }, - { - "date": "Thu, 19 Aug 2021 07:59:20 GMT", - "tag": "@rnx-kit/cli_v0.9.6", - "version": "0.9.6", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "84c80d34cad6f8452954f3fcbb7d0ad5457055d5", - "comment": "Bump @rnx-kit/cli to v0.9.6" - } - ] - } - }, - { - "date": "Wed, 18 Aug 2021 14:54:20 GMT", - "tag": "@rnx-kit/cli_v0.9.5", - "version": "0.9.5", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "comment": "Allow apps to depend on a newer version of React Native than their dependencies declare support for via the `--loose` flag.", - "commit": "f6651e5391d69c5c77d495a447a546c0f9abba1e" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "f6651e5391d69c5c77d495a447a546c0f9abba1e", - "comment": "Bump @rnx-kit/cli to v0.9.5" - } - ] - } - }, - { - "date": "Tue, 17 Aug 2021 20:18:02 GMT", - "tag": "@rnx-kit/cli_v0.9.4", - "version": "0.9.4", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "comment": "Fix `rnx-test` failing under Jest 27", - "commit": "13dcd0c6da90c76db9ee188658b9f9aa5cb034d6" - } - ] - } - }, - { - "date": "Tue, 17 Aug 2021 09:36:56 GMT", - "tag": "@rnx-kit/cli_v0.9.3", - "version": "0.9.3", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "comment": "Fix arguments not being properly forwarded to dep-check", - "commit": "150ed8e6ffca098c9bb72f5cd9e466a6d3ee393b" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "150ed8e6ffca098c9bb72f5cd9e466a6d3ee393b", - "comment": "Bump @rnx-kit/cli to v0.9.3" - } - ] - } - }, - { - "date": "Mon, 16 Aug 2021 14:17:13 GMT", - "tag": "@rnx-kit/cli_v0.9.2", - "version": "0.9.2", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "comment": "Bump @rnx-kit/console to 1.0.2", - "commit": "59fb7d424f11437a534812df67804544baddeacc" - } - ] - } - }, - { - "date": "Fri, 13 Aug 2021 13:30:40 GMT", - "tag": "@rnx-kit/cli_v0.9.1", - "version": "0.9.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "74979015c3e51ca33e9c66a411e4457a9e1edd49", - "comment": "Bump @rnx-kit/cli to v0.9.1" - } - ] - } - }, - { - "date": "Fri, 06 Aug 2021 22:07:45 GMT", - "tag": "@rnx-kit/cli_v0.9.0", - "version": "0.9.0", - "comments": { - "minor": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "comment": "Add `rnx-start` command to CLI. Update docs", - "commit": "f8f9598f2be6df361dd6adb06921a05a46a1230b" - }, - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "commit": "f8f9598f2be6df361dd6adb06921a05a46a1230b", - "comment": "Bump @rnx-kit/cli to v0.9.0" - } - ] - } - }, - { - "date": "Fri, 06 Aug 2021 18:23:09 GMT", - "tag": "@rnx-kit/cli_v0.8.0", - "version": "0.8.0", - "comments": { - "minor": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "comment": "Refactor bundle command, moving kit and metro config logic to separate files. Add failure when no target platform is given. Remove command-line props which have no effect. Remove Metro config validation as it isn't workable with all the props we override. Update Metro hook function to track one TS project per platform. Fix Metro hook function: incorrectly using modified to delete file from TS project. Change @rnx-kit dependencies to semver ranges.", - "commit": "d4cc9733fff683948473f181fe649a30c8747103" - } - ] - } - }, - { - "date": "Fri, 06 Aug 2021 18:05:53 GMT", - "tag": "@rnx-kit/cli_v0.7.1", - "version": "0.7.1", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "commit": "e0c49e3c2e2acb7327f81f42d3023667b3887b93", - "comment": "Bump @rnx-kit/cli to v0.7.1" - } - ] - } - }, - { - "date": "Fri, 06 Aug 2021 17:50:49 GMT", - "tag": "@rnx-kit/cli_v0.7.0", - "version": "0.7.0", - "comments": { - "minor": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "comment": "Remove props which have no effect from bundle command.", - "commit": "97ec3dcb6845ec8b7e766d1916ed61728b80ef86" - }, - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/cli", - "commit": "97ec3dcb6845ec8b7e766d1916ed61728b80ef86", - "comment": "Bump @rnx-kit/cli to v0.7.0" - } - ] - } - }, - { - "date": "Wed, 04 Aug 2021 10:08:23 GMT", - "tag": "@rnx-kit/cli_v0.6.8", - "version": "0.6.8", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "1d13d5df2ec61bb3426521199cde4e588cb849b1", - "comment": "Bump @rnx-kit/cli to v0.6.8" - } - ] - } - }, - { - "date": "Mon, 02 Aug 2021 11:18:46 GMT", - "tag": "@rnx-kit/cli_v0.6.7", - "version": "0.6.7", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "comment": "jest-cli allows passing argv directly to run()", - "commit": "49774eaf30ab5f7e87f1464cc14d1d58c83fb037" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "49774eaf30ab5f7e87f1464cc14d1d58c83fb037", - "comment": "Bump @rnx-kit/cli to v0.6.7" - } - ] - } - }, - { - "date": "Fri, 30 Jul 2021 18:00:51 GMT", - "tag": "@rnx-kit/cli_v0.6.6", - "version": "0.6.6", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "comment": "Add JSON output format to `rnx-write-third-party-notices`", - "commit": "dd66becefd2a7e26e96d06c607a127700ecda9bc" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "dd66becefd2a7e26e96d06c607a127700ecda9bc", - "comment": "Bump @rnx-kit/cli to v0.6.6" - } - ] - } - }, - { - "date": "Thu, 29 Jul 2021 19:42:04 GMT", - "tag": "@rnx-kit/cli_v0.6.5", - "version": "0.6.5", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "comment": "Add `rnx-test` command for running Jest with React Native platform awareness", - "commit": "bf6cf5092d383a447d0075fcf4f2584bbb347236" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "bf6cf5092d383a447d0075fcf4f2584bbb347236", - "comment": "Bump @rnx-kit/cli to v0.6.5" - } - ] - } - }, - { - "date": "Mon, 26 Jul 2021 15:59:59 GMT", - "tag": "@rnx-kit/cli_v0.6.4", - "version": "0.6.4", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/cli", - "commit": "b02743b55c37ac6b32b11a747e01c2d43013f954", - "comment": "Bump @rnx-kit/cli to v0.6.4" - } - ] - } - }, - { - "date": "Thu, 22 Jul 2021 16:59:25 GMT", - "tag": "@rnx-kit/cli_v0.6.3", - "version": "0.6.3", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.6.3", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "722506bfdb7966d022c7804574812aa8543fc2de", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Tue, 20 Jul 2021 09:45:40 GMT", - "tag": "@rnx-kit/cli_v0.6.2", - "version": "0.6.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/cli to v0.6.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c5a30021862aad0f991cb985496bcc1a07120d11", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Fri, 16 Jul 2021 21:45:40 GMT", - "tag": "@rnx-kit/cli_v0.6.2", - "version": "0.6.2", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.6.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "eb831d4e7e3b540e6e380a678dd0238304ce7e38", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Tue, 13 Jul 2021 17:31:45 GMT", - "tag": "@rnx-kit/cli_v0.6.1", - "version": "0.6.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.6.1", - "author": "afoxman@microsoft.com", - "commit": "0f0c380b62f4ee8d40070048be13e99f707296d2", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Tue, 13 Jul 2021 17:03:23 GMT", - "tag": "@rnx-kit/cli_v0.6.0", - "version": "0.6.0", - "comments": { - "minor": [ - { - "comment": "Bump @rnx-kit/cli to v0.6.0", - "author": "afoxman@microsoft.com", - "commit": "a95b353ad91c18ed040cff23079edcc489645ca1", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Tue, 13 Jul 2021 13:40:11 GMT", - "tag": "@rnx-kit/cli_v0.5.36", - "version": "0.5.36", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.36", - "author": "lsciandra@microsoft.com", - "commit": "c9e8b65095d29973099c6ef2910dfc02160880de", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 21:55:53 GMT", - "tag": "@rnx-kit/cli_v0.5.35", - "version": "0.5.35", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.35", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "0de555701c26b643e8c80457f105933e405b7e34", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 17:30:15 GMT", - "tag": "@rnx-kit/cli_v0.5.34", - "version": "0.5.34", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.34", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "b7e5477028dc4e33cc78dbe23b5a8c3279105e80", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 09:53:10 GMT", - "tag": "@rnx-kit/cli_v0.5.33", - "version": "0.5.33", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.33", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "d5c36bb21e3482c24ff8b029cb60802d04e6bb64", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 08:34:12 GMT", - "tag": "@rnx-kit/cli_v0.5.33", - "version": "0.5.33", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.33", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "10e9415e4120495665d6f3448d89948eacc100b8", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 07:51:46 GMT", - "tag": "@rnx-kit/cli_v0.5.32", - "version": "0.5.32", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.32", - "author": "afoxman@microsoft.com", - "commit": "021cfdb3fe726b76a377b2a6cccbe16a6999bf7a", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:45 GMT", - "tag": "@rnx-kit/cli_v0.5.31", - "version": "0.5.31", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.31", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "eaedb2cae443a479e131cfd71fab5c1039daca9d", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:25 GMT", - "tag": "@rnx-kit/cli_v0.5.31", - "version": "0.5.31", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.31", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "12196abcec79794493615829c3783d35f5bfc364", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:47 GMT", - "tag": "@rnx-kit/cli_v0.5.31", - "version": "0.5.31", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.31", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "2dc9fe456410eed10abbfa464ae7aa7e5cef7aef", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:07 GMT", - "tag": "@rnx-kit/cli_v0.5.31", - "version": "0.5.31", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.31", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "f3ff6e5f5c20cf9e8c81ca25a4fae3f483925c59", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:21:45 GMT", - "tag": "@rnx-kit/cli_v0.5.31", - "version": "0.5.31", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.31", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "ea2c03568d7e64c763b9883072a7a75d5a445953", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:17:59 GMT", - "tag": "@rnx-kit/cli_v0.5.31", - "version": "0.5.31", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.31", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "10beb208470cb3d1c8de4c12a829da41dbf8983a", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Thu, 08 Jul 2021 09:26:30 GMT", - "tag": "@rnx-kit/cli_v0.5.30", - "version": "0.5.30", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.30", - "author": "afoxman@microsoft.com", - "commit": "dc1565a9c099dfb9fb336aec69ad41ecf05e0a8e", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Mon, 05 Jul 2021 15:15:06 GMT", - "tag": "@rnx-kit/cli_v0.5.30", - "version": "0.5.30", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.30", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "53faa95399eaad7a8df9c758335380029d0d2041", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Thu, 01 Jul 2021 13:59:39 GMT", - "tag": "@rnx-kit/cli_v0.5.30", - "version": "0.5.30", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.30", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "e06636db33664f9d57d598b445c4e6b437ee86ee", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Tue, 29 Jun 2021 06:01:48 GMT", - "tag": "@rnx-kit/cli_v0.5.29", - "version": "0.5.29", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.29", - "author": "afoxman@microsoft.com", - "commit": "0608b0120730c5cf0a78dd8bed80c18083851011", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Mon, 28 Jun 2021 14:19:44 GMT", - "tag": "@rnx-kit/cli_v0.5.28", - "version": "0.5.28", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.28", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4794d9d1b5f8b9d1174dc0799291ff2e0a19b792", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Fri, 25 Jun 2021 16:53:16 GMT", - "tag": "@rnx-kit/cli_v0.5.27", - "version": "0.5.27", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.27", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "1822fcdb44bce87b2f07551f9e31c2f099084b5e", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 17:54:11 GMT", - "tag": "@rnx-kit/cli_v0.5.26", - "version": "0.5.26", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.26", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "48a9a57e0163eb1edef65240d1f0eb95f78f0850", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 17:39:16 GMT", - "tag": "@rnx-kit/cli_v0.5.25", - "version": "0.5.25", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.25", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "41bc87cda7c7c74084abf9f3f8039b0b670ab6ba", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 17:38:46 GMT", - "tag": "@rnx-kit/cli_v0.5.25", - "version": "0.5.25", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.25", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c630c871d6747cb6631070f6f8ccba8d8933b353", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 09:28:25 GMT", - "tag": "@rnx-kit/cli_v0.5.25", - "version": "0.5.25", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.25", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4701f7a40c050f8d376fbcfc84ce6e50f5fcf501", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 07:30:22 GMT", - "tag": "@rnx-kit/cli_v0.5.25", - "version": "0.5.25", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.25", - "author": "afoxman@microsoft.com", - "commit": "167081c3c6c2ef84c461b420a9875184358a8ded", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 06:06:43 GMT", - "tag": "@rnx-kit/cli_v0.5.25", - "version": "0.5.25", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.25", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "45de83b3208bc137ae6eeb7451bcfde5a0b3779a", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Tue, 22 Jun 2021 15:04:23 GMT", - "tag": "@rnx-kit/cli_v0.5.25", - "version": "0.5.25", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.25", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "fe36a9a52319cfac244fbbeb8c47a210af067366", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Mon, 21 Jun 2021 17:32:05 GMT", - "tag": "@rnx-kit/cli_v0.5.24", - "version": "0.5.24", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.24", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "d2c832f866d64e595f8cceae5139bbbd033098b5", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Mon, 21 Jun 2021 11:43:28 GMT", - "tag": "@rnx-kit/cli_v0.5.23", - "version": "0.5.23", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.23", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "97e5ae4b804010fe2457075ff5c1969391097b61", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Thu, 17 Jun 2021 06:05:20 GMT", - "tag": "@rnx-kit/cli_v0.5.22", - "version": "0.5.22", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.22", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "1e9d77d5f6f95f3c9819f81081850beea5cecbf3", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Sat, 05 Jun 2021 08:39:15 GMT", - "tag": "@rnx-kit/cli_v0.5.21", - "version": "0.5.21", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.21", - "author": "dannyvv@microsoft.com", - "commit": "471ae7a5aac29188257996d1b09bea31e12475f0", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Fri, 04 Jun 2021 12:36:37 GMT", - "tag": "@rnx-kit/cli_v0.5.20", - "version": "0.5.20", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/config to v0.2.9", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "434c350f84c22f492f3e5f5065ba2bc2d31b2678", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Fri, 04 Jun 2021 09:02:33 GMT", - "tag": "@rnx-kit/cli_v0.5.19", - "version": "0.5.19", - "comments": { - "patch": [ - { - "comment": "dep-check: Added --exclude-packages to vigilant mode", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "fe5932b980aa4df8d081fe601c5bb553f54a3907", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Thu, 03 Jun 2021 10:15:50 GMT", - "tag": "@rnx-kit/cli_v0.5.18", - "version": "0.5.18", - "comments": { - "none": [ - { - "comment": "Formatted all the things", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "693d313e7ab36dcc0f28ec81b889bbd4aa4a89fd", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Wed, 02 Jun 2021 17:08:58 GMT", - "tag": "@rnx-kit/cli_v0.5.18", - "version": "0.5.18", - "comments": { - "patch": [ - { - "comment": "Forward --init, --vigilant, --custom-profiles flags dep-check", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "26f466ce336fda0e8651582ce0c07873d0b7084e", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Mon, 31 May 2021 06:57:45 GMT", - "tag": "@rnx-kit/cli_v0.5.17", - "version": "0.5.17", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.4.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "7dfb8067e76b561b035a1b81d3cb8ef41b0978e0", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Thu, 27 May 2021 06:09:59 GMT", - "tag": "@rnx-kit/cli_v0.5.17", - "version": "0.5.17", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.4.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "5d0bb1baee85221f9bccf25e436a996738103de1", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Wed, 26 May 2021 13:22:22 GMT", - "tag": "@rnx-kit/cli_v0.5.16", - "version": "0.5.16", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/config to v0.2.8", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "dd572c96f42e6c477fbfc178afd9892935b213c3", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Wed, 26 May 2021 06:53:03 GMT", - "tag": "@rnx-kit/cli_v0.5.15", - "version": "0.5.15", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/config to v0.2.7", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "d816342c652bfe239c8914e7048c9b6d20372589", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Thu, 20 May 2021 16:06:43 GMT", - "tag": "@rnx-kit/cli_v0.5.14", - "version": "0.5.14", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.3.0", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "8e1f94f63652f88208e19c5d67f0f513cf449332", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Thu, 20 May 2021 15:24:25 GMT", - "tag": "@rnx-kit/cli_v0.5.13", - "version": "0.5.13", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.2.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "84c927a1863af77c32c02cdedd29e2a30c2169ae", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Wed, 19 May 2021 20:37:27 GMT", - "tag": "@rnx-kit/cli_v0.5.12", - "version": "0.5.12", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.2.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "64d928a0fa70b9ccdc2f1ddaf69207a5a45eb1ad", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Wed, 19 May 2021 16:00:47 GMT", - "tag": "@rnx-kit/cli_v0.5.12", - "version": "0.5.12", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/config to v0.2.6", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "25050e7be5bd223a57940b02054ac288a6a8e0c2", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Wed, 19 May 2021 15:58:50 GMT", - "tag": "@rnx-kit/cli_v0.5.12", - "version": "0.5.12", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/config to v0.2.6", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "25050e7be5bd223a57940b02054ac288a6a8e0c2", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Tue, 18 May 2021 18:41:27 GMT", - "tag": "@rnx-kit/cli_v0.5.12", - "version": "0.5.12", - "comments": { - "patch": [ - { - "comment": "Removed unused react-native dependency", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "2f84e615438734d609d22cf4dee96bd7296a79cb", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Tue, 18 May 2021 09:25:17 GMT", - "tag": "@rnx-kit/cli_v0.5.11", - "version": "0.5.11", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.2.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "986c9db076ab35e2f53f3b710ce0708cbb1899c3", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Sat, 15 May 2021 09:02:22 GMT", - "tag": "@rnx-kit/cli_v0.5.10", - "version": "0.5.10", - "comments": { - "patch": [ - { - "comment": "dep-check: Added command for initializing a configuration", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "30eb2a9df003d7f71b61f78829d7f6dd83e6c2ea", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Sat, 15 May 2021 08:55:08 GMT", - "tag": "@rnx-kit/cli_v0.5.9", - "version": "0.5.9", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.1.10", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "124a204b9dca475c66775de809ae436eb969a193", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Sat, 15 May 2021 08:49:14 GMT", - "tag": "@rnx-kit/cli_v0.5.8", - "version": "0.5.8", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.1.9", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "d70e257508d6cb7207d5132e5cfb1323a569ca38", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Wed, 12 May 2021 11:52:17 GMT", - "tag": "@rnx-kit/cli_v0.5.7", - "version": "0.5.7", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.1.8", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "0dec2500df992c740b32e5b624d513b56312792f", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Wed, 12 May 2021 05:38:51 GMT", - "tag": "@rnx-kit/cli_v0.5.6", - "version": "0.5.6", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.1.7", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4ebfac02941377da104bfed7eb114064acf25f7c", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Tue, 11 May 2021 17:21:45 GMT", - "tag": "@rnx-kit/cli_v0.5.6", - "version": "0.5.6", - "comments": { - "patch": [ - { - "comment": "Fix a bug in handling the optional source map parameter.", - "author": "afoxman@microsoft.com", - "commit": "60cd10f49912d84c537121df8fe6a2ef340de6df", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Tue, 11 May 2021 15:41:12 GMT", - "tag": "@rnx-kit/cli_v0.5.5", - "version": "0.5.5", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.1.7", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "62d55105865a37216acc27e4399be2562c1deac6", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Tue, 11 May 2021 15:36:06 GMT", - "tag": "@rnx-kit/cli_v0.5.4", - "version": "0.5.4", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.1.6", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4a2fe040dc45b66c552e6f947eb8c0024a658406", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Tue, 11 May 2021 15:28:18 GMT", - "tag": "@rnx-kit/cli_v0.5.4", - "version": "0.5.4", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.1.6", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "f2d09f279b1d5f4eac5c81e2d4e9e260ae4bfa78", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Mon, 10 May 2021 21:58:48 GMT", - "tag": "@rnx-kit/cli_v0.5.3", - "version": "0.5.3", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.1.5", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "e085c163b72a693e3c588927319457705f3a54f6", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Mon, 10 May 2021 14:10:30 GMT", - "tag": "@rnx-kit/cli_v0.5.2", - "version": "0.5.2", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.1.4", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "2a699c896062bb627e62f3628f8773594e96661e", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Sat, 08 May 2021 20:35:26 GMT", - "tag": "@rnx-kit/cli_v0.5.1", - "version": "0.5.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.1.3", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "5847a1e9383f0465e686ed15598a78831283aa7f", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Thu, 06 May 2021 20:42:52 GMT", - "tag": "@rnx-kit/cli_v0.5.0", - "version": "0.5.0", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/third-party-notices to v1.0.0", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "e9dd245ca19853c5bc024405e70360291d29c23e", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Thu, 06 May 2021 20:37:55 GMT", - "tag": "@rnx-kit/cli_v0.5.0", - "version": "0.5.0", - "comments": { - "none": [ - { - "comment": "Split tsconfig options out into a shared file that can be included in all projects without specifying any source files.", - "author": "afoxman@microsoft.com", - "commit": "c34ccb3ca74893ea0741603b46aa96a238d59831", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Thu, 06 May 2021 16:54:17 GMT", - "tag": "@rnx-kit/cli_v0.5.0", - "version": "0.5.0", - "comments": { - "minor": [ - { - "comment": "Port third-party-notice extraction logic to rnx-kit.", - "author": "dannyvv@microsoft.com", - "commit": "8c2571c17819157b37b1e59e337d9f5d43d9424b", - "package": "@rnx-kit/cli" - }, - { - "comment": "Port third-party-notice extraction logic to rnx-kit", - "author": "dannyvv@microsoft.com", - "commit": "8c2571c17819157b37b1e59e337d9f5d43d9424b", - "package": "@rnx-kit/cli" - } - ], - "patch": [ - { - "comment": "Bump @rnx-kit/third-party-notices to v1.0.0", - "author": "dannyvv@microsoft.com", - "commit": "8c2571c17819157b37b1e59e337d9f5d43d9424b", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Wed, 05 May 2021 21:00:14 GMT", - "tag": "@rnx-kit/cli_v0.4.4", - "version": "0.4.4", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.1.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c20ff4cdd6e961c0a697fba52b61bf4d5f9aa1c6", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Wed, 05 May 2021 20:55:03 GMT", - "tag": "@rnx-kit/cli_v0.4.3", - "version": "0.4.3", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.1.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "029fced0d8da2f9745e687bfce42ef072bcb7bf4", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Wed, 05 May 2021 19:51:01 GMT", - "tag": "@rnx-kit/cli_v0.4.2", - "version": "0.4.2", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/config to v0.2.6", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "ae2e1aec823003e81003269160ba7dce04eb1714", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Wed, 05 May 2021 07:05:52 GMT", - "tag": "@rnx-kit/cli_v0.4.1", - "version": "0.4.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.0.3", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c8ab12de29e878b96cb44fdff06aaf2e0ea868d7", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Thu, 29 Apr 2021 13:47:02 GMT", - "tag": "@rnx-kit/cli_v0.4.1", - "version": "0.4.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.0.3", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "15c1e30a91a17422f6a45e1f34048540660fc7d9", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Wed, 28 Apr 2021 17:08:34 GMT", - "tag": "@rnx-kit/cli_v0.4.0", - "version": "0.4.0", - "comments": { - "minor": [ - { - "comment": "Added `rnx-dep-check` command", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "39c57b8e5de28442b69a449d57a3f7834f52275b", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Wed, 28 Apr 2021 15:54:06 GMT", - "tag": "@rnx-kit/cli_v0.3.3", - "version": "0.3.3", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/config to v0.2.5", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c79828791a6ac5cf19b4abfff6347542af49eaec", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Tue, 27 Apr 2021 19:43:40 GMT", - "tag": "@rnx-kit/cli_v0.3.2", - "version": "0.3.2", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/config to v0.2.4", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "87ec0aec3a1c1f0801f3d9f3da2b949bb0fd6d5e", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Tue, 27 Apr 2021 09:54:28 GMT", - "tag": "@rnx-kit/cli_v0.3.1", - "version": "0.3.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/config to v0.2.3", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "936b4eb3a361e820ef4f830be55182aae1e36dbe", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Fri, 16 Apr 2021 23:29:39 GMT", - "tag": "@rnx-kit/cli_v0.3.0", - "version": "0.3.0", - "comments": { - "minor": [ - { - "comment": "Removed `rnx-start`", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "0358ff602565656ebf5f49a3f753974455158bbf", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Fri, 09 Apr 2021 21:41:43 GMT", - "tag": "@rnx-kit/cli_v0.2.2", - "version": "0.2.2", - "comments": { - "patch": [ - { - "comment": "Remove default values that are no longer needed", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c884313fa958e14113ee659ee01924589fd90f90", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Fri, 09 Apr 2021 08:27:05 GMT", - "tag": "@rnx-kit/cli_v0.2.1", - "version": "0.2.1", - "comments": { - "none": [ - { - "comment": "Fixed typings to avoid type casting", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "9983bb1a9bbee0ff45ca6fd7ca28c0fc57580e84", - "package": "@rnx-kit/cli" - } - ], - "patch": [ - { - "comment": "Exit with code if an error was encountered", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "ff2b50c6e16b588316b44fc8efa3295befaf2ebc", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Thu, 11 Mar 2021 22:58:41 GMT", - "tag": "@rnx-kit/cli_v0.2.0", - "version": "0.2.0", - "comments": { - "minor": [ - { - "comment": "Add pass-through params to rnx-bundle, giving the caller control over all aspects of metro bundling.", - "author": "afoxman@microsoft.com", - "commit": "cc013a092960b50c0c90a8ab5ad6e52e02b5d13d", - "package": "@rnx-kit/cli" - } - ], - "patch": [ - { - "comment": "Bump @rnx-kit/config to v0.2.1", - "author": "afoxman@microsoft.com", - "commit": "cc013a092960b50c0c90a8ab5ad6e52e02b5d13d", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Wed, 10 Mar 2021 18:05:17 GMT", - "tag": "@rnx-kit/cli_v0.1.0", - "version": "0.1.0", - "comments": { - "minor": [ - { - "comment": "Change CLI args from camelCase to kebab-case. Add win32 as a platform.", - "author": "afoxman@microsoft.com", - "commit": "5e44f7b0db29b8ab20004b1d64d1cb09dc8bbd90", - "package": "@rnx-kit/cli" - } - ], - "patch": [ - { - "comment": "Bump @rnx-kit/config to v0.2.0", - "author": "afoxman@microsoft.com", - "commit": "5e44f7b0db29b8ab20004b1d64d1cb09dc8bbd90", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Tue, 09 Mar 2021 20:34:23 GMT", - "tag": "@rnx-kit/cli_v0.0.5", - "version": "0.0.5", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/config to v0.1.2", - "author": "afoxman@microsoft.com", - "commit": "199a3ace5c54d83aaef163a3b09b5df01e4cf6b3", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Mon, 08 Mar 2021 10:59:59 GMT", - "tag": "@rnx-kit/cli_v0.0.5", - "version": "0.0.5", - "comments": { - "patch": [ - { - "comment": "Manually bump version number to unblock publishing", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "422652c6492ae381cb9f4db0d11a7afb75018fe4", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Mon, 22 Feb 2021 10:50:46 GMT", - "tag": "@rnx-kit/cli_v0.0.3", - "version": "0.0.3", - "comments": { - "patch": [ - { - "comment": "Add strictNullChecks and noImplicitAny to the shared tsconfig. Remove from metro-config. Fix code to meet more strict type checks.", - "author": "afoxman@microsoft.com", - "commit": "1a3c54e876c6a7c25f423cebc4b2556b611c575a", - "package": "@rnx-kit/cli" - } - ] - } - }, - { - "date": "Fri, 19 Feb 2021 19:58:00 GMT", - "tag": "@rnx-kit/cli_v0.0.2", - "version": "0.0.2", - "comments": { - "patch": [ - { - "comment": "Create a CLI package which self-registers with @react-native-community/cli. Add bundling commands 'rnx-bundle' and 'rnx-start' which invoke metro. Move bundle code from build system to CLI package.", - "author": "afoxman@microsoft.com", - "commit": "5adefaed7d9a52f288f2929895d2a017187c8dbf", - "package": "@rnx-kit/cli" - } - ] - } - } - ] -} diff --git a/packages/config/CHANGELOG.json b/packages/config/CHANGELOG.json deleted file mode 100644 index 4681b346f..000000000 --- a/packages/config/CHANGELOG.json +++ /dev/null @@ -1,1012 +0,0 @@ -{ - "name": "@rnx-kit/config", - "entries": [ - { - "date": "Tue, 30 Nov 2021 17:24:14 GMT", - "tag": "@rnx-kit/config_v0.4.21", - "version": "0.4.21", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/config", - "comment": "Bump @rnx-kit/console to v1.0.11", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - } - ] - } - }, - { - "date": "Thu, 18 Nov 2021 20:51:04 GMT", - "tag": "@rnx-kit/config_v0.4.20", - "version": "0.4.20", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/config", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ], - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/config", - "comment": "Bump @rnx-kit/console to v1.0.10", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/config_v0.4.19", - "version": "0.4.19", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/config", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/config_v0.4.19", - "version": "0.4.19", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/config", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 16:33:53 GMT", - "tag": "@rnx-kit/config_v0.4.19", - "version": "0.4.19", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/config", - "commit": "596d899f3d73d8f5eaec9039594365d55232ef9c", - "comment": "Add missing repo information" - }, - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/config", - "commit": "not available", - "comment": "Transition from using our private Metro @types packages to the officially published @types packages." - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 16:31:46 GMT", - "tag": "@rnx-kit/config_v0.4.19", - "version": "0.4.19", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/config", - "commit": "9c3acf4028bb449e60340b1096993b3f3fe462d5", - "comment": "Transition from using our private Metro @types packages to the officially published @types packages." - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 10:20:15 GMT", - "tag": "@rnx-kit/config_v0.4.19", - "version": "0.4.19", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/config", - "commit": "3b0b310ba9394c145fd1570043c0649f1f9200e7", - "comment": "Default value for `projectRoot` overrides value in Metro config" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 19:24:49 GMT", - "tag": "@rnx-kit/config_v0.4.18", - "version": "0.4.18", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/config", - "comment": "Bump @rnx-kit/console to v1.0.9", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 07:33:42 GMT", - "tag": "@rnx-kit/config_v0.4.17", - "version": "0.4.17", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/config", - "comment": "Bump @rnx-kit/console to v1.0.8", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - } - ] - } - }, - { - "date": "Wed, 03 Nov 2021 18:15:39 GMT", - "tag": "@rnx-kit/config_v0.4.16", - "version": "0.4.16", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/config", - "comment": "Bump @rnx-kit/console to v1.0.7", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - } - ] - } - }, - { - "date": "Mon, 01 Nov 2021 13:46:12 GMT", - "tag": "@rnx-kit/config_v0.4.15", - "version": "0.4.15", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/config", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb", - "comment": "Normalize main and types fields across all packages which use them." - }, - { - "author": "beachball", - "package": "@rnx-kit/config", - "comment": "Bump @rnx-kit/console to v1.0.6", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 12:14:31 GMT", - "tag": "@rnx-kit/config_v0.4.13", - "version": "0.4.13", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/config", - "comment": "Bump @rnx-kit/console to v1.0.5", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 10:31:10 GMT", - "tag": "@rnx-kit/config_v0.4.12", - "version": "0.4.12", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/config", - "comment": "Bump @rnx-kit/console to v1.0.4", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 09:04:41 GMT", - "tag": "@rnx-kit/config_v0.4.11", - "version": "0.4.11", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/config", - "commit": "5361bf5151fb8f8ad2aaa35989a7c80be1c59aa3", - "comment": "Prefer named exports" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 08:51:30 GMT", - "tag": "@rnx-kit/config_v0.4.11", - "version": "0.4.11", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/config", - "comment": "Bump @rnx-kit/console to v1.0.3", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - } - ] - } - }, - { - "date": "Wed, 29 Sep 2021 11:02:41 GMT", - "tag": "@rnx-kit/config_v0.4.10", - "version": "0.4.10", - "comments": { - "patch": [ - { - "author": "lsciandra@microsoft.com", - "package": "@rnx-kit/config", - "comment": "add jest, add meta for core testing, stabilize core with react capability", - "commit": "9cc04af545d3c278daa05687277adbdabcff6eed" - } - ] - } - }, - { - "date": "Mon, 27 Sep 2021 12:28:41 GMT", - "tag": "@rnx-kit/config_v0.4.9", - "version": "0.4.9", - "comments": { - "patch": [ - { - "author": "lsciandra@microsoft.com", - "package": "@rnx-kit/config", - "comment": "Add react dom and test renderer to capabilities", - "commit": "e0c30adaae8b368a6c5b2d66dc9e69fdab5b8c71" - } - ] - } - }, - { - "date": "Mon, 27 Sep 2021 10:56:47 GMT", - "tag": "@rnx-kit/config_v0.4.8", - "version": "0.4.8", - "comments": { - "patch": [ - { - "author": "lsciandra@microsoft.com", - "package": "@rnx-kit/config", - "comment": "Add metro babel preset to capabilities", - "commit": "d1640ad5e33316d66dbb969e8c8242b0c0ca9ffa" - } - ] - } - }, - { - "date": "Wed, 08 Sep 2021 06:42:50 GMT", - "tag": "@rnx-kit/config_v0.4.7", - "version": "0.4.7", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/config", - "comment": "Use repo Jest preset", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/config", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3", - "comment": "Bump @rnx-kit/config to v0.4.7" - } - ] - } - }, - { - "date": "Fri, 03 Sep 2021 12:18:30 GMT", - "tag": "@rnx-kit/config_v0.4.7", - "version": "0.4.7", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/config", - "commit": "ced0ef438232d91f7fa527f51e23e6da9e7dbf2c", - "comment": "Bump @rnx-kit/config to v0.4.7" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 10:50:41 GMT", - "tag": "@rnx-kit/config_v0.4.6", - "version": "0.4.6", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/config", - "comment": "Warn when `reactNativeDevVersion` is set and `kitType` is `app`", - "commit": "ff12b97c1107ad1eb6d253f74ff0f3daa7ec1b26" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 07:00:17 GMT", - "tag": "@rnx-kit/config_v0.4.5", - "version": "0.4.5", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/config", - "commit": "0eecc568dd8ff556cd3964772c614cbbf7eefb98", - "comment": "Bump @rnx-kit/config to v0.4.5" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 06:43:13 GMT", - "tag": "@rnx-kit/config_v0.4.5", - "version": "0.4.5", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/config", - "commit": "25b936b3786f2a37dc6feacb4034e6afb56e343b", - "comment": "Bump @rnx-kit/config to v0.4.5" - } - ] - } - }, - { - "date": "Fri, 27 Aug 2021 18:41:43 GMT", - "tag": "@rnx-kit/config_v0.4.4", - "version": "0.4.4", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/config", - "commit": "dcb826baf0cc3705b460776bdb31e19930f4f2dc", - "comment": "Bump @rnx-kit/config to v0.4.4" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 08:52:48 GMT", - "tag": "@rnx-kit/config_v0.4.3", - "version": "0.4.3", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/config", - "commit": "0e657ab7ff261ebf6873ef7418cbb40d6418ca8e", - "comment": "Bump @rnx-kit/config to v0.4.3" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 07:32:57 GMT", - "tag": "@rnx-kit/config_v0.4.2", - "version": "0.4.2", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/config", - "commit": "b8093ce5af4bcdad1b2d91b45da54ee640fab8ae", - "comment": "Bump @rnx-kit/config to v0.4.2" - } - ] - } - }, - { - "date": "Tue, 24 Aug 2021 08:09:36 GMT", - "tag": "@rnx-kit/config_v0.4.1", - "version": "0.4.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/config", - "commit": "ccf242e997e1b399f3dc7253f36e5639a3e64036", - "comment": "Bump @rnx-kit/config to v0.4.1" - } - ] - } - }, - { - "date": "Sat, 21 Aug 2021 08:22:48 GMT", - "tag": "@rnx-kit/config_v0.4.1", - "version": "0.4.1", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/config", - "comment": "Integrate tools package and other common libraries throughout monorepo, removing custom code.", - "commit": "f65f706c734841c4339ca1f825b9c9505cea8941" - }, - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/config", - "commit": "f65f706c734841c4339ca1f825b9c9505cea8941", - "comment": "Bump @rnx-kit/config to v0.4.1" - } - ] - } - }, - { - "date": "Fri, 06 Aug 2021 22:07:45 GMT", - "tag": "@rnx-kit/config_v0.4.0", - "version": "0.4.0", - "comments": { - "minor": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/config", - "comment": "Add server config types, functions and tests to kit config.", - "commit": "f8f9598f2be6df361dd6adb06921a05a46a1230b" - } - ] - } - }, - { - "date": "Fri, 06 Aug 2021 18:05:53 GMT", - "tag": "@rnx-kit/config_v0.3.5", - "version": "0.3.5", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/config", - "comment": "Refactor config types, pulling out bundler runtime parameters. This does not impact the package API, but is important for the upcoming Metro server work. Add tests for the bundle definition code. Move existing tests into their own directory, and update jest config and snapshots.", - "commit": "e0c49e3c2e2acb7327f81f42d3023667b3887b93" - } - ] - } - }, - { - "date": "Wed, 04 Aug 2021 10:08:23 GMT", - "tag": "@rnx-kit/config_v0.3.4", - "version": "0.3.4", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/config", - "commit": "1d13d5df2ec61bb3426521199cde4e588cb849b1", - "comment": "Bump @rnx-kit/config to v0.3.4" - } - ] - } - }, - { - "date": "Thu, 29 Jul 2021 19:42:04 GMT", - "tag": "@rnx-kit/config_v0.3.3", - "version": "0.3.3", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/config", - "commit": "bf6cf5092d383a447d0075fcf4f2584bbb347236", - "comment": "Bump @rnx-kit/config to v0.3.3" - } - ] - } - }, - { - "date": "Mon, 26 Jul 2021 15:59:59 GMT", - "tag": "@rnx-kit/config_v0.3.2", - "version": "0.3.2", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/config", - "comment": "Add 'core' as an alias for react-native for out-of-tree platform packages that have a dependency on `react-native` core code, and not the Android/iOS specific bits. Currently, one would have to add a random capability that resolves to `react-native`, e.g. `core-android`, despite the capability not really being used.", - "commit": "b02743b55c37ac6b32b11a747e01c2d43013f954" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 17:30:15 GMT", - "tag": "@rnx-kit/config_v0.3.1", - "version": "0.3.1", - "comments": { - "patch": [ - { - "comment": "Added flag for enabling experimental tree shake", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "b7e5477028dc4e33cc78dbe23b5a8c3279105e80", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 09:53:10 GMT", - "tag": "@rnx-kit/config_v0.3.0", - "version": "0.3.0", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/config to v0.3.0", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "d5c36bb21e3482c24ff8b029cb60802d04e6bb64", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 07:51:46 GMT", - "tag": "@rnx-kit/config_v0.3.0", - "version": "0.3.0", - "comments": { - "minor": [ - { - "comment": "Bump @rnx-kit/config to v0.3.0", - "author": "afoxman@microsoft.com", - "commit": "021cfdb3fe726b76a377b2a6cccbe16a6999bf7a", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:45 GMT", - "tag": "@rnx-kit/config_v0.2.9", - "version": "0.2.9", - "comments": { - "none": [ - { - "comment": "Added `format` script", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "eaedb2cae443a479e131cfd71fab5c1039daca9d", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:25 GMT", - "tag": "@rnx-kit/config_v0.2.9", - "version": "0.2.9", - "comments": { - "none": [ - { - "comment": "Added `format` script", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "12196abcec79794493615829c3783d35f5bfc364", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:47 GMT", - "tag": "@rnx-kit/config_v0.2.9", - "version": "0.2.9", - "comments": { - "none": [ - { - "comment": "Add badges for build status and version", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "2dc9fe456410eed10abbfa464ae7aa7e5cef7aef", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:07 GMT", - "tag": "@rnx-kit/config_v0.2.9", - "version": "0.2.9", - "comments": { - "none": [ - { - "comment": "Add badges for build status and version", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "f3ff6e5f5c20cf9e8c81ca25a4fae3f483925c59", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Tue, 29 Jun 2021 06:01:48 GMT", - "tag": "@rnx-kit/config_v0.2.9", - "version": "0.2.9", - "comments": { - "none": [ - { - "comment": "Update type definitions", - "author": "afoxman@microsoft.com", - "commit": "0608b0120730c5cf0a78dd8bed80c18083851011", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 17:39:16 GMT", - "tag": "@rnx-kit/config_v0.2.9", - "version": "0.2.9", - "comments": { - "none": [ - { - "comment": "Bumped @types/node to 14.17.4", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "41bc87cda7c7c74084abf9f3f8039b0b670ab6ba", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 17:38:46 GMT", - "tag": "@rnx-kit/config_v0.2.9", - "version": "0.2.9", - "comments": { - "none": [ - { - "comment": "Bumped @types/node to 14.17.4", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c630c871d6747cb6631070f6f8ccba8d8933b353", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 09:28:25 GMT", - "tag": "@rnx-kit/config_v0.2.9", - "version": "0.2.9", - "comments": { - "none": [ - { - "comment": "Added ESLint config", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4701f7a40c050f8d376fbcfc84ce6e50f5fcf501", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Fri, 04 Jun 2021 12:36:37 GMT", - "tag": "@rnx-kit/config_v0.2.9", - "version": "0.2.9", - "comments": { - "patch": [ - { - "comment": "Fixed error when React Native dev version is a range", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "434c350f84c22f492f3e5f5065ba2bc2d31b2678", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Thu, 03 Jun 2021 10:15:50 GMT", - "tag": "@rnx-kit/config_v0.2.8", - "version": "0.2.8", - "comments": { - "none": [ - { - "comment": "Formatted all the things", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "693d313e7ab36dcc0f28ec81b889bbd4aa4a89fd", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Wed, 26 May 2021 13:22:22 GMT", - "tag": "@rnx-kit/config_v0.2.8", - "version": "0.2.8", - "comments": { - "patch": [ - { - "comment": "Removed core-win32 capability", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "dd572c96f42e6c477fbfc178afd9892935b213c3", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Wed, 26 May 2021 06:53:03 GMT", - "tag": "@rnx-kit/config_v0.2.7", - "version": "0.2.7", - "comments": { - "patch": [ - { - "comment": "Added support for custom profiles", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "d816342c652bfe239c8914e7048c9b6d20372589", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Wed, 19 May 2021 16:00:47 GMT", - "tag": "@rnx-kit/config_v0.2.6", - "version": "0.2.6", - "comments": { - "none": [ - { - "comment": "Removed unused dependencies.", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "25050e7be5bd223a57940b02054ac288a6a8e0c2", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Wed, 19 May 2021 15:58:50 GMT", - "tag": "@rnx-kit/config_v0.2.6", - "version": "0.2.6", - "comments": { - "none": [ - { - "comment": "Removed unused dependencies.", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "25050e7be5bd223a57940b02054ac288a6a8e0c2", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Thu, 06 May 2021 20:37:55 GMT", - "tag": "@rnx-kit/config_v0.2.6", - "version": "0.2.6", - "comments": { - "none": [ - { - "comment": "Split tsconfig options out into a shared file that can be included in all projects without specifying any source files.", - "author": "afoxman@microsoft.com", - "commit": "c34ccb3ca74893ea0741603b46aa96a238d59831", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Wed, 05 May 2021 19:51:01 GMT", - "tag": "@rnx-kit/config_v0.2.6", - "version": "0.2.6", - "comments": { - "patch": [ - { - "comment": "Add getKitCapabilities()", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "ae2e1aec823003e81003269160ba7dce04eb1714", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Wed, 28 Apr 2021 15:54:06 GMT", - "tag": "@rnx-kit/config_v0.2.5", - "version": "0.2.5", - "comments": { - "patch": [ - { - "comment": "Add 'hermes' capability", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c79828791a6ac5cf19b4abfff6347542af49eaec", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Tue, 27 Apr 2021 19:43:40 GMT", - "tag": "@rnx-kit/config_v0.2.4", - "version": "0.2.4", - "comments": { - "patch": [ - { - "comment": "Added support for RN SDK", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "87ec0aec3a1c1f0801f3d9f3da2b949bb0fd6d5e", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Tue, 27 Apr 2021 09:54:28 GMT", - "tag": "@rnx-kit/config_v0.2.3", - "version": "0.2.3", - "comments": { - "patch": [ - { - "comment": "Bump workspace-tools to 0.15.0", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "936b4eb3a361e820ef4f830be55182aae1e36dbe", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Fri, 09 Apr 2021 21:41:43 GMT", - "tag": "@rnx-kit/config_v0.2.2", - "version": "0.2.2", - "comments": { - "patch": [ - { - "comment": "Fix return type of getBundleDefinition() and getBundlePlatformDefinition()", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c884313fa958e14113ee659ee01924589fd90f90", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Thu, 11 Mar 2021 22:58:41 GMT", - "tag": "@rnx-kit/config_v0.2.1", - "version": "0.2.1", - "comments": { - "patch": [ - { - "comment": "Add pass-through params to rnx-bundle, giving the caller control over all aspects of metro bundling.", - "author": "afoxman@microsoft.com", - "commit": "cc013a092960b50c0c90a8ab5ad6e52e02b5d13d", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Wed, 10 Mar 2021 18:05:17 GMT", - "tag": "@rnx-kit/config_v0.2.0", - "version": "0.2.0", - "comments": { - "minor": [ - { - "comment": "Change CLI args from camelCase to kebab-case. Add win32 as a platform.", - "author": "afoxman@microsoft.com", - "commit": "5e44f7b0db29b8ab20004b1d64d1cb09dc8bbd90", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Tue, 09 Mar 2021 20:34:23 GMT", - "tag": "@rnx-kit/config_v0.1.2", - "version": "0.1.2", - "comments": { - "none": [ - { - "comment": "Add Jest types to each package with tests to ensure TSC has access to type info during a build. Also ensures VSCode and other IDEs see type info.", - "author": "afoxman@microsoft.com", - "commit": "199a3ace5c54d83aaef163a3b09b5df01e4cf6b3", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Mon, 22 Feb 2021 10:50:46 GMT", - "tag": "@rnx-kit/config_v0.1.2", - "version": "0.1.2", - "comments": { - "patch": [ - { - "comment": "Add strictNullChecks and noImplicitAny to the shared tsconfig. Remove from metro-config. Fix code to meet more strict type checks.", - "author": "afoxman@microsoft.com", - "commit": "1a3c54e876c6a7c25f423cebc4b2556b611c575a", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Fri, 19 Feb 2021 19:58:00 GMT", - "tag": "@rnx-kit/config_v0.1.1", - "version": "0.1.1", - "comments": { - "patch": [ - { - "comment": "Create a CLI package which self-registers with @react-native-community/cli. Add bundling commands 'rnx-bundle' and 'rnx-start' which invoke metro. Move bundle code from build system to CLI package.", - "author": "afoxman@microsoft.com", - "commit": "5adefaed7d9a52f288f2929895d2a017187c8dbf", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Tue, 16 Feb 2021 19:15:57 GMT", - "tag": "@rnx-kit/config_v0.1.0", - "version": "0.1.0", - "comments": { - "minor": [ - { - "comment": "Add bundle config to the kit config.", - "author": "afoxman@microsoft.com", - "commit": "13eab407c996b8b28d4c93ea827283353749bd4f", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Tue, 16 Feb 2021 19:03:38 GMT", - "tag": "@rnx-kit/config_v0.0.3", - "version": "0.0.3", - "comments": { - "patch": [ - { - "comment": "Move typescript settings from tscTask to tsconfig.json. Remove the use of baseUrl and paths, which we don't need. Fix path in fast-install script. Update test-app-mobile dependencies and move all source files into an 'src' directory.", - "author": "afoxman@microsoft.com", - "commit": "87f041b011b1af8ccfe5cefd15ddeb66eb533538", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Fri, 12 Feb 2021 19:57:07 GMT", - "tag": "@rnx-kit/config_v0.0.2", - "version": "0.0.2", - "comments": { - "none": [ - { - "comment": "Add a build system and integrate with existing packages (except metro-config).", - "author": "afoxman@microsoft.com", - "commit": "cd02858fac26b7b8214fb0eb6776d8e2a0637492", - "package": "@rnx-kit/config" - } - ] - } - }, - { - "date": "Thu, 28 Jan 2021 17:02:45 GMT", - "tag": "@rnx-kit/config_v0.0.2", - "version": "0.0.2", - "comments": { - "patch": [ - { - "comment": "add start of config package", - "author": "jasonmo@microsoft.com", - "commit": "60f68a090b225cf0f55e010b1509d97069d1be2d", - "package": "@rnx-kit/config" - } - ] - } - } - ] -} diff --git a/packages/console/CHANGELOG.json b/packages/console/CHANGELOG.json deleted file mode 100644 index 735b8c5d8..000000000 --- a/packages/console/CHANGELOG.json +++ /dev/null @@ -1,268 +0,0 @@ -{ - "name": "@rnx-kit/console", - "entries": [ - { - "date": "Thu, 18 Nov 2021 20:51:04 GMT", - "tag": "@rnx-kit/console_v1.0.10", - "version": "1.0.10", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/console", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/console_v1.0.9", - "version": "1.0.9", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/console", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/console_v1.0.9", - "version": "1.0.9", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/console", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Mon, 01 Nov 2021 13:46:12 GMT", - "tag": "@rnx-kit/console_v1.0.6", - "version": "1.0.6", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/console", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb", - "comment": "Normalize main and types fields across all packages which use them." - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 16:06:09 GMT", - "tag": "@rnx-kit/console_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/console", - "comment": "Upgrade Jest to v27", - "commit": "f7b4eeebbd2576f83048ce5d2a0c538574d76c99" - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 16:05:55 GMT", - "tag": "@rnx-kit/console_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/console", - "comment": "Upgrade Jest to v27", - "commit": "4463a88285b37b622deb06717c92ff0f3c5451ad" - } - ] - } - }, - { - "date": "Wed, 08 Sep 2021 06:42:50 GMT", - "tag": "@rnx-kit/console_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/console", - "comment": "Use repo Jest preset", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3" - } - ] - } - }, - { - "date": "Tue, 24 Aug 2021 08:09:36 GMT", - "tag": "@rnx-kit/console_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/console", - "commit": "ccf242e997e1b399f3dc7253f36e5639a3e64036", - "comment": "Bump @rnx-kit/console to v1.0.2" - } - ] - } - }, - { - "date": "Wed, 04 Aug 2021 10:08:23 GMT", - "tag": "@rnx-kit/console_v1.0.2", - "version": "1.0.2", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/console", - "commit": "1d13d5df2ec61bb3426521199cde4e588cb849b1", - "comment": "Bump @rnx-kit/console to v1.0.2" - } - ] - } - }, - { - "date": "Thu, 29 Jul 2021 19:42:04 GMT", - "tag": "@rnx-kit/console_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/console", - "comment": "Replace @rnx-kit/babel-preset-jest-typescript with @rnx-kit/jest-preset", - "commit": "bf6cf5092d383a447d0075fcf4f2584bbb347236" - } - ], - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/console", - "commit": "bf6cf5092d383a447d0075fcf4f2584bbb347236", - "comment": "Bump @rnx-kit/console to v1.0.1" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 09:53:10 GMT", - "tag": "@rnx-kit/console_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Added `lint` script", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "d5c36bb21e3482c24ff8b029cb60802d04e6bb64", - "package": "@rnx-kit/console" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:45 GMT", - "tag": "@rnx-kit/console_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Added `format` script", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "eaedb2cae443a479e131cfd71fab5c1039daca9d", - "package": "@rnx-kit/console" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:25 GMT", - "tag": "@rnx-kit/console_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Added `format` script", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "12196abcec79794493615829c3783d35f5bfc364", - "package": "@rnx-kit/console" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:47 GMT", - "tag": "@rnx-kit/console_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Added README and tests", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "2dc9fe456410eed10abbfa464ae7aa7e5cef7aef", - "package": "@rnx-kit/console" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:07 GMT", - "tag": "@rnx-kit/console_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Added README and tests", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "f3ff6e5f5c20cf9e8c81ca25a4fae3f483925c59", - "package": "@rnx-kit/console" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:21:45 GMT", - "tag": "@rnx-kit/console_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Added README and tests", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "ea2c03568d7e64c763b9883072a7a75d5a445953", - "package": "@rnx-kit/console" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 17:39:16 GMT", - "tag": "@rnx-kit/console_v1.0.0", - "version": "1.0.0", - "comments": { - "minor": [ - { - "comment": "Introduce a common console logger", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "41bc87cda7c7c74084abf9f3f8039b0b670ab6ba", - "package": "@rnx-kit/console" - } - ] - } - } - ] -} diff --git a/packages/dep-check/CHANGELOG.json b/packages/dep-check/CHANGELOG.json deleted file mode 100644 index ac5f4b59c..000000000 --- a/packages/dep-check/CHANGELOG.json +++ /dev/null @@ -1,1985 +0,0 @@ -{ - "name": "@rnx-kit/dep-check", - "entries": [ - { - "date": "Tue, 30 Nov 2021 17:24:14 GMT", - "tag": "@rnx-kit/dep-check_v1.9.5", - "version": "1.9.5", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/console to v1.0.11", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/tools-language to v1.2.6", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/tools-node to v1.2.6", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - } - ] - } - }, - { - "date": "Thu, 18 Nov 2021 20:51:05 GMT", - "tag": "@rnx-kit/dep-check_v1.9.4", - "version": "1.9.4", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ], - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/console to v1.0.10", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/tools-language to v1.2.5", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/tools-node to v1.2.5", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - } - ] - } - }, - { - "date": "Tue, 16 Nov 2021 14:33:15 GMT", - "tag": "@rnx-kit/dep-check_v1.9.3", - "version": "1.9.3", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "commit": "5e6b37004875b8778dbb7c889aee715a7952bf0b", - "comment": "Bump netinfo to fix autolinking on Windows" - } - ] - } - }, - { - "date": "Mon, 15 Nov 2021 12:33:07 GMT", - "tag": "@rnx-kit/dep-check_v1.9.2", - "version": "1.9.2", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "commit": "ff0bfe9f7ca3fec970417f64dcd4e41da3c99939", - "comment": "Bump clipboard for react-native update fixes" - } - ] - } - }, - { - "date": "Fri, 12 Nov 2021 13:04:39 GMT", - "tag": "@rnx-kit/dep-check_v1.9.1", - "version": "1.9.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "commit": "646b90d5771c866d78a9ffcb0375ce8dab018101", - "comment": "Fix dep-check not being executable" - } - ] - } - }, - { - "date": "Thu, 11 Nov 2021 17:49:21 GMT", - "tag": "@rnx-kit/dep-check_v1.9.0", - "version": "1.9.0", - "comments": { - "minor": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "commit": "c40418e51589ab5b862989e25b7708fba62ba5c1", - "comment": "Bundle dep-check to avoid conflicting dependencies, and to make the installation footprint smaller." - } - ] - } - }, - { - "date": "Wed, 10 Nov 2021 12:46:32 GMT", - "tag": "@rnx-kit/dep-check_v1.8.18", - "version": "1.8.18", - "comments": { - "none": [ - { - "author": "lsciandra@microsoft.com", - "package": "@rnx-kit/dep-check", - "commit": "983681253ba2157b7c9fe9831aaf323c5021547c", - "comment": "add rneu mention" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/dep-check_v1.8.18", - "version": "1.8.18", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/dep-check_v1.8.18", - "version": "1.8.18", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 10:20:15 GMT", - "tag": "@rnx-kit/dep-check_v1.8.18", - "version": "1.8.18", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/config to v0.4.19", - "commit": "62e605f399f6c0817054a16d7e398d9876d9bbc2" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 19:24:49 GMT", - "tag": "@rnx-kit/dep-check_v1.8.17", - "version": "1.8.17", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/config to v0.4.18", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/console to v1.0.9", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/tools-language to v1.2.4", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/tools-node to v1.2.4", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 07:33:42 GMT", - "tag": "@rnx-kit/dep-check_v1.8.16", - "version": "1.8.16", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/config to v0.4.17", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/console to v1.0.8", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/tools-language to v1.2.3", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/tools-node to v1.2.3", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - } - ] - } - }, - { - "date": "Wed, 03 Nov 2021 18:15:39 GMT", - "tag": "@rnx-kit/dep-check_v1.8.15", - "version": "1.8.15", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/config to v0.4.16", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/console to v1.0.7", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/tools-language to v1.2.2", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/tools-node to v1.2.2", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - } - ] - } - }, - { - "date": "Mon, 01 Nov 2021 13:46:13 GMT", - "tag": "@rnx-kit/dep-check_v1.8.14", - "version": "1.8.14", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/config to v0.4.15", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/console to v1.0.6", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/tools-language to v1.2.1", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/tools-node to v1.2.1", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - } - ] - } - }, - { - "date": "Sat, 30 Oct 2021 07:50:51 GMT", - "tag": "@rnx-kit/dep-check_v1.8.13", - "version": "1.8.13", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/config to v0.4.14", - "commit": "6133f8fe0298611e4c736e94b46f32752d139e76" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/tools-language to v1.2.0", - "commit": "6133f8fe0298611e4c736e94b46f32752d139e76" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/tools-node to v1.2.0", - "commit": "6133f8fe0298611e4c736e94b46f32752d139e76" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 14:13:32 GMT", - "tag": "@rnx-kit/dep-check_v1.8.12", - "version": "1.8.12", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "commit": "1a724093ce98611f0d2d40b37de9c91119deb5f1", - "comment": "Recommend react-native-reanimated@^2.2.4 for 0.67" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 12:14:31 GMT", - "tag": "@rnx-kit/dep-check_v1.8.11", - "version": "1.8.11", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/config to v0.4.13", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/console to v1.0.5", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/tools-language to v1.1.4", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/tools-node to v1.1.6", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 10:31:10 GMT", - "tag": "@rnx-kit/dep-check_v1.8.10", - "version": "1.8.10", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/config to v0.4.12", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/console to v1.0.4", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/tools-language to v1.1.3", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/tools-node to v1.1.5", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 09:04:41 GMT", - "tag": "@rnx-kit/dep-check_v1.8.9", - "version": "1.8.9", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "commit": "5361bf5151fb8f8ad2aaa35989a7c80be1c59aa3", - "comment": "Prefer named exports" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 08:51:30 GMT", - "tag": "@rnx-kit/dep-check_v1.8.9", - "version": "1.8.9", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/config to v0.4.11", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/console to v1.0.3", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/tools-language to v1.1.2", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/tools-node to v1.1.4", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - } - ] - } - }, - { - "date": "Tue, 26 Oct 2021 17:22:16 GMT", - "tag": "@rnx-kit/dep-check_v1.8.8", - "version": "1.8.8", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "commit": "feff223563721779580bf96e6b1c71db4c3081c9", - "comment": "Bumped react-native-reanimated for 0.66, and added profile for 0.67" - } - ] - } - }, - { - "date": "Wed, 20 Oct 2021 09:30:14 GMT", - "tag": "@rnx-kit/dep-check_v1.8.7", - "version": "1.8.7", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "comment": "Improve usage documentation.", - "commit": "9e361f9ff0d33bdaed53c1e9bb7f36964f8f717f" - } - ] - } - }, - { - "date": "Thu, 14 Oct 2021 07:54:03 GMT", - "tag": "@rnx-kit/dep-check_v1.8.7", - "version": "1.8.7", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "comment": "Bump react-native-test-app to ^0.9.0", - "commit": "0e1c7f2ede6feeaa12df3b43b33516df7fb88f95" - } - ] - } - }, - { - "date": "Wed, 29 Sep 2021 11:02:41 GMT", - "tag": "@rnx-kit/dep-check_v1.8.6", - "version": "1.8.6", - "comments": { - "patch": [ - { - "author": "lsciandra@microsoft.com", - "package": "@rnx-kit/dep-check", - "comment": "add jest, add meta for core testing, stabilize core with react capability", - "commit": "9cc04af545d3c278daa05687277adbdabcff6eed" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/config to v0.4.10", - "commit": "9cc04af545d3c278daa05687277adbdabcff6eed" - } - ] - } - }, - { - "date": "Wed, 29 Sep 2021 09:09:11 GMT", - "tag": "@rnx-kit/dep-check_v1.8.5", - "version": "1.8.5", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "comment": "Make profile for 0.66 public", - "commit": "67b92e575fa8a8ed4d631a1f953009fe5582f33d" - } - ] - } - }, - { - "date": "Mon, 27 Sep 2021 12:28:41 GMT", - "tag": "@rnx-kit/dep-check_v1.8.4", - "version": "1.8.4", - "comments": { - "patch": [ - { - "author": "lsciandra@microsoft.com", - "package": "@rnx-kit/dep-check", - "comment": "Add react dom and test renderer to capabilities", - "commit": "e0c30adaae8b368a6c5b2d66dc9e69fdab5b8c71" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/config to v0.4.9", - "commit": "e0c30adaae8b368a6c5b2d66dc9e69fdab5b8c71" - } - ] - } - }, - { - "date": "Mon, 27 Sep 2021 10:56:47 GMT", - "tag": "@rnx-kit/dep-check_v1.8.3", - "version": "1.8.3", - "comments": { - "patch": [ - { - "author": "lsciandra@microsoft.com", - "package": "@rnx-kit/dep-check", - "comment": "Add metro babel preset to capabilities", - "commit": "d1640ad5e33316d66dbb969e8c8242b0c0ca9ffa" - }, - { - "author": "beachball", - "package": "@rnx-kit/dep-check", - "comment": "Bump @rnx-kit/config to v0.4.8", - "commit": "d1640ad5e33316d66dbb969e8c8242b0c0ca9ffa" - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 16:06:09 GMT", - "tag": "@rnx-kit/dep-check_v1.8.2", - "version": "1.8.2", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "comment": "Upgrade Jest to v27", - "commit": "f7b4eeebbd2576f83048ce5d2a0c538574d76c99" - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 16:05:55 GMT", - "tag": "@rnx-kit/dep-check_v1.8.2", - "version": "1.8.2", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "comment": "Upgrade Jest to v27", - "commit": "4463a88285b37b622deb06717c92ff0f3c5451ad" - } - ] - } - }, - { - "date": "Tue, 14 Sep 2021 15:28:16 GMT", - "tag": "@rnx-kit/dep-check_v1.8.2", - "version": "1.8.2", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "comment": "Bump async-storage to 1.15.8. It contains fixes for building Android on react-native 0.65.", - "commit": "9d8cbae61aa4942747d1c7c1e9bd007d764168de" - } - ] - } - }, - { - "date": "Mon, 13 Sep 2021 17:38:26 GMT", - "tag": "@rnx-kit/dep-check_v1.8.1", - "version": "1.8.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "comment": "Updated profile 0.65 with latest versions. Added a preliminary profile for 0.66.", - "commit": "b912e8f7cc3d3ee7a7b31768d10fc8077c9f622d" - } - ] - } - }, - { - "date": "Wed, 08 Sep 2021 07:04:15 GMT", - "tag": "@rnx-kit/dep-check_v1.8.0", - "version": "1.8.0", - "comments": { - "minor": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "comment": "Add support for dependencies and meta packages", - "commit": "a3f63fb86e5facc1f7251abc116e3d23aca37473" - } - ] - } - }, - { - "date": "Wed, 08 Sep 2021 06:42:50 GMT", - "tag": "@rnx-kit/dep-check_v1.7.11", - "version": "1.7.11", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "comment": "Use repo Jest preset", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "comment": "Refactor tests for incoming meta packages feature", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3" - } - ], - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "comment": "Also check workspace root package", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3", - "comment": "Bump @rnx-kit/dep-check to v1.7.11" - } - ] - } - }, - { - "date": "Mon, 06 Sep 2021 06:57:59 GMT", - "tag": "@rnx-kit/dep-check_v1.7.10", - "version": "1.7.10", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "comment": "When upgrading profile version, also remove `reactNativeDevVersion` if `kitType` is `app`", - "commit": "263c7c4d160895f857f6b76b147ad3c6a5e97343" - } - ] - } - }, - { - "date": "Fri, 03 Sep 2021 12:18:30 GMT", - "tag": "@rnx-kit/dep-check_v1.7.9", - "version": "1.7.9", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "comment": "Preserve the indentation when modifying `package.json`", - "commit": "ced0ef438232d91f7fa527f51e23e6da9e7dbf2c" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "commit": "ced0ef438232d91f7fa527f51e23e6da9e7dbf2c", - "comment": "Bump @rnx-kit/dep-check to v1.7.9" - } - ] - } - }, - { - "date": "Fri, 03 Sep 2021 09:49:28 GMT", - "tag": "@rnx-kit/dep-check_v1.7.8", - "version": "1.7.8", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "comment": "Fix broken `--init` due to loose and init being mutually exclusive, but `--loose` has a default value.", - "commit": "73624d095f4e874d5ceee8d123c9b8fedfdf0452" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 10:50:41 GMT", - "tag": "@rnx-kit/dep-check_v1.7.7", - "version": "1.7.7", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "commit": "ff12b97c1107ad1eb6d253f74ff0f3daa7ec1b26", - "comment": "Bump @rnx-kit/dep-check to v1.7.7" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 07:00:17 GMT", - "tag": "@rnx-kit/dep-check_v1.7.6", - "version": "1.7.6", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "commit": "0eecc568dd8ff556cd3964772c614cbbf7eefb98", - "comment": "Bump @rnx-kit/dep-check to v1.7.6" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 06:43:13 GMT", - "tag": "@rnx-kit/dep-check_v1.7.6", - "version": "1.7.6", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "comment": "Stricter handling of errors", - "commit": "25b936b3786f2a37dc6feacb4034e6afb56e343b" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "commit": "25b936b3786f2a37dc6feacb4034e6afb56e343b", - "comment": "Bump @rnx-kit/dep-check to v1.7.6" - } - ] - } - }, - { - "date": "Fri, 27 Aug 2021 18:41:43 GMT", - "tag": "@rnx-kit/dep-check_v1.7.5", - "version": "1.7.5", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "commit": "dcb826baf0cc3705b460776bdb31e19930f4f2dc", - "comment": "Bump @rnx-kit/dep-check to v1.7.5" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 08:52:48 GMT", - "tag": "@rnx-kit/dep-check_v1.7.4", - "version": "1.7.4", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/dep-check", - "commit": "0e657ab7ff261ebf6873ef7418cbb40d6418ca8e", - "comment": "Bump @rnx-kit/dep-check to v1.7.4" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 07:32:57 GMT", - "tag": "@rnx-kit/dep-check_v1.7.3", - "version": "1.7.3", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/dep-check", - "commit": "b8093ce5af4bcdad1b2d91b45da54ee640fab8ae", - "comment": "Bump @rnx-kit/dep-check to v1.7.3" - } - ] - } - }, - { - "date": "Tue, 24 Aug 2021 08:09:36 GMT", - "tag": "@rnx-kit/dep-check_v1.7.2", - "version": "1.7.2", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "commit": "ccf242e997e1b399f3dc7253f36e5639a3e64036", - "comment": "Bump @rnx-kit/dep-check to v1.7.2" - } - ] - } - }, - { - "date": "Mon, 23 Aug 2021 18:52:43 GMT", - "tag": "@rnx-kit/dep-check_v1.7.2", - "version": "1.7.2", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "comment": "Add some words on how to add capabilities", - "commit": "36fc1c476c151223208d9f35c8a68a386807e3be" - } - ] - } - }, - { - "date": "Sat, 21 Aug 2021 08:22:48 GMT", - "tag": "@rnx-kit/dep-check_v1.7.2", - "version": "1.7.2", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/dep-check", - "comment": "Integrate tools package and other common libraries throughout monorepo, removing custom code.", - "commit": "f65f706c734841c4339ca1f825b9c9505cea8941" - }, - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/dep-check", - "commit": "f65f706c734841c4339ca1f825b9c9505cea8941", - "comment": "Bump @rnx-kit/dep-check to v1.7.2" - } - ] - } - }, - { - "date": "Thu, 19 Aug 2021 07:59:20 GMT", - "tag": "@rnx-kit/dep-check_v1.7.1", - "version": "1.7.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "comment": "Fix error messages accumulating when gathering requirements", - "commit": "84c80d34cad6f8452954f3fcbb7d0ad5457055d5" - } - ] - } - }, - { - "date": "Wed, 18 Aug 2021 14:54:20 GMT", - "tag": "@rnx-kit/dep-check_v1.7.0", - "version": "1.7.0", - "comments": { - "minor": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "comment": "Allow apps to depend on a newer version of React Native than their dependencies declare support for via the `--loose` flag.", - "commit": "f6651e5391d69c5c77d495a447a546c0f9abba1e" - } - ] - } - }, - { - "date": "Tue, 17 Aug 2021 09:36:56 GMT", - "tag": "@rnx-kit/dep-check_v1.6.0", - "version": "1.6.0", - "comments": { - "minor": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "comment": "Add command for setting react-native version", - "commit": "150ed8e6ffca098c9bb72f5cd9e466a6d3ee393b" - } - ] - } - }, - { - "date": "Fri, 13 Aug 2021 13:30:40 GMT", - "tag": "@rnx-kit/dep-check_v1.5.21", - "version": "1.5.21", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "comment": "Correct hermes-engine version for react-native 0.65", - "commit": "74979015c3e51ca33e9c66a411e4457a9e1edd49" - } - ] - } - }, - { - "date": "Fri, 06 Aug 2021 22:07:45 GMT", - "tag": "@rnx-kit/dep-check_v1.5.20", - "version": "1.5.20", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/dep-check", - "commit": "f8f9598f2be6df361dd6adb06921a05a46a1230b", - "comment": "Bump @rnx-kit/dep-check to v1.5.20" - } - ] - } - }, - { - "date": "Fri, 06 Aug 2021 18:05:53 GMT", - "tag": "@rnx-kit/dep-check_v1.5.19", - "version": "1.5.19", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/dep-check", - "commit": "e0c49e3c2e2acb7327f81f42d3023667b3887b93", - "comment": "Bump @rnx-kit/dep-check to v1.5.19" - } - ] - } - }, - { - "date": "Wed, 04 Aug 2021 10:08:23 GMT", - "tag": "@rnx-kit/dep-check_v1.5.18", - "version": "1.5.18", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "commit": "1d13d5df2ec61bb3426521199cde4e588cb849b1", - "comment": "Bump @rnx-kit/dep-check to v1.5.18" - } - ] - } - }, - { - "date": "Thu, 29 Jul 2021 19:42:04 GMT", - "tag": "@rnx-kit/dep-check_v1.5.17", - "version": "1.5.17", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "comment": "Replace @rnx-kit/babel-preset-jest-typescript with @rnx-kit/jest-preset", - "commit": "bf6cf5092d383a447d0075fcf4f2584bbb347236" - } - ], - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "commit": "bf6cf5092d383a447d0075fcf4f2584bbb347236", - "comment": "Bump @rnx-kit/dep-check to v1.5.17" - } - ] - } - }, - { - "date": "Mon, 26 Jul 2021 15:59:59 GMT", - "tag": "@rnx-kit/dep-check_v1.5.16", - "version": "1.5.16", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "comment": "Add 'core' as an alias for react-native for out-of-tree platform packages that have a dependency on `react-native` core code, and not the Android/iOS specific bits. Currently, one would have to add a random capability that resolves to `react-native`, e.g. `core-android`, despite the capability not really being used.", - "commit": "b02743b55c37ac6b32b11a747e01c2d43013f954" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/dep-check", - "commit": "b02743b55c37ac6b32b11a747e01c2d43013f954", - "comment": "Bump @rnx-kit/dep-check to v1.5.16" - } - ] - } - }, - { - "date": "Tue, 13 Jul 2021 13:40:11 GMT", - "tag": "@rnx-kit/dep-check_v1.5.15", - "version": "1.5.15", - "comments": { - "patch": [ - { - "comment": "bump RNTA to 0.7", - "author": "lsciandra@microsoft.com", - "commit": "c9e8b65095d29973099c6ef2910dfc02160880de", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 17:30:15 GMT", - "tag": "@rnx-kit/dep-check_v1.5.14", - "version": "1.5.14", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.5.14", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "b7e5477028dc4e33cc78dbe23b5a8c3279105e80", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 09:53:10 GMT", - "tag": "@rnx-kit/dep-check_v1.5.13", - "version": "1.5.13", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.5.13", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "d5c36bb21e3482c24ff8b029cb60802d04e6bb64", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 08:34:12 GMT", - "tag": "@rnx-kit/dep-check_v1.5.13", - "version": "1.5.13", - "comments": { - "patch": [ - { - "comment": "Added link to documentation in output", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "10e9415e4120495665d6f3448d89948eacc100b8", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 07:51:46 GMT", - "tag": "@rnx-kit/dep-check_v1.5.12", - "version": "1.5.12", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.5.12", - "author": "afoxman@microsoft.com", - "commit": "021cfdb3fe726b76a377b2a6cccbe16a6999bf7a", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:45 GMT", - "tag": "@rnx-kit/dep-check_v1.5.11", - "version": "1.5.11", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.5.11", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "eaedb2cae443a479e131cfd71fab5c1039daca9d", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:25 GMT", - "tag": "@rnx-kit/dep-check_v1.5.11", - "version": "1.5.11", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.5.11", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "12196abcec79794493615829c3783d35f5bfc364", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:47 GMT", - "tag": "@rnx-kit/dep-check_v1.5.11", - "version": "1.5.11", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.5.11", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "2dc9fe456410eed10abbfa464ae7aa7e5cef7aef", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:07 GMT", - "tag": "@rnx-kit/dep-check_v1.5.11", - "version": "1.5.11", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.5.11", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "f3ff6e5f5c20cf9e8c81ca25a4fae3f483925c59", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:21:45 GMT", - "tag": "@rnx-kit/dep-check_v1.5.11", - "version": "1.5.11", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.5.11", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "ea2c03568d7e64c763b9883072a7a75d5a445953", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:17:59 GMT", - "tag": "@rnx-kit/dep-check_v1.5.11", - "version": "1.5.11", - "comments": { - "patch": [ - { - "comment": "Bump checkbox and test-app to latest", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "10beb208470cb3d1c8de4c12a829da41dbf8983a", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Mon, 05 Jul 2021 15:15:06 GMT", - "tag": "@rnx-kit/dep-check_v1.5.10", - "version": "1.5.10", - "comments": { - "none": [ - { - "comment": "Typos in DESIGN.md", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "53faa95399eaad7a8df9c758335380029d0d2041", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Thu, 01 Jul 2021 13:59:39 GMT", - "tag": "@rnx-kit/dep-check_v1.5.10", - "version": "1.5.10", - "comments": { - "patch": [ - { - "comment": "Bump netinfo to 5.9.10", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "e06636db33664f9d57d598b445c4e6b437ee86ee", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Tue, 29 Jun 2021 06:01:48 GMT", - "tag": "@rnx-kit/dep-check_v1.5.9", - "version": "1.5.9", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.5.9", - "author": "afoxman@microsoft.com", - "commit": "0608b0120730c5cf0a78dd8bed80c18083851011", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Mon, 28 Jun 2021 14:19:44 GMT", - "tag": "@rnx-kit/dep-check_v1.5.9", - "version": "1.5.9", - "comments": { - "patch": [ - { - "comment": "Added missing dependency", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4794d9d1b5f8b9d1174dc0799291ff2e0a19b792", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Fri, 25 Jun 2021 16:53:16 GMT", - "tag": "@rnx-kit/dep-check_v1.5.8", - "version": "1.5.8", - "comments": { - "patch": [ - { - "comment": "Bump react-native-test-app to 0.6.3", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "1822fcdb44bce87b2f07551f9e31c2f099084b5e", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 17:54:11 GMT", - "tag": "@rnx-kit/dep-check_v1.5.7", - "version": "1.5.7", - "comments": { - "patch": [ - { - "comment": "Use common console logger", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "48a9a57e0163eb1edef65240d1f0eb95f78f0850", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 17:39:16 GMT", - "tag": "@rnx-kit/dep-check_v1.5.6", - "version": "1.5.6", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.5.6", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "41bc87cda7c7c74084abf9f3f8039b0b670ab6ba", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 17:38:46 GMT", - "tag": "@rnx-kit/dep-check_v1.5.6", - "version": "1.5.6", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.5.6", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c630c871d6747cb6631070f6f8ccba8d8933b353", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 09:28:25 GMT", - "tag": "@rnx-kit/dep-check_v1.5.6", - "version": "1.5.6", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/dep-check to v1.5.6", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4701f7a40c050f8d376fbcfc84ce6e50f5fcf501", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 07:30:22 GMT", - "tag": "@rnx-kit/dep-check_v1.5.6", - "version": "1.5.6", - "comments": { - "none": [ - { - "comment": "Update readme", - "author": "afoxman@microsoft.com", - "commit": "167081c3c6c2ef84c461b420a9875184358a8ded", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 06:06:43 GMT", - "tag": "@rnx-kit/dep-check_v1.5.6", - "version": "1.5.6", - "comments": { - "none": [ - { - "comment": "Updated dependencies table", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "45de83b3208bc137ae6eeb7451bcfde5a0b3779a", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Tue, 22 Jun 2021 15:04:23 GMT", - "tag": "@rnx-kit/dep-check_v1.5.6", - "version": "1.5.6", - "comments": { - "patch": [ - { - "comment": "Bumped chalk to 4.1.0, and workspace-tools to 0.16.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "fe36a9a52319cfac244fbbeb8c47a210af067366", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Mon, 21 Jun 2021 17:32:05 GMT", - "tag": "@rnx-kit/dep-check_v1.5.5", - "version": "1.5.5", - "comments": { - "patch": [ - { - "comment": "Promote @react-native-masked-view/masked-view over @react-native-community/masked-view", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "d2c832f866d64e595f8cceae5139bbbd033098b5", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Mon, 21 Jun 2021 11:43:28 GMT", - "tag": "@rnx-kit/dep-check_v1.5.4", - "version": "1.5.4", - "comments": { - "patch": [ - { - "comment": "Warn about renamed packages: `@react-native-community/async-storage` -> `@react-native-async-storage/async-storage` and `@react-native-community/masked-view` -> `@react-native-masked-view/masked-view`", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "97e5ae4b804010fe2457075ff5c1969391097b61", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Thu, 17 Jun 2021 06:05:20 GMT", - "tag": "@rnx-kit/dep-check_v1.5.3", - "version": "1.5.3", - "comments": { - "patch": [ - { - "comment": "Bumped react-native 0.64.1 -> 0.64.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "1e9d77d5f6f95f3c9819f81081850beea5cecbf3", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Fri, 04 Jun 2021 12:36:37 GMT", - "tag": "@rnx-kit/dep-check_v1.5.2", - "version": "1.5.2", - "comments": { - "patch": [ - { - "comment": "Fixed older yargs versions not ignoring flags with default values when looking for conflicts", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "434c350f84c22f492f3e5f5065ba2bc2d31b2678", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Fri, 04 Jun 2021 09:02:33 GMT", - "tag": "@rnx-kit/dep-check_v1.5.1", - "version": "1.5.1", - "comments": { - "patch": [ - { - "comment": "Added --exclude-packages to vigilant mode", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "fe5932b980aa4df8d081fe601c5bb553f54a3907", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Thu, 03 Jun 2021 10:15:50 GMT", - "tag": "@rnx-kit/dep-check_v1.5.0", - "version": "1.5.0", - "comments": { - "none": [ - { - "comment": "Formatted all the things", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "693d313e7ab36dcc0f28ec81b889bbd4aa4a89fd", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Wed, 02 Jun 2021 17:08:58 GMT", - "tag": "@rnx-kit/dep-check_v1.5.0", - "version": "1.5.0", - "comments": { - "minor": [ - { - "comment": "Add --vigilant flag for zero-config mode", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "26f466ce336fda0e8651582ce0c07873d0b7084e", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Mon, 31 May 2021 06:57:45 GMT", - "tag": "@rnx-kit/dep-check_v1.4.2", - "version": "1.4.2", - "comments": { - "none": [ - { - "comment": "Added design document.", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "7dfb8067e76b561b035a1b81d3cb8ef41b0978e0", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Thu, 27 May 2021 06:09:59 GMT", - "tag": "@rnx-kit/dep-check_v1.4.2", - "version": "1.4.2", - "comments": { - "patch": [ - { - "comment": "Fix 'devOnly' being ignored in custom profiles", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "5d0bb1baee85221f9bccf25e436a996738103de1", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Wed, 26 May 2021 13:22:22 GMT", - "tag": "@rnx-kit/dep-check_v1.4.1", - "version": "1.4.1", - "comments": { - "patch": [ - { - "comment": "Removed core-win32 capability", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "dd572c96f42e6c477fbfc178afd9892935b213c3", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Wed, 26 May 2021 06:53:03 GMT", - "tag": "@rnx-kit/dep-check_v1.4.0", - "version": "1.4.0", - "comments": { - "minor": [ - { - "comment": "Added support for custom profiles", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "d816342c652bfe239c8914e7048c9b6d20372589", - "package": "@rnx-kit/dep-check" - } - ], - "patch": [ - { - "comment": "Bump @rnx-kit/config to v0.2.7", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "d816342c652bfe239c8914e7048c9b6d20372589", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Thu, 20 May 2021 16:06:43 GMT", - "tag": "@rnx-kit/dep-check_v1.3.0", - "version": "1.3.0", - "comments": { - "minor": [ - { - "comment": "Add support for workspaces", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "8e1f94f63652f88208e19c5d67f0f513cf449332", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Thu, 20 May 2021 15:24:25 GMT", - "tag": "@rnx-kit/dep-check_v1.2.2", - "version": "1.2.2", - "comments": { - "patch": [ - { - "comment": "Bump react-native-test-app to 0.5.9 to address an issue with linters complaining about an old version of Dagger being used.", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "84c927a1863af77c32c02cdedd29e2a30c2169ae", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Wed, 19 May 2021 20:37:27 GMT", - "tag": "@rnx-kit/dep-check_v1.2.1", - "version": "1.2.1", - "comments": { - "none": [ - { - "comment": "Added a script to update capabilities table in the README", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "64d928a0fa70b9ccdc2f1ddaf69207a5a45eb1ad", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Wed, 19 May 2021 16:00:47 GMT", - "tag": "@rnx-kit/dep-check_v1.2.1", - "version": "1.2.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/config to v0.2.6", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "25050e7be5bd223a57940b02054ac288a6a8e0c2", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Wed, 19 May 2021 15:58:50 GMT", - "tag": "@rnx-kit/dep-check_v1.2.1", - "version": "1.2.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/config to v0.2.6", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "25050e7be5bd223a57940b02054ac288a6a8e0c2", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Tue, 18 May 2021 09:25:17 GMT", - "tag": "@rnx-kit/dep-check_v1.2.1", - "version": "1.2.1", - "comments": { - "patch": [ - { - "comment": "Ignore whitespace differences", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "986c9db076ab35e2f53f3b710ce0708cbb1899c3", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Sat, 15 May 2021 09:02:22 GMT", - "tag": "@rnx-kit/dep-check_v1.2.0", - "version": "1.2.0", - "comments": { - "minor": [ - { - "comment": "Added command for initializing a configuration", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "30eb2a9df003d7f71b61f78829d7f6dd83e6c2ea", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Sat, 15 May 2021 08:55:08 GMT", - "tag": "@rnx-kit/dep-check_v1.1.10", - "version": "1.1.10", - "comments": { - "patch": [ - { - "comment": "Print instructions when changes are needed.", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "124a204b9dca475c66775de809ae436eb969a193", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Sat, 15 May 2021 08:49:14 GMT", - "tag": "@rnx-kit/dep-check_v1.1.9", - "version": "1.1.9", - "comments": { - "patch": [ - { - "comment": "Exclude dev-only capabilities from requirements", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "d70e257508d6cb7207d5132e5cfb1323a569ca38", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Wed, 12 May 2021 11:52:17 GMT", - "tag": "@rnx-kit/dep-check_v1.1.8", - "version": "1.1.8", - "comments": { - "patch": [ - { - "comment": "Avoid installing unnecessary core capabilities", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "0dec2500df992c740b32e5b624d513b56312792f", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Wed, 12 May 2021 05:38:51 GMT", - "tag": "@rnx-kit/dep-check_v1.1.7", - "version": "1.1.7", - "comments": { - "none": [ - { - "comment": "Add table of capabilities to README", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4ebfac02941377da104bfed7eb114064acf25f7c", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Tue, 11 May 2021 15:41:12 GMT", - "tag": "@rnx-kit/dep-check_v1.1.7", - "version": "1.1.7", - "comments": { - "patch": [ - { - "comment": "Bump react-native-test-app for Xcode 12.5 fixes", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "62d55105865a37216acc27e4399be2562c1deac6", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Tue, 11 May 2021 15:36:06 GMT", - "tag": "@rnx-kit/dep-check_v1.1.6", - "version": "1.1.6", - "comments": { - "none": [ - { - "comment": "Added a section about the motivation behind dep-check", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4a2fe040dc45b66c552e6f947eb8c0024a658406", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Tue, 11 May 2021 15:28:18 GMT", - "tag": "@rnx-kit/dep-check_v1.1.6", - "version": "1.1.6", - "comments": { - "patch": [ - { - "comment": "Allow dev-only dependencies should always be added", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "f2d09f279b1d5f4eac5c81e2d4e9e260ae4bfa78", - "package": "@rnx-kit/dep-check" - }, - { - "comment": "Rollback @react-navigation/native as 5.9.6 doesn't exist", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "a8946cd093128fc3e81c778e222e5a895cf9da65", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Mon, 10 May 2021 21:58:48 GMT", - "tag": "@rnx-kit/dep-check_v1.1.5", - "version": "1.1.5", - "comments": { - "patch": [ - { - "comment": "Allow direct dependency on react-native-test-app", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "e085c163b72a693e3c588927319457705f3a54f6", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Mon, 10 May 2021 14:10:30 GMT", - "tag": "@rnx-kit/dep-check_v1.1.4", - "version": "1.1.4", - "comments": { - "patch": [ - { - "comment": "Libraries should not re-declare transitive dependencies", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "2a699c896062bb627e62f3628f8773594e96661e", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Sat, 08 May 2021 20:35:26 GMT", - "tag": "@rnx-kit/dep-check_v1.1.3", - "version": "1.1.3", - "comments": { - "patch": [ - { - "comment": "Fix a crash in react-native-lazy-index when non-JS files are read", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "5847a1e9383f0465e686ed15598a78831283aa7f", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Thu, 06 May 2021 20:37:55 GMT", - "tag": "@rnx-kit/dep-check_v1.1.2", - "version": "1.1.2", - "comments": { - "none": [ - { - "comment": "Split tsconfig options out into a shared file that can be included in all projects without specifying any source files.", - "author": "afoxman@microsoft.com", - "commit": "c34ccb3ca74893ea0741603b46aa96a238d59831", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Wed, 05 May 2021 21:00:14 GMT", - "tag": "@rnx-kit/dep-check_v1.1.2", - "version": "1.1.2", - "comments": { - "patch": [ - { - "comment": "Add preliminary profile for 0.65", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c20ff4cdd6e961c0a697fba52b61bf4d5f9aa1c6", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Wed, 05 May 2021 20:55:03 GMT", - "tag": "@rnx-kit/dep-check_v1.1.1", - "version": "1.1.1", - "comments": { - "patch": [ - { - "comment": "Bump react-native to address build issues with Xcode 12.5", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "029fced0d8da2f9745e687bfce42ef072bcb7bf4", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Wed, 05 May 2021 19:51:01 GMT", - "tag": "@rnx-kit/dep-check_v1.1.0", - "version": "1.1.0", - "comments": { - "minor": [ - { - "comment": "Apply transitive requirements", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "ae2e1aec823003e81003269160ba7dce04eb1714", - "package": "@rnx-kit/dep-check" - } - ], - "patch": [ - { - "comment": "Bump @rnx-kit/config to v0.2.6", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "ae2e1aec823003e81003269160ba7dce04eb1714", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Wed, 05 May 2021 07:05:52 GMT", - "tag": "@rnx-kit/dep-check_v1.0.3", - "version": "1.0.3", - "comments": { - "none": [ - { - "comment": "Use Babel preset for Jest + TypeScript", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c8ab12de29e878b96cb44fdff06aaf2e0ea868d7", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Thu, 29 Apr 2021 13:47:02 GMT", - "tag": "@rnx-kit/dep-check_v1.0.3", - "version": "1.0.3", - "comments": { - "patch": [ - { - "comment": "Bump react-native to latest 0.63.x", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "15c1e30a91a17422f6a45e1f34048540660fc7d9", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Wed, 28 Apr 2021 16:03:56 GMT", - "tag": "@rnx-kit/dep-check_v1.0.2", - "version": "1.0.2", - "comments": { - "patch": [ - { - "comment": "Expose cli for cli related integrations", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "1f697f4a4ca19ee376fd41f6f973bc2cef2b9be9", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Wed, 28 Apr 2021 15:54:06 GMT", - "tag": "@rnx-kit/dep-check_v1.0.1", - "version": "1.0.1", - "comments": { - "patch": [ - { - "comment": "Add 'hermes' capability", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c79828791a6ac5cf19b4abfff6347542af49eaec", - "package": "@rnx-kit/dep-check" - } - ] - } - }, - { - "date": "Tue, 27 Apr 2021 19:43:40 GMT", - "tag": "@rnx-kit/dep-check_v1.0.0", - "version": "1.0.0", - "comments": { - "minor": [ - { - "comment": "Initial dependency checker", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "87ec0aec3a1c1f0801f3d9f3da2b949bb0fd6d5e", - "package": "@rnx-kit/dep-check" - } - ], - "patch": [ - { - "comment": "Bump @rnx-kit/config to v0.2.4", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "87ec0aec3a1c1f0801f3d9f3da2b949bb0fd6d5e", - "package": "@rnx-kit/dep-check" - } - ] - } - } - ] -} diff --git a/packages/esbuild-plugin-import-path-remapper/CHANGELOG.json b/packages/esbuild-plugin-import-path-remapper/CHANGELOG.json deleted file mode 100644 index d851911c7..000000000 --- a/packages/esbuild-plugin-import-path-remapper/CHANGELOG.json +++ /dev/null @@ -1,125 +0,0 @@ -{ - "name": "@rnx-kit/esbuild-plugin-import-path-remapper", - "entries": [ - { - "date": "Thu, 18 Nov 2021 20:51:05 GMT", - "tag": "@rnx-kit/esbuild-plugin-import-path-remapper_v1.1.8", - "version": "1.1.8", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/esbuild-plugin-import-path-remapper", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/esbuild-plugin-import-path-remapper_v1.1.7", - "version": "1.1.7", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/esbuild-plugin-import-path-remapper", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/esbuild-plugin-import-path-remapper_v1.1.7", - "version": "1.1.7", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/esbuild-plugin-import-path-remapper", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Mon, 01 Nov 2021 13:46:12 GMT", - "tag": "@rnx-kit/esbuild-plugin-import-path-remapper_v1.1.4", - "version": "1.1.4", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/esbuild-plugin-import-path-remapper", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb", - "comment": "Normalize main and types fields across all packages which use them." - } - ] - } - }, - { - "date": "Fri, 22 Oct 2021 18:31:09 GMT", - "tag": "@rnx-kit/esbuild-plugin-import-path-remapper_v1.1.0", - "version": "1.1.0", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/esbuild-plugin-import-path-remapper", - "commit": "3c965a3209c03b06f145f9edad4b07a230a0f058", - "comment": "Add missing dependency" - } - ] - } - }, - { - "date": "Mon, 11 Oct 2021 18:12:04 GMT", - "tag": "@rnx-kit/esbuild-plugin-import-path-remapper_v1.1.0", - "version": "1.1.0", - "comments": { - "minor": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/esbuild-plugin-import-path-remapper", - "comment": "Bump esbuild to 0.13.4", - "commit": "3c831c64828f1df9cadee777cf3e454e1677ecaa" - } - ] - } - }, - { - "date": "Wed, 08 Sep 2021 06:42:50 GMT", - "tag": "@rnx-kit/esbuild-plugin-import-path-remapper_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/esbuild-plugin-import-path-remapper", - "comment": "Use repo Jest preset", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3" - } - ] - } - }, - { - "date": "Mon, 23 Aug 2021 17:18:07 GMT", - "tag": "@rnx-kit/esbuild-plugin-import-path-remapper_v1.0.0", - "version": "1.0.0", - "comments": { - "minor": [ - { - "author": "sverre.johansen@gmail.com", - "package": "@rnx-kit/esbuild-plugin-import-path-remapper", - "comment": "Added esbuild plugin for mapping lib/ imports to src/", - "commit": "7200426250deb288fb38a3d8da91bb74a0e71437" - } - ] - } - } - ] -} diff --git a/packages/eslint-config/CHANGELOG.json b/packages/eslint-config/CHANGELOG.json deleted file mode 100644 index 790f52dca..000000000 --- a/packages/eslint-config/CHANGELOG.json +++ /dev/null @@ -1,185 +0,0 @@ -{ - "name": "@rnx-kit/eslint-config", - "entries": [ - { - "date": "Tue, 30 Nov 2021 17:24:14 GMT", - "tag": "@rnx-kit/eslint-config_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/eslint-config", - "comment": "Bump @rnx-kit/eslint-plugin to v0.2.8", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - } - ] - } - }, - { - "date": "Fri, 26 Nov 2021 09:20:19 GMT", - "tag": "@rnx-kit/eslint-config_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "author": "beachball", - "package": "@rnx-kit/eslint-config", - "comment": "Bump @rnx-kit/eslint-plugin to v0.2.7", - "commit": "67c93019f3c30f57f695a4f198f0c3d41dfb1b8e" - } - ] - } - }, - { - "date": "Tue, 23 Nov 2021 07:25:36 GMT", - "tag": "@rnx-kit/eslint-config_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "author": "beachball", - "package": "@rnx-kit/eslint-config", - "comment": "Bump @rnx-kit/eslint-plugin to v0.2.6", - "commit": "61c5dd2366239da41b9ce039ad4899a20ab53404" - } - ] - } - }, - { - "date": "Fri, 19 Nov 2021 09:22:42 GMT", - "tag": "@rnx-kit/eslint-config_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "author": "beachball", - "package": "@rnx-kit/eslint-config", - "comment": "Bump @rnx-kit/eslint-plugin to v0.2.5", - "commit": "212309afcb0c1dcac6a76b225293cad6c00e2026" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/eslint-config_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "author": "beachball", - "package": "@rnx-kit/eslint-config", - "comment": "Bump @rnx-kit/eslint-plugin to v0.2.4", - "commit": "7d2673629eed020214fadeb61fd2b943216b8a04" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 08:21:42 GMT", - "tag": "@rnx-kit/eslint-config_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "author": "beachball", - "package": "@rnx-kit/eslint-config", - "comment": "Bump @rnx-kit/eslint-plugin to v0.2.3", - "commit": "9945c072e41b4ebff48e493f145eeff490fe0699" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 19:24:49 GMT", - "tag": "@rnx-kit/eslint-config_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/eslint-config", - "comment": "Bump @rnx-kit/eslint-plugin to v0.2.2", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - } - ] - } - }, - { - "date": "Thu, 04 Nov 2021 17:54:44 GMT", - "tag": "@rnx-kit/eslint-config_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "author": "beachball", - "package": "@rnx-kit/eslint-config", - "comment": "Bump @rnx-kit/eslint-plugin to v0.2.1", - "commit": "fc715196af54c32633a25179229a4f32b68580ca" - } - ] - } - }, - { - "date": "Wed, 03 Nov 2021 18:15:39 GMT", - "tag": "@rnx-kit/eslint-config_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/eslint-config", - "comment": "Bump @rnx-kit/eslint-plugin to v0.2.0", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 12:14:31 GMT", - "tag": "@rnx-kit/eslint-config_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/eslint-config", - "comment": "Bump @rnx-kit/eslint-plugin to v0.1.2", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 10:31:10 GMT", - "tag": "@rnx-kit/eslint-config_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/eslint-config", - "comment": "Bump @rnx-kit/eslint-plugin to v0.1.1", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 08:51:30 GMT", - "tag": "@rnx-kit/eslint-config_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/eslint-config", - "comment": "Bump @rnx-kit/eslint-plugin to v0.1.0", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - } - ] - } - } - ] -} diff --git a/packages/eslint-plugin/CHANGELOG.json b/packages/eslint-plugin/CHANGELOG.json deleted file mode 100644 index 893fae432..000000000 --- a/packages/eslint-plugin/CHANGELOG.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "name": "@rnx-kit/eslint-plugin", - "entries": [ - { - "date": "Tue, 30 Nov 2021 17:24:14 GMT", - "tag": "@rnx-kit/eslint-plugin_v0.2.8", - "version": "0.2.8", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/eslint-plugin", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0", - "comment": "Drop optional chaining to support older Node versions" - } - ] - } - }, - { - "date": "Fri, 26 Nov 2021 09:20:19 GMT", - "tag": "@rnx-kit/eslint-plugin_v0.2.7", - "version": "0.2.7", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/eslint-plugin", - "commit": "67c93019f3c30f57f695a4f198f0c3d41dfb1b8e", - "comment": "Add proper support for `const` enums" - } - ] - } - }, - { - "date": "Tue, 23 Nov 2021 07:25:36 GMT", - "tag": "@rnx-kit/eslint-plugin_v0.2.6", - "version": "0.2.6", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/eslint-plugin", - "commit": "61c5dd2366239da41b9ce039ad4899a20ab53404", - "comment": "no-export-all: add support for namespaces" - } - ] - } - }, - { - "date": "Fri, 19 Nov 2021 09:22:42 GMT", - "tag": "@rnx-kit/eslint-plugin_v0.2.5", - "version": "0.2.5", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/eslint-plugin", - "commit": "212309afcb0c1dcac6a76b225293cad6c00e2026", - "comment": "no-export-all: Fix dupes sometimes showing up in fixed code" - } - ] - } - }, - { - "date": "Thu, 18 Nov 2021 20:51:05 GMT", - "tag": "@rnx-kit/eslint-plugin_v0.2.4", - "version": "0.2.4", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/eslint-plugin", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/eslint-plugin_v0.2.4", - "version": "0.2.4", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/eslint-plugin", - "commit": "ff8ab19c5121d3feadfe7e41332b5ccb2d8763a9", - "comment": "Handle `project` field sometimes returning an array of strings, and add support for enums." - } - ], - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/eslint-plugin", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/eslint-plugin_v0.2.3", - "version": "0.2.3", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/eslint-plugin", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 08:21:42 GMT", - "tag": "@rnx-kit/eslint-plugin_v0.2.3", - "version": "0.2.3", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/eslint-plugin", - "commit": "9945c072e41b4ebff48e493f145eeff490fe0699", - "comment": "Prefer parsing `.d.ts` over `.js` so we don't lose type information" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 19:24:49 GMT", - "tag": "@rnx-kit/eslint-plugin_v0.2.2", - "version": "0.2.2", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/eslint-plugin", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05", - "comment": "Fix no-export-all failing to parse files that are outside the TypeScript project" - } - ] - } - }, - { - "date": "Thu, 04 Nov 2021 17:54:44 GMT", - "tag": "@rnx-kit/eslint-plugin_v0.2.1", - "version": "0.2.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/eslint-plugin", - "commit": "fc715196af54c32633a25179229a4f32b68580ca", - "comment": "Adds `module` to the list of main fields to consider, and options for setting max depth and enabling debug output." - } - ] - } - }, - { - "date": "Wed, 03 Nov 2021 18:15:39 GMT", - "tag": "@rnx-kit/eslint-plugin_v0.2.0", - "version": "0.2.0", - "comments": { - "minor": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/eslint-plugin", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d", - "comment": "Implemented fixer for `no-export-all`" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 12:14:31 GMT", - "tag": "@rnx-kit/eslint-plugin_v0.1.2", - "version": "0.1.2", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/eslint-plugin", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa", - "comment": "Enable `ignoreRestSiblings` to allow prop omission" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 10:31:10 GMT", - "tag": "@rnx-kit/eslint-plugin_v0.1.1", - "version": "0.1.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/eslint-plugin", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584", - "comment": "Re-enable no-unused-vars. It looks like optional chaining is no longer causing false positives." - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 08:51:30 GMT", - "tag": "@rnx-kit/eslint-plugin_v0.1.0", - "version": "0.1.0", - "comments": { - "minor": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/eslint-plugin", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7", - "comment": "@rnx-kit/eslint-plugin recommended ESLint rules for React devs" - } - ] - } - } - ] -} diff --git a/packages/golang/CHANGELOG.json b/packages/golang/CHANGELOG.json deleted file mode 100644 index fe034a16e..000000000 --- a/packages/golang/CHANGELOG.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "name": "@rnx-kit/golang", - "entries": [ - { - "date": "Thu, 18 Nov 2021 20:51:05 GMT", - "tag": "@rnx-kit/golang_v0.1.7", - "version": "0.1.7", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/golang", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Exit earlier if we've already installed Go" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/golang_v0.1.6", - "version": "0.1.6", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/golang", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/golang_v0.1.6", - "version": "0.1.6", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/golang", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 07:33:42 GMT", - "tag": "@rnx-kit/golang_v0.1.5", - "version": "0.1.5", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/golang", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81", - "comment": "Move typescript to a dev dependency." - } - ] - } - }, - { - "date": "Fri, 22 Oct 2021 18:31:09 GMT", - "tag": "@rnx-kit/golang_v0.1.0", - "version": "0.1.0", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/golang", - "commit": "3c965a3209c03b06f145f9edad4b07a230a0f058", - "comment": "Move Go infra into its own package so other repos can use it. Add documentation. Remove dependency on just-scripts." - } - ] - } - } - ] -} diff --git a/packages/jest-preset/CHANGELOG.json b/packages/jest-preset/CHANGELOG.json deleted file mode 100644 index a51de8ca8..000000000 --- a/packages/jest-preset/CHANGELOG.json +++ /dev/null @@ -1,140 +0,0 @@ -{ - "name": "@rnx-kit/jest-preset", - "entries": [ - { - "date": "Thu, 18 Nov 2021 20:51:05 GMT", - "tag": "@rnx-kit/jest-preset_v0.1.8", - "version": "0.1.8", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/jest-preset", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/jest-preset_v0.1.7", - "version": "0.1.7", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/jest-preset", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/jest-preset_v0.1.7", - "version": "0.1.7", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/jest-preset", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 16:06:09 GMT", - "tag": "@rnx-kit/jest-preset_v0.1.1", - "version": "0.1.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/jest-preset", - "comment": "Added lint script", - "commit": "f7b4eeebbd2576f83048ce5d2a0c538574d76c99" - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 16:05:55 GMT", - "tag": "@rnx-kit/jest-preset_v0.1.1", - "version": "0.1.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/jest-preset", - "comment": "Added lint script", - "commit": "4463a88285b37b622deb06717c92ff0f3c5451ad" - } - ] - } - }, - { - "date": "Wed, 08 Sep 2021 06:42:50 GMT", - "tag": "@rnx-kit/jest-preset_v0.1.1", - "version": "0.1.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/jest-preset", - "comment": "Use repo Jest preset", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3" - } - ] - } - }, - { - "date": "Tue, 24 Aug 2021 08:09:36 GMT", - "tag": "@rnx-kit/jest-preset_v0.1.1", - "version": "0.1.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/jest-preset", - "comment": "Suppress TypeScript error with CLI 6.x", - "commit": "ccf242e997e1b399f3dc7253f36e5639a3e64036" - } - ] - } - }, - { - "date": "Wed, 04 Aug 2021 10:08:23 GMT", - "tag": "@rnx-kit/jest-preset_v0.1.1", - "version": "0.1.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/jest-preset", - "comment": "Fix incorrect peer dependencies: added `@babel/core` and made the others optional since this package can be used without react-native.", - "commit": "1d13d5df2ec61bb3426521199cde4e588cb849b1" - } - ] - } - }, - { - "date": "Thu, 29 Jul 2021 19:42:04 GMT", - "tag": "@rnx-kit/jest-preset_v0.1.0", - "version": "0.1.0", - "comments": { - "minor": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/jest-preset", - "comment": "@rnx-kit/jest-preset is a Jest preset for React Native", - "commit": "bf6cf5092d383a447d0075fcf4f2584bbb347236" - } - ] - } - } - ] -} diff --git a/packages/metro-config/CHANGELOG.json b/packages/metro-config/CHANGELOG.json deleted file mode 100644 index b1c7b2f80..000000000 --- a/packages/metro-config/CHANGELOG.json +++ /dev/null @@ -1,1114 +0,0 @@ -{ - "name": "@rnx-kit/metro-config", - "entries": [ - { - "date": "Tue, 30 Nov 2021 17:24:14 GMT", - "tag": "@rnx-kit/metro-config_v1.2.26", - "version": "1.2.26", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-config", - "comment": "Bump @rnx-kit/babel-preset-metro-react-native to v1.0.17", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-config", - "comment": "Bump @rnx-kit/tools-node to v1.2.6", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - } - ] - } - }, - { - "date": "Thu, 18 Nov 2021 20:51:05 GMT", - "tag": "@rnx-kit/metro-config_v1.2.25", - "version": "1.2.25", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-config", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ], - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-config", - "comment": "Bump @rnx-kit/babel-preset-metro-react-native to v1.0.16", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-config", - "comment": "Bump @rnx-kit/tools-node to v1.2.5", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/metro-config_v1.2.24", - "version": "1.2.24", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-config", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/metro-config_v1.2.24", - "version": "1.2.24", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-config", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 16:33:53 GMT", - "tag": "@rnx-kit/metro-config_v1.2.24", - "version": "1.2.24", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-config", - "commit": "not available", - "comment": "Transition from using our private Metro @types packages to the officially published @types packages." - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 16:31:46 GMT", - "tag": "@rnx-kit/metro-config_v1.2.24", - "version": "1.2.24", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-config", - "commit": "9c3acf4028bb449e60340b1096993b3f3fe462d5", - "comment": "Transition from using our private Metro @types packages to the officially published @types packages." - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 19:24:49 GMT", - "tag": "@rnx-kit/metro-config_v1.2.24", - "version": "1.2.24", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-config", - "comment": "Bump @rnx-kit/babel-preset-metro-react-native to v1.0.15", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-config", - "comment": "Bump @rnx-kit/tools-node to v1.2.4", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 07:33:42 GMT", - "tag": "@rnx-kit/metro-config_v1.2.23", - "version": "1.2.23", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-config", - "comment": "Bump @rnx-kit/babel-preset-metro-react-native to v1.0.14", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-config", - "comment": "Bump @rnx-kit/tools-node to v1.2.3", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - } - ] - } - }, - { - "date": "Wed, 03 Nov 2021 18:15:39 GMT", - "tag": "@rnx-kit/metro-config_v1.2.22", - "version": "1.2.22", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-config", - "comment": "Bump @rnx-kit/babel-preset-metro-react-native to v1.0.13", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-config", - "comment": "Bump @rnx-kit/tools-node to v1.2.2", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - } - ] - } - }, - { - "date": "Mon, 01 Nov 2021 13:46:13 GMT", - "tag": "@rnx-kit/metro-config_v1.2.21", - "version": "1.2.21", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-config", - "comment": "Bump @rnx-kit/babel-preset-metro-react-native to v1.0.12", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-config", - "comment": "Bump @rnx-kit/tools-node to v1.2.1", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - } - ] - } - }, - { - "date": "Sat, 30 Oct 2021 07:50:51 GMT", - "tag": "@rnx-kit/metro-config_v1.2.20", - "version": "1.2.20", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-config", - "comment": "Bump @rnx-kit/babel-preset-metro-react-native to v1.0.11", - "commit": "6133f8fe0298611e4c736e94b46f32752d139e76" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-config", - "comment": "Bump @rnx-kit/tools-node to v1.2.0", - "commit": "6133f8fe0298611e4c736e94b46f32752d139e76" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 12:14:31 GMT", - "tag": "@rnx-kit/metro-config_v1.2.19", - "version": "1.2.19", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-config", - "comment": "Bump @rnx-kit/babel-preset-metro-react-native to v1.0.10", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-config", - "comment": "Bump @rnx-kit/tools-node to v1.1.6", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 10:31:10 GMT", - "tag": "@rnx-kit/metro-config_v1.2.18", - "version": "1.2.18", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-config", - "comment": "Bump @rnx-kit/babel-preset-metro-react-native to v1.0.9", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-config", - "comment": "Bump @rnx-kit/tools-node to v1.1.5", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 08:51:30 GMT", - "tag": "@rnx-kit/metro-config_v1.2.17", - "version": "1.2.17", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-config", - "comment": "Bump @rnx-kit/babel-preset-metro-react-native to v1.0.8", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-config", - "comment": "Bump @rnx-kit/tools-node to v1.1.4", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 16:06:09 GMT", - "tag": "@rnx-kit/metro-config_v1.2.16", - "version": "1.2.16", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-config", - "comment": "Upgrade Jest to v27", - "commit": "f7b4eeebbd2576f83048ce5d2a0c538574d76c99" - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 16:05:55 GMT", - "tag": "@rnx-kit/metro-config_v1.2.16", - "version": "1.2.16", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-config", - "comment": "Upgrade Jest to v27", - "commit": "4463a88285b37b622deb06717c92ff0f3c5451ad" - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 08:38:38 GMT", - "tag": "@rnx-kit/metro-config_v1.2.16", - "version": "1.2.16", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-config", - "comment": "Bump @rnx-kit/babel-preset-metro-react-native to v1.0.7", - "commit": "272f195ab4b9341bb8a47aa38a9e17fb54dfe6e6" - } - ] - } - }, - { - "date": "Tue, 21 Sep 2021 13:01:58 GMT", - "tag": "@rnx-kit/metro-config_v1.2.15", - "version": "1.2.15", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-config", - "comment": "Enable `--isolatedModules` to ensure compatibility with transpilers that only operate on a single file at a time, e.g. Babel or esbuild.", - "commit": "862d756cce07a4403fcba65d8b0e1979c384fd01" - } - ], - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-config", - "comment": "Bump @rnx-kit/babel-preset-metro-react-native to v1.0.6", - "commit": "862d756cce07a4403fcba65d8b0e1979c384fd01" - } - ] - } - }, - { - "date": "Thu, 16 Sep 2021 10:10:39 GMT", - "tag": "@rnx-kit/metro-config_v1.2.14", - "version": "1.2.14", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-config", - "commit": "ac474077fa1675e2faaa74ced891ba1e1a6673f0", - "comment": "Bump @rnx-kit/metro-config to v1.2.14" - } - ] - } - }, - { - "date": "Wed, 08 Sep 2021 06:42:50 GMT", - "tag": "@rnx-kit/metro-config_v1.2.13", - "version": "1.2.13", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-config", - "comment": "Wrong module may be resolved because we're ignoring symlinks", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-config", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3", - "comment": "Bump @rnx-kit/metro-config to v1.2.13" - } - ], - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-config", - "comment": "Use repo Jest preset", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3" - } - ] - } - }, - { - "date": "Fri, 03 Sep 2021 12:18:30 GMT", - "tag": "@rnx-kit/metro-config_v1.2.12", - "version": "1.2.12", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-config", - "commit": "ced0ef438232d91f7fa527f51e23e6da9e7dbf2c", - "comment": "Bump @rnx-kit/metro-config to v1.2.12" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 07:00:17 GMT", - "tag": "@rnx-kit/metro-config_v1.2.11", - "version": "1.2.11", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-config", - "commit": "0eecc568dd8ff556cd3964772c614cbbf7eefb98", - "comment": "Bump @rnx-kit/metro-config to v1.2.11" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 06:43:13 GMT", - "tag": "@rnx-kit/metro-config_v1.2.11", - "version": "1.2.11", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-config", - "commit": "25b936b3786f2a37dc6feacb4034e6afb56e343b", - "comment": "Bump @rnx-kit/metro-config to v1.2.11" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 06:34:16 GMT", - "tag": "@rnx-kit/metro-config_v1.2.10", - "version": "1.2.10", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-config", - "comment": "Converted tests to proper TypeScript", - "commit": "5b06c8ffb55eb06976fb2d7bdcfbca79fe12f7f9" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 06:21:44 GMT", - "tag": "@rnx-kit/metro-config_v1.2.10", - "version": "1.2.10", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-config", - "comment": "Fix assets not resolving correctly in monorepos", - "commit": "eed680eae677e25f2b0b70e832319260271cc0e6" - } - ] - } - }, - { - "date": "Fri, 27 Aug 2021 18:41:43 GMT", - "tag": "@rnx-kit/metro-config_v1.2.9", - "version": "1.2.9", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-config", - "commit": "dcb826baf0cc3705b460776bdb31e19930f4f2dc", - "comment": "Bump @rnx-kit/metro-config to v1.2.9" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 08:52:48 GMT", - "tag": "@rnx-kit/metro-config_v1.2.8", - "version": "1.2.8", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-config", - "commit": "0e657ab7ff261ebf6873ef7418cbb40d6418ca8e", - "comment": "Bump @rnx-kit/metro-config to v1.2.8" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 07:32:57 GMT", - "tag": "@rnx-kit/metro-config_v1.2.7", - "version": "1.2.7", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-config", - "commit": "b8093ce5af4bcdad1b2d91b45da54ee640fab8ae", - "comment": "Bump @rnx-kit/metro-config to v1.2.7" - } - ] - } - }, - { - "date": "Tue, 24 Aug 2021 08:09:36 GMT", - "tag": "@rnx-kit/metro-config_v1.2.6", - "version": "1.2.6", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-config", - "commit": "ccf242e997e1b399f3dc7253f36e5639a3e64036", - "comment": "Bump @rnx-kit/metro-config to v1.2.6" - } - ] - } - }, - { - "date": "Sat, 21 Aug 2021 08:22:48 GMT", - "tag": "@rnx-kit/metro-config_v1.2.6", - "version": "1.2.6", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-config", - "comment": "Integrate tools package and other common libraries throughout monorepo, removing custom code.", - "commit": "f65f706c734841c4339ca1f825b9c9505cea8941" - }, - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-config", - "commit": "f65f706c734841c4339ca1f825b9c9505cea8941", - "comment": "Bump @rnx-kit/metro-config to v1.2.6" - } - ] - } - }, - { - "date": "Fri, 20 Aug 2021 10:36:13 GMT", - "tag": "@rnx-kit/metro-config_v1.2.5", - "version": "1.2.5", - "comments": { - "patch": [ - { - "author": "asgramme@microsoft.com", - "package": "@rnx-kit/metro-config", - "comment": "Add react peer dependencies", - "commit": "3f9a0bf27632a63d0b2b058282edc8283a4b1668" - } - ] - } - }, - { - "date": "Mon, 16 Aug 2021 14:17:13 GMT", - "tag": "@rnx-kit/metro-config_v1.2.4", - "version": "1.2.4", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-config", - "commit": "59fb7d424f11437a534812df67804544baddeacc", - "comment": "Bump @rnx-kit/metro-config to v1.2.4" - } - ] - } - }, - { - "date": "Thu, 22 Jul 2021 09:12:14 GMT", - "tag": "@rnx-kit/metro-config_v1.2.3", - "version": "1.2.3", - "comments": { - "patch": [ - { - "comment": "Prevent Metro from watching temporary files generated by Visual Studio", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "ef46281ebe6329c9a92f486c7461118179a0db06", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Tue, 20 Jul 2021 09:17:58 GMT", - "tag": "@rnx-kit/metro-config_v1.2.2", - "version": "1.2.2", - "comments": { - "patch": [ - { - "comment": "Fix handling of scoped dependencies in exclusions", - "author": "arabisho@microsoft.com", - "commit": "adda1c55902fc4bba4a6798b71053771e18131e6", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 09:53:10 GMT", - "tag": "@rnx-kit/metro-config_v1.2.1", - "version": "1.2.1", - "comments": { - "none": [ - { - "comment": "Added `lint` script", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "d5c36bb21e3482c24ff8b029cb60802d04e6bb64", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:45 GMT", - "tag": "@rnx-kit/metro-config_v1.2.1", - "version": "1.2.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-config to v1.2.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "eaedb2cae443a479e131cfd71fab5c1039daca9d", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:25 GMT", - "tag": "@rnx-kit/metro-config_v1.2.1", - "version": "1.2.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-config to v1.2.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "12196abcec79794493615829c3783d35f5bfc364", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 14:18:15 GMT", - "tag": "@rnx-kit/metro-config_v1.2.1", - "version": "1.2.1", - "comments": { - "none": [ - { - "comment": "Updated READMEs to mention that metro-serializer-esbuild requires Metro 0.66.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "a650a6ce4992a6245eb26bfec1f7cef7dcfcba4a", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:47 GMT", - "tag": "@rnx-kit/metro-config_v1.2.1", - "version": "1.2.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-config to v1.2.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "2dc9fe456410eed10abbfa464ae7aa7e5cef7aef", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:07 GMT", - "tag": "@rnx-kit/metro-config_v1.2.1", - "version": "1.2.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-config to v1.2.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "f3ff6e5f5c20cf9e8c81ca25a4fae3f483925c59", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Thu, 08 Jul 2021 09:26:30 GMT", - "tag": "@rnx-kit/metro-config_v1.2.1", - "version": "1.2.1", - "comments": { - "none": [ - { - "comment": "Update Metro.", - "author": "afoxman@microsoft.com", - "commit": "dc1565a9c099dfb9fb336aec69ad41ecf05e0a8e", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Mon, 05 Jul 2021 15:15:06 GMT", - "tag": "@rnx-kit/metro-config_v1.2.1", - "version": "1.2.1", - "comments": { - "none": [ - { - "comment": "Provide links to plugins in README", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "53faa95399eaad7a8df9c758335380029d0d2041", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Mon, 28 Jun 2021 14:19:44 GMT", - "tag": "@rnx-kit/metro-config_v1.2.1", - "version": "1.2.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-config to v1.2.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4794d9d1b5f8b9d1174dc0799291ff2e0a19b792", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 09:28:25 GMT", - "tag": "@rnx-kit/metro-config_v1.2.1", - "version": "1.2.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-config to v1.2.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4701f7a40c050f8d376fbcfc84ce6e50f5fcf501", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Tue, 22 Jun 2021 15:04:23 GMT", - "tag": "@rnx-kit/metro-config_v1.2.1", - "version": "1.2.1", - "comments": { - "patch": [ - { - "comment": "Bumped find-up to 5.0, and workspace-tools to 0.16.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "fe36a9a52319cfac244fbbeb8c47a210af067366", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Thu, 17 Jun 2021 18:01:13 GMT", - "tag": "@rnx-kit/metro-config_v1.2.0", - "version": "1.2.0", - "comments": { - "none": [ - { - "comment": "Bump Metro to 0.66 for dev purposes", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "3bcc48b08a5ee4ad203fe9ab55b9a324c0a244d0", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Thu, 03 Jun 2021 10:15:50 GMT", - "tag": "@rnx-kit/metro-config_v1.2.0", - "version": "1.2.0", - "comments": { - "none": [ - { - "comment": "Formatted all the things", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "693d313e7ab36dcc0f28ec81b889bbd4aa4a89fd", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Thu, 20 May 2021 06:03:39 GMT", - "tag": "@rnx-kit/metro-config_v1.2.0", - "version": "1.2.0", - "comments": { - "minor": [ - { - "comment": "Added support for Lerna, pnpm, Rush workspaces", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4a9e6c2f48d9d0faa352bd4e28b9c3294a3de6b5", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Tue, 18 May 2021 19:20:51 GMT", - "tag": "@rnx-kit/metro-config_v1.1.4", - "version": "1.1.4", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/babel-preset-metro-react-native to v1.0.3", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c767296fbf6f78fc5259cd6ddbd4d219891922e0", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Thu, 06 May 2021 20:37:55 GMT", - "tag": "@rnx-kit/metro-config_v1.1.3", - "version": "1.1.3", - "comments": { - "none": [ - { - "comment": "Split tsconfig options out into a shared file that can be included in all projects without specifying any source files.", - "author": "afoxman@microsoft.com", - "commit": "c34ccb3ca74893ea0741603b46aa96a238d59831", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Fri, 16 Apr 2021 12:03:52 GMT", - "tag": "@rnx-kit/metro-config_v1.1.3", - "version": "1.1.3", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/babel-preset-metro-react-native to v1.0.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "770100be65c0c06f380769ace3f287d27d4408c0", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Wed, 07 Apr 2021 16:29:26 GMT", - "tag": "@rnx-kit/metro-config_v1.1.2", - "version": "1.1.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/babel-preset-metro-react-native to v1.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "85047602b77d9eb201c3aad51b8206d504a70eb3", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Mon, 15 Mar 2021 07:09:22 GMT", - "tag": "@rnx-kit/metro-config_v1.1.2", - "version": "1.1.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/babel-preset-metro-react-native to v1.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "38515b5c325c76c6ac6652757433c62deb2e811c", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Thu, 11 Mar 2021 23:54:05 GMT", - "tag": "@rnx-kit/metro-config_v1.1.2", - "version": "1.1.2", - "comments": { - "patch": [ - { - "comment": "Fixed a typo in README", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "ad889b0e030e217d9df940a3aa605da6387fbc19", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Thu, 11 Mar 2021 22:51:12 GMT", - "tag": "@rnx-kit/metro-config_v1.1.1", - "version": "1.1.1", - "comments": { - "patch": [ - { - "comment": "Fix fail to resolve react-native on Windows", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "e113d4f5b8737ce1fccc37c9c48d356a6fe28511", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Thu, 11 Mar 2021 15:31:28 GMT", - "tag": "@rnx-kit/metro-config_v1.1.0", - "version": "1.1.0", - "comments": { - "minor": [ - { - "comment": "Removes makeBabelConfig() for @rnx-kit/babel-preset-metro-react-native", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "f51c3a2734ba34d74ce0b784daba05b2deb85bcf", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Tue, 09 Mar 2021 20:34:23 GMT", - "tag": "@rnx-kit/metro-config_v1.0.4", - "version": "1.0.4", - "comments": { - "none": [ - { - "comment": "Remove platform-specific jest tasks. Clean up unneeded Jest dependencies.", - "author": "afoxman@microsoft.com", - "commit": "199a3ace5c54d83aaef163a3b09b5df01e4cf6b3", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Tue, 09 Mar 2021 08:21:51 GMT", - "tag": "@rnx-kit/metro-config_v1.0.4", - "version": "1.0.4", - "comments": { - "patch": [ - { - "comment": "Exclusion rules should ignore symlinks", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "e680fda8c1b6829140a64c26280c31cf3143cf0d", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Mon, 08 Mar 2021 20:53:41 GMT", - "tag": "@rnx-kit/metro-config_v1.0.3", - "version": "1.0.3", - "comments": { - "none": [ - { - "comment": "Update beachball to bring in bugfix when looking for package.json files to use for the monorepo graph. Undo automated changelog update that occurred when I was experimenting with beachball locally.", - "author": "afoxman@microsoft.com", - "commit": "75565553e5dc8440f18c3fb40bf48d008d83d5cf", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Mon, 08 Mar 2021 10:59:59 GMT", - "tag": "@rnx-kit/metro-config_v1.0.3", - "version": "1.0.3", - "comments": { - "none": [ - { - "comment": "Document fix for React DevTools' Flipper plugin being disabled", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4b94373ba5a2c4071e199f759b15b449d66f4c0c", - "package": "@rnx-kit/metro-config" - } - ], - "patch": [ - { - "comment": "Fix sibling packages resolving to wrong react-native copy", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "e7207b90e1335d1f6b418a8b5e108e33d61bc0a2", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Mon, 22 Feb 2021 10:50:46 GMT", - "tag": "@rnx-kit/metro-config_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "comment": "Enable stricter tsconfig options", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "1a3c54e876c6a7c25f423cebc4b2556b611c575a", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Fri, 19 Feb 2021 07:03:27 GMT", - "tag": "@rnx-kit/metro-config_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "comment": "Align on build tools", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "9afadb4f2c5e9b5476d5575295b6ea0b909db760", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Thu, 18 Feb 2021 09:33:32 GMT", - "tag": "@rnx-kit/metro-config_v1.0.2", - "version": "1.0.2", - "comments": { - "patch": [ - { - "comment": "Ignore hoisted react-native if a local copy exists", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "7cd8fc3229dd9cecf57ab5e4f5c2e8228ca2aa43", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Tue, 16 Feb 2021 09:27:59 GMT", - "tag": "@rnx-kit/metro-config_v1.0.1", - "version": "1.0.1", - "comments": { - "patch": [ - { - "comment": "Publish babel-plugin-import-path-remapper separately", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "93d5f4d1b75e87f1ffc6d18b6d99c817a060045d", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Tue, 09 Feb 2021 07:58:51 GMT", - "tag": "@rnx-kit/metro-config_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Bump metro to 0.59", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "acbfb8256ff0477c59cb8e5001d3cbd8b5cf1207", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Mon, 25 Jan 2021 07:42:30 GMT", - "tag": "@rnx-kit/metro-config_v1.0.0", - "version": "1.0.0", - "comments": { - "patch": [ - { - "comment": "Replace scope option for a test function", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "f8ddc803c99279399bb20cef9d536e408a455308", - "package": "@rnx-kit/metro-config" - } - ] - } - }, - { - "date": "Fri, 22 Jan 2021 11:53:09 GMT", - "tag": "@rnx-kit/metro-config_v0.0.1-dev", - "version": "0.0.1-dev", - "comments": { - "none": [ - { - "comment": "Added tests", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "1fb1dd3f9a5e46efed4f625d2f4f2af80746a086", - "package": "@rnx-kit/metro-config" - } - ] - } - } - ] -} diff --git a/packages/metro-plugin-cyclic-dependencies-detector/CHANGELOG.json b/packages/metro-plugin-cyclic-dependencies-detector/CHANGELOG.json deleted file mode 100644 index 8d24ef375..000000000 --- a/packages/metro-plugin-cyclic-dependencies-detector/CHANGELOG.json +++ /dev/null @@ -1,858 +0,0 @@ -{ - "name": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "entries": [ - { - "date": "Tue, 30 Nov 2021 17:24:14 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.21", - "version": "1.0.21", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "comment": "Bump @rnx-kit/console to v1.0.11", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "comment": "Bump @rnx-kit/tools-node to v1.2.6", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - } - ] - } - }, - { - "date": "Thu, 18 Nov 2021 20:51:05 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.20", - "version": "1.0.20", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ], - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "comment": "Bump @rnx-kit/console to v1.0.10", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "comment": "Bump @rnx-kit/tools-node to v1.2.5", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.19", - "version": "1.0.19", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.19", - "version": "1.0.19", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 16:33:53 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.19", - "version": "1.0.19", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "commit": "not available", - "comment": "Transition from using our private Metro @types packages to the officially published @types packages." - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 16:31:46 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.19", - "version": "1.0.19", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "commit": "9c3acf4028bb449e60340b1096993b3f3fe462d5", - "comment": "Transition from using our private Metro @types packages to the officially published @types packages." - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 19:24:49 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.19", - "version": "1.0.19", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "comment": "Bump @rnx-kit/console to v1.0.9", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "comment": "Bump @rnx-kit/tools-node to v1.2.4", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 07:33:42 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.18", - "version": "1.0.18", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "comment": "Bump @rnx-kit/console to v1.0.8", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "comment": "Bump @rnx-kit/tools-node to v1.2.3", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - } - ] - } - }, - { - "date": "Wed, 03 Nov 2021 18:15:39 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.17", - "version": "1.0.17", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "comment": "Bump @rnx-kit/console to v1.0.7", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "comment": "Bump @rnx-kit/tools-node to v1.2.2", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - } - ] - } - }, - { - "date": "Mon, 01 Nov 2021 13:46:12 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.16", - "version": "1.0.16", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb", - "comment": "Normalize main and types fields across all packages which use them." - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "comment": "Bump @rnx-kit/console to v1.0.6", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "comment": "Bump @rnx-kit/tools-node to v1.2.1", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - } - ] - } - }, - { - "date": "Sat, 30 Oct 2021 07:50:51 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.15", - "version": "1.0.15", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "comment": "Bump @rnx-kit/tools-node to v1.2.0", - "commit": "6133f8fe0298611e4c736e94b46f32752d139e76" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 12:14:31 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.14", - "version": "1.0.14", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "comment": "Bump @rnx-kit/console to v1.0.5", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "comment": "Bump @rnx-kit/tools-node to v1.1.6", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 10:31:10 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.13", - "version": "1.0.13", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "comment": "Bump @rnx-kit/console to v1.0.4", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "comment": "Bump @rnx-kit/tools-node to v1.1.5", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 08:51:30 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.12", - "version": "1.0.12", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "comment": "Bump @rnx-kit/console to v1.0.3", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "comment": "Bump @rnx-kit/tools-node to v1.1.4", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 16:06:09 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.11", - "version": "1.0.11", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "comment": "Upgrade Jest to v27", - "commit": "f7b4eeebbd2576f83048ce5d2a0c538574d76c99" - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 16:05:55 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.11", - "version": "1.0.11", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "comment": "Upgrade Jest to v27", - "commit": "4463a88285b37b622deb06717c92ff0f3c5451ad" - } - ] - } - }, - { - "date": "Wed, 08 Sep 2021 06:42:50 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.11", - "version": "1.0.11", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "comment": "Use repo Jest preset", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3", - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.11" - } - ] - } - }, - { - "date": "Fri, 03 Sep 2021 12:18:30 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.11", - "version": "1.0.11", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "commit": "ced0ef438232d91f7fa527f51e23e6da9e7dbf2c", - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.11" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 07:00:17 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.10", - "version": "1.0.10", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "commit": "0eecc568dd8ff556cd3964772c614cbbf7eefb98", - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.10" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 06:43:13 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.10", - "version": "1.0.10", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "commit": "25b936b3786f2a37dc6feacb4034e6afb56e343b", - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.10" - } - ] - } - }, - { - "date": "Fri, 27 Aug 2021 18:41:43 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.9", - "version": "1.0.9", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "commit": "dcb826baf0cc3705b460776bdb31e19930f4f2dc", - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.9" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 08:52:48 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.8", - "version": "1.0.8", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "commit": "0e657ab7ff261ebf6873ef7418cbb40d6418ca8e", - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.8" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 07:32:57 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.7", - "version": "1.0.7", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "commit": "b8093ce5af4bcdad1b2d91b45da54ee640fab8ae", - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.7" - } - ] - } - }, - { - "date": "Tue, 24 Aug 2021 08:09:36 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.6", - "version": "1.0.6", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "commit": "ccf242e997e1b399f3dc7253f36e5639a3e64036", - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.6" - } - ] - } - }, - { - "date": "Sat, 21 Aug 2021 08:22:48 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.6", - "version": "1.0.6", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "comment": "Integrate tools package and other common libraries throughout monorepo, removing custom code.", - "commit": "f65f706c734841c4339ca1f825b9c9505cea8941" - }, - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "commit": "f65f706c734841c4339ca1f825b9c9505cea8941", - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.6" - } - ] - } - }, - { - "date": "Wed, 04 Aug 2021 10:08:23 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.5", - "version": "1.0.5", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "commit": "1d13d5df2ec61bb3426521199cde4e588cb849b1", - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.5" - } - ] - } - }, - { - "date": "Thu, 29 Jul 2021 19:42:04 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.4", - "version": "1.0.4", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "comment": "Replace @rnx-kit/babel-preset-jest-typescript with @rnx-kit/jest-preset", - "commit": "bf6cf5092d383a447d0075fcf4f2584bbb347236" - } - ], - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector", - "commit": "bf6cf5092d383a447d0075fcf4f2584bbb347236", - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.4" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 09:53:10 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.3", - "version": "1.0.3", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.3", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "d5c36bb21e3482c24ff8b029cb60802d04e6bb64", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 07:51:46 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.3", - "version": "1.0.3", - "comments": { - "patch": [ - { - "comment": "Publish plugin options type", - "author": "afoxman@microsoft.com", - "commit": "021cfdb3fe726b76a377b2a6cccbe16a6999bf7a", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:45 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "eaedb2cae443a479e131cfd71fab5c1039daca9d", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:25 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "12196abcec79794493615829c3783d35f5bfc364", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:47 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "2dc9fe456410eed10abbfa464ae7aa7e5cef7aef", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:07 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "f3ff6e5f5c20cf9e8c81ca25a4fae3f483925c59", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:21:45 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "ea2c03568d7e64c763b9883072a7a75d5a445953", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector" - } - ] - } - }, - { - "date": "Thu, 08 Jul 2021 09:26:30 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.2", - "author": "afoxman@microsoft.com", - "commit": "dc1565a9c099dfb9fb336aec69ad41ecf05e0a8e", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector" - } - ] - } - }, - { - "date": "Tue, 29 Jun 2021 06:01:48 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.2", - "author": "afoxman@microsoft.com", - "commit": "0608b0120730c5cf0a78dd8bed80c18083851011", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector" - } - ] - } - }, - { - "date": "Mon, 28 Jun 2021 14:19:44 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4794d9d1b5f8b9d1174dc0799291ff2e0a19b792", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector" - } - ] - } - }, - { - "date": "Mon, 28 Jun 2021 08:19:07 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.2", - "author": "afoxman@microsoft.com", - "commit": "e683ddef5e260d395fe2a112437b36d1ec23002c", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector" - } - ] - } - }, - { - "date": "Mon, 28 Jun 2021 07:03:31 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.2", - "author": "afoxman@microsoft.com", - "commit": "5d37edc9853b67953271966724ae75cae4efd341", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector" - } - ] - } - }, - { - "date": "Thu, 24 Jun 2021 13:57:48 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4d6844b9cfbe71feb15435e13496527c67ab225c", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 17:54:11 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.2", - "version": "1.0.2", - "comments": { - "patch": [ - { - "comment": "Use common console logger", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "48a9a57e0163eb1edef65240d1f0eb95f78f0850", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 17:39:16 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "comment": "Bumped @types/node to 14.17.4", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "41bc87cda7c7c74084abf9f3f8039b0b670ab6ba", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 17:38:46 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "comment": "Bumped @types/node to 14.17.4", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c630c871d6747cb6631070f6f8ccba8d8933b353", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 09:28:25 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4701f7a40c050f8d376fbcfc84ce6e50f5fcf501", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector" - } - ] - } - }, - { - "date": "Thu, 17 Jun 2021 18:01:13 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "3bcc48b08a5ee4ad203fe9ab55b9a324c0a244d0", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector" - } - ] - } - }, - { - "date": "Tue, 15 Jun 2021 13:13:23 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "9ce445ef026a922d2cdbd95b857e3957ba48624d", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector" - } - ] - } - }, - { - "date": "Thu, 03 Jun 2021 10:15:50 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "comment": "Formatted all the things", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "693d313e7ab36dcc0f28ec81b889bbd4aa4a89fd", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector" - } - ] - } - }, - { - "date": "Thu, 06 May 2021 20:37:55 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "comment": "Split tsconfig options out into a shared file that can be included in all projects without specifying any source files.", - "author": "afoxman@microsoft.com", - "commit": "c34ccb3ca74893ea0741603b46aa96a238d59831", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector" - } - ] - } - }, - { - "date": "Wed, 05 May 2021 07:05:52 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "comment": "Use Babel preset for Jest + TypeScript", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c8ab12de29e878b96cb44fdff06aaf2e0ea868d7", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector" - } - ] - } - }, - { - "date": "Mon, 12 Apr 2021 18:24:47 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.1", - "version": "1.0.1", - "comments": { - "patch": [ - { - "comment": "Check for node_modules fails on Windows", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "a5dbb7309f19fafcbfa4c9be79a4e5defa50c6eb", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector" - } - ] - } - }, - { - "date": "Mon, 12 Apr 2021 17:12:34 GMT", - "tag": "@rnx-kit/metro-plugin-cyclic-dependencies-detector_v1.0.0", - "version": "1.0.0", - "comments": { - "minor": [ - { - "comment": "Cyclic dependencies detector for Metro", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "584d92e28c6d5d4d8efc96172374bbbc70c816bd", - "package": "@rnx-kit/metro-plugin-cyclic-dependencies-detector" - } - ] - } - } - ] -} diff --git a/packages/metro-plugin-duplicates-checker/CHANGELOG.json b/packages/metro-plugin-duplicates-checker/CHANGELOG.json deleted file mode 100644 index 27dc3d901..000000000 --- a/packages/metro-plugin-duplicates-checker/CHANGELOG.json +++ /dev/null @@ -1,858 +0,0 @@ -{ - "name": "@rnx-kit/metro-plugin-duplicates-checker", - "entries": [ - { - "date": "Tue, 30 Nov 2021 17:24:14 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.2.15", - "version": "1.2.15", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "comment": "Bump @rnx-kit/console to v1.0.11", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "comment": "Bump @rnx-kit/tools-node to v1.2.6", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - } - ] - } - }, - { - "date": "Thu, 18 Nov 2021 20:51:05 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.2.14", - "version": "1.2.14", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ], - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "comment": "Bump @rnx-kit/console to v1.0.10", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "comment": "Bump @rnx-kit/tools-node to v1.2.5", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.2.13", - "version": "1.2.13", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.2.13", - "version": "1.2.13", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 16:33:53 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.2.13", - "version": "1.2.13", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "commit": "not available", - "comment": "Transition from using our private Metro @types packages to the officially published @types packages." - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 16:31:46 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.2.13", - "version": "1.2.13", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "commit": "9c3acf4028bb449e60340b1096993b3f3fe462d5", - "comment": "Transition from using our private Metro @types packages to the officially published @types packages." - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 19:24:49 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.2.13", - "version": "1.2.13", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "comment": "Bump @rnx-kit/console to v1.0.9", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "comment": "Bump @rnx-kit/tools-node to v1.2.4", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 07:33:42 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.2.12", - "version": "1.2.12", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "comment": "Bump @rnx-kit/console to v1.0.8", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "comment": "Bump @rnx-kit/tools-node to v1.2.3", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - } - ] - } - }, - { - "date": "Wed, 03 Nov 2021 18:15:39 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.2.11", - "version": "1.2.11", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "comment": "Bump @rnx-kit/console to v1.0.7", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "comment": "Bump @rnx-kit/tools-node to v1.2.2", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - } - ] - } - }, - { - "date": "Mon, 01 Nov 2021 13:46:12 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.2.10", - "version": "1.2.10", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb", - "comment": "Normalize main and types fields across all packages which use them." - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "comment": "Bump @rnx-kit/console to v1.0.6", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "comment": "Bump @rnx-kit/tools-node to v1.2.1", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - } - ] - } - }, - { - "date": "Sat, 30 Oct 2021 07:50:51 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.2.9", - "version": "1.2.9", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "comment": "Bump @rnx-kit/tools-node to v1.2.0", - "commit": "6133f8fe0298611e4c736e94b46f32752d139e76" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 12:14:31 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.2.8", - "version": "1.2.8", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "comment": "Bump @rnx-kit/console to v1.0.5", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "comment": "Bump @rnx-kit/tools-node to v1.1.6", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 10:31:10 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.2.7", - "version": "1.2.7", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "comment": "Bump @rnx-kit/console to v1.0.4", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "comment": "Bump @rnx-kit/tools-node to v1.1.5", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 08:51:30 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.2.6", - "version": "1.2.6", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "comment": "Bump @rnx-kit/console to v1.0.3", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "comment": "Bump @rnx-kit/tools-node to v1.1.4", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 16:06:09 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.2.5", - "version": "1.2.5", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "comment": "Upgrade Jest to v27", - "commit": "f7b4eeebbd2576f83048ce5d2a0c538574d76c99" - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 16:05:55 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.2.5", - "version": "1.2.5", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "comment": "Upgrade Jest to v27", - "commit": "4463a88285b37b622deb06717c92ff0f3c5451ad" - } - ] - } - }, - { - "date": "Wed, 08 Sep 2021 06:42:50 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.2.5", - "version": "1.2.5", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "comment": "Use repo Jest preset", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3", - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.2.5" - } - ] - } - }, - { - "date": "Fri, 03 Sep 2021 12:18:30 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.2.5", - "version": "1.2.5", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "commit": "ced0ef438232d91f7fa527f51e23e6da9e7dbf2c", - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.2.5" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 07:00:17 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.2.4", - "version": "1.2.4", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "commit": "0eecc568dd8ff556cd3964772c614cbbf7eefb98", - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.2.4" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 06:43:13 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.2.4", - "version": "1.2.4", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "commit": "25b936b3786f2a37dc6feacb4034e6afb56e343b", - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.2.4" - } - ] - } - }, - { - "date": "Fri, 27 Aug 2021 18:41:43 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.2.3", - "version": "1.2.3", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "commit": "dcb826baf0cc3705b460776bdb31e19930f4f2dc", - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.2.3" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 08:52:48 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.2.2", - "version": "1.2.2", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "commit": "0e657ab7ff261ebf6873ef7418cbb40d6418ca8e", - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.2.2" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 07:32:57 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.2.1", - "version": "1.2.1", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "commit": "b8093ce5af4bcdad1b2d91b45da54ee640fab8ae", - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.2.1" - } - ] - } - }, - { - "date": "Tue, 24 Aug 2021 08:09:36 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.2.0", - "version": "1.2.0", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "commit": "ccf242e997e1b399f3dc7253f36e5639a3e64036", - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.2.0" - } - ] - } - }, - { - "date": "Sat, 21 Aug 2021 08:22:48 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.2.0", - "version": "1.2.0", - "comments": { - "minor": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "comment": "Integrate tools package and other common libraries throughout monorepo, removing custom code.", - "commit": "f65f706c734841c4339ca1f825b9c9505cea8941" - }, - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "commit": "f65f706c734841c4339ca1f825b9c9505cea8941", - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.2.0" - } - ] - } - }, - { - "date": "Wed, 04 Aug 2021 10:08:23 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.1.5", - "version": "1.1.5", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "commit": "1d13d5df2ec61bb3426521199cde4e588cb849b1", - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.1.5" - } - ] - } - }, - { - "date": "Thu, 29 Jul 2021 19:42:04 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.1.4", - "version": "1.1.4", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "comment": "Replace @rnx-kit/babel-preset-jest-typescript with @rnx-kit/jest-preset", - "commit": "bf6cf5092d383a447d0075fcf4f2584bbb347236" - } - ], - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-plugin-duplicates-checker", - "commit": "bf6cf5092d383a447d0075fcf4f2584bbb347236", - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.1.4" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 09:53:10 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.1.3", - "version": "1.1.3", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.1.3", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "d5c36bb21e3482c24ff8b029cb60802d04e6bb64", - "package": "@rnx-kit/metro-plugin-duplicates-checker" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 07:51:46 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.1.3", - "version": "1.1.3", - "comments": { - "patch": [ - { - "comment": "Publish plugin options type", - "author": "afoxman@microsoft.com", - "commit": "021cfdb3fe726b76a377b2a6cccbe16a6999bf7a", - "package": "@rnx-kit/metro-plugin-duplicates-checker" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:45 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.1.2", - "version": "1.1.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.1.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "eaedb2cae443a479e131cfd71fab5c1039daca9d", - "package": "@rnx-kit/metro-plugin-duplicates-checker" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:25 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.1.2", - "version": "1.1.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.1.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "12196abcec79794493615829c3783d35f5bfc364", - "package": "@rnx-kit/metro-plugin-duplicates-checker" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:47 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.1.2", - "version": "1.1.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.1.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "2dc9fe456410eed10abbfa464ae7aa7e5cef7aef", - "package": "@rnx-kit/metro-plugin-duplicates-checker" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:07 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.1.2", - "version": "1.1.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.1.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "f3ff6e5f5c20cf9e8c81ca25a4fae3f483925c59", - "package": "@rnx-kit/metro-plugin-duplicates-checker" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:21:45 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.1.2", - "version": "1.1.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.1.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "ea2c03568d7e64c763b9883072a7a75d5a445953", - "package": "@rnx-kit/metro-plugin-duplicates-checker" - } - ] - } - }, - { - "date": "Thu, 08 Jul 2021 09:26:30 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.1.2", - "version": "1.1.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.1.2", - "author": "afoxman@microsoft.com", - "commit": "dc1565a9c099dfb9fb336aec69ad41ecf05e0a8e", - "package": "@rnx-kit/metro-plugin-duplicates-checker" - } - ] - } - }, - { - "date": "Tue, 29 Jun 2021 06:01:48 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.1.2", - "version": "1.1.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.1.2", - "author": "afoxman@microsoft.com", - "commit": "0608b0120730c5cf0a78dd8bed80c18083851011", - "package": "@rnx-kit/metro-plugin-duplicates-checker" - } - ] - } - }, - { - "date": "Mon, 28 Jun 2021 14:19:44 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.1.2", - "version": "1.1.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.1.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4794d9d1b5f8b9d1174dc0799291ff2e0a19b792", - "package": "@rnx-kit/metro-plugin-duplicates-checker" - } - ] - } - }, - { - "date": "Mon, 28 Jun 2021 08:19:07 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.1.2", - "version": "1.1.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.1.2", - "author": "afoxman@microsoft.com", - "commit": "e683ddef5e260d395fe2a112437b36d1ec23002c", - "package": "@rnx-kit/metro-plugin-duplicates-checker" - } - ] - } - }, - { - "date": "Mon, 28 Jun 2021 07:03:31 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.1.2", - "version": "1.1.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.1.2", - "author": "afoxman@microsoft.com", - "commit": "5d37edc9853b67953271966724ae75cae4efd341", - "package": "@rnx-kit/metro-plugin-duplicates-checker" - } - ] - } - }, - { - "date": "Thu, 24 Jun 2021 13:57:48 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.1.2", - "version": "1.1.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.1.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4d6844b9cfbe71feb15435e13496527c67ab225c", - "package": "@rnx-kit/metro-plugin-duplicates-checker" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 17:54:11 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.1.2", - "version": "1.1.2", - "comments": { - "patch": [ - { - "comment": "Use common console logger", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "48a9a57e0163eb1edef65240d1f0eb95f78f0850", - "package": "@rnx-kit/metro-plugin-duplicates-checker" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 17:39:16 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.1.1", - "version": "1.1.1", - "comments": { - "none": [ - { - "comment": "Bumped @types/node to 14.17.4", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "41bc87cda7c7c74084abf9f3f8039b0b670ab6ba", - "package": "@rnx-kit/metro-plugin-duplicates-checker" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 17:38:46 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.1.1", - "version": "1.1.1", - "comments": { - "none": [ - { - "comment": "Bumped @types/node to 14.17.4", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c630c871d6747cb6631070f6f8ccba8d8933b353", - "package": "@rnx-kit/metro-plugin-duplicates-checker" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 09:28:25 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.1.1", - "version": "1.1.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.1.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4701f7a40c050f8d376fbcfc84ce6e50f5fcf501", - "package": "@rnx-kit/metro-plugin-duplicates-checker" - } - ] - } - }, - { - "date": "Thu, 17 Jun 2021 18:01:13 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.1.1", - "version": "1.1.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.1.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "3bcc48b08a5ee4ad203fe9ab55b9a324c0a244d0", - "package": "@rnx-kit/metro-plugin-duplicates-checker" - } - ] - } - }, - { - "date": "Tue, 15 Jun 2021 13:13:23 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.1.1", - "version": "1.1.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.1.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "9ce445ef026a922d2cdbd95b857e3957ba48624d", - "package": "@rnx-kit/metro-plugin-duplicates-checker" - } - ] - } - }, - { - "date": "Thu, 06 May 2021 20:37:55 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.1.1", - "version": "1.1.1", - "comments": { - "none": [ - { - "comment": "Split tsconfig options out into a shared file that can be included in all projects without specifying any source files.", - "author": "afoxman@microsoft.com", - "commit": "c34ccb3ca74893ea0741603b46aa96a238d59831", - "package": "@rnx-kit/metro-plugin-duplicates-checker" - } - ] - } - }, - { - "date": "Wed, 05 May 2021 07:05:52 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.1.1", - "version": "1.1.1", - "comments": { - "none": [ - { - "comment": "Use Babel preset for Jest + TypeScript", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c8ab12de29e878b96cb44fdff06aaf2e0ea868d7", - "package": "@rnx-kit/metro-plugin-duplicates-checker" - } - ] - } - }, - { - "date": "Tue, 13 Apr 2021 15:58:06 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.1.1", - "version": "1.1.1", - "comments": { - "patch": [ - { - "comment": "Support packages published with dual-publish", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "156e4465b424ce1512ac427ba716fbf063c43294", - "package": "@rnx-kit/metro-plugin-duplicates-checker" - } - ] - } - }, - { - "date": "Tue, 13 Apr 2021 08:39:11 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.1.0", - "version": "1.1.0", - "comments": { - "minor": [ - { - "comment": "Support `metro-serializer` plugin infrastructure", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "5e69d665fb19ef9e4d740724de5c6c848a6a080c", - "package": "@rnx-kit/metro-plugin-duplicates-checker" - } - ] - } - }, - { - "date": "Thu, 08 Apr 2021 17:28:37 GMT", - "tag": "@rnx-kit/metro-plugin-duplicates-checker_v1.0.0", - "version": "1.0.0", - "comments": { - "minor": [ - { - "comment": "Tool for detecting duplicate packages in JS bundles", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "fd4a29e7788677fd6f1870f5e65f5c29e630067a", - "package": "@rnx-kit/metro-plugin-duplicates-checker" - } - ] - } - } - ] -} diff --git a/packages/metro-resolver-symlinks/CHANGELOG.json b/packages/metro-resolver-symlinks/CHANGELOG.json deleted file mode 100644 index d0575d5e3..000000000 --- a/packages/metro-resolver-symlinks/CHANGELOG.json +++ /dev/null @@ -1,369 +0,0 @@ -{ - "name": "@rnx-kit/metro-resolver-symlinks", - "entries": [ - { - "date": "Tue, 30 Nov 2021 17:24:14 GMT", - "tag": "@rnx-kit/metro-resolver-symlinks_v0.1.14", - "version": "0.1.14", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-resolver-symlinks", - "comment": "Bump @rnx-kit/tools-node to v1.2.6", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - } - ] - } - }, - { - "date": "Thu, 18 Nov 2021 20:51:05 GMT", - "tag": "@rnx-kit/metro-resolver-symlinks_v0.1.13", - "version": "0.1.13", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-resolver-symlinks", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ], - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-resolver-symlinks", - "comment": "Bump @rnx-kit/tools-node to v1.2.5", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/metro-resolver-symlinks_v0.1.12", - "version": "0.1.12", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-resolver-symlinks", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/metro-resolver-symlinks_v0.1.12", - "version": "0.1.12", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-resolver-symlinks", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 16:33:53 GMT", - "tag": "@rnx-kit/metro-resolver-symlinks_v0.1.12", - "version": "0.1.12", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-resolver-symlinks", - "commit": "not available", - "comment": "Transition from using our private Metro @types packages to the officially published @types packages." - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 16:31:46 GMT", - "tag": "@rnx-kit/metro-resolver-symlinks_v0.1.12", - "version": "0.1.12", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-resolver-symlinks", - "commit": "9c3acf4028bb449e60340b1096993b3f3fe462d5", - "comment": "Transition from using our private Metro @types packages to the officially published @types packages." - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 19:24:49 GMT", - "tag": "@rnx-kit/metro-resolver-symlinks_v0.1.12", - "version": "0.1.12", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-resolver-symlinks", - "comment": "Bump @rnx-kit/tools-node to v1.2.4", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 07:33:42 GMT", - "tag": "@rnx-kit/metro-resolver-symlinks_v0.1.11", - "version": "0.1.11", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-resolver-symlinks", - "comment": "Bump @rnx-kit/tools-node to v1.2.3", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - } - ] - } - }, - { - "date": "Wed, 03 Nov 2021 18:15:39 GMT", - "tag": "@rnx-kit/metro-resolver-symlinks_v0.1.10", - "version": "0.1.10", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-resolver-symlinks", - "comment": "Bump @rnx-kit/tools-node to v1.2.2", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - } - ] - } - }, - { - "date": "Mon, 01 Nov 2021 13:46:13 GMT", - "tag": "@rnx-kit/metro-resolver-symlinks_v0.1.9", - "version": "0.1.9", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-resolver-symlinks", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb", - "comment": "Normalize main and types fields across all packages which use them." - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-resolver-symlinks", - "comment": "Bump @rnx-kit/tools-node to v1.2.1", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - } - ] - } - }, - { - "date": "Sat, 30 Oct 2021 07:50:51 GMT", - "tag": "@rnx-kit/metro-resolver-symlinks_v0.1.8", - "version": "0.1.8", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-resolver-symlinks", - "comment": "Bump @rnx-kit/tools-node to v1.2.0", - "commit": "6133f8fe0298611e4c736e94b46f32752d139e76" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 12:14:31 GMT", - "tag": "@rnx-kit/metro-resolver-symlinks_v0.1.7", - "version": "0.1.7", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-resolver-symlinks", - "comment": "Bump @rnx-kit/tools-node to v1.1.6", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 10:31:10 GMT", - "tag": "@rnx-kit/metro-resolver-symlinks_v0.1.6", - "version": "0.1.6", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-resolver-symlinks", - "comment": "Bump @rnx-kit/tools-node to v1.1.5", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 08:51:30 GMT", - "tag": "@rnx-kit/metro-resolver-symlinks_v0.1.5", - "version": "0.1.5", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-resolver-symlinks", - "comment": "Bump @rnx-kit/tools-node to v1.1.4", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 16:06:09 GMT", - "tag": "@rnx-kit/metro-resolver-symlinks_v0.1.4", - "version": "0.1.4", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-resolver-symlinks", - "comment": "Added lint script", - "commit": "f7b4eeebbd2576f83048ce5d2a0c538574d76c99" - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 16:05:55 GMT", - "tag": "@rnx-kit/metro-resolver-symlinks_v0.1.4", - "version": "0.1.4", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-resolver-symlinks", - "comment": "Added lint script", - "commit": "4463a88285b37b622deb06717c92ff0f3c5451ad" - } - ] - } - }, - { - "date": "Tue, 21 Sep 2021 16:12:12 GMT", - "tag": "@rnx-kit/metro-resolver-symlinks_v0.1.4", - "version": "0.1.4", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-resolver-symlinks", - "comment": "Fix type information not being generated correctly", - "commit": "f1531b0461c4a3c22673fca366b3c57f65bfed38" - } - ] - } - }, - { - "date": "Wed, 08 Sep 2021 06:42:50 GMT", - "tag": "@rnx-kit/metro-resolver-symlinks_v0.1.3", - "version": "0.1.3", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-resolver-symlinks", - "comment": "Fixed wrong resolved path when module is in a path within origin module path", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-resolver-symlinks", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3", - "comment": "Bump @rnx-kit/metro-resolver-symlinks to v0.1.3" - } - ], - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-resolver-symlinks", - "comment": "Use repo Jest preset", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3" - } - ] - } - }, - { - "date": "Fri, 03 Sep 2021 12:18:30 GMT", - "tag": "@rnx-kit/metro-resolver-symlinks_v0.1.2", - "version": "0.1.2", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-resolver-symlinks", - "commit": "ced0ef438232d91f7fa527f51e23e6da9e7dbf2c", - "comment": "Bump @rnx-kit/metro-resolver-symlinks to v0.1.2" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 07:00:17 GMT", - "tag": "@rnx-kit/metro-resolver-symlinks_v0.1.1", - "version": "0.1.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-resolver-symlinks", - "commit": "0eecc568dd8ff556cd3964772c614cbbf7eefb98", - "comment": "Bump @rnx-kit/metro-resolver-symlinks to v0.1.1" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 06:43:13 GMT", - "tag": "@rnx-kit/metro-resolver-symlinks_v0.1.1", - "version": "0.1.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-resolver-symlinks", - "commit": "25b936b3786f2a37dc6feacb4034e6afb56e343b", - "comment": "Bump @rnx-kit/metro-resolver-symlinks to v0.1.1" - } - ] - } - }, - { - "date": "Fri, 27 Aug 2021 18:41:43 GMT", - "tag": "@rnx-kit/metro-resolver-symlinks_v0.1.0", - "version": "0.1.0", - "comments": { - "minor": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-resolver-symlinks", - "comment": "@rnx-kit/metro-resolver-symlinks is a Metro resolver with support for symlinks", - "commit": "dcb826baf0cc3705b460776bdb31e19930f4f2dc" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-resolver-symlinks", - "commit": "dcb826baf0cc3705b460776bdb31e19930f4f2dc", - "comment": "Bump @rnx-kit/metro-resolver-symlinks to v0.1.0" - } - ] - } - } - ] -} diff --git a/packages/metro-serializer-esbuild/CHANGELOG.json b/packages/metro-serializer-esbuild/CHANGELOG.json deleted file mode 100644 index ad2f69421..000000000 --- a/packages/metro-serializer-esbuild/CHANGELOG.json +++ /dev/null @@ -1,798 +0,0 @@ -{ - "name": "@rnx-kit/metro-serializer-esbuild", - "entries": [ - { - "date": "Tue, 30 Nov 2021 17:24:14 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.23", - "version": "0.0.23", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-serializer-esbuild", - "comment": "Bump @rnx-kit/console to v1.0.11", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - } - ] - } - }, - { - "date": "Thu, 18 Nov 2021 20:51:05 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.22", - "version": "0.0.22", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-serializer-esbuild", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ], - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-serializer-esbuild", - "comment": "Bump @rnx-kit/console to v1.0.10", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.21", - "version": "0.0.21", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-serializer-esbuild", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.21", - "version": "0.0.21", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-serializer-esbuild", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 16:33:53 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.21", - "version": "0.0.21", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-serializer-esbuild", - "commit": "not available", - "comment": "Transition from using our private Metro @types packages to the officially published @types packages." - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 16:31:46 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.21", - "version": "0.0.21", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-serializer-esbuild", - "commit": "9c3acf4028bb449e60340b1096993b3f3fe462d5", - "comment": "Transition from using our private Metro @types packages to the officially published @types packages." - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 19:24:49 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.21", - "version": "0.0.21", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-serializer-esbuild", - "comment": "Bump @rnx-kit/console to v1.0.9", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 07:33:42 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.20", - "version": "0.0.20", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-serializer-esbuild", - "comment": "Bump @rnx-kit/console to v1.0.8", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - } - ] - } - }, - { - "date": "Wed, 03 Nov 2021 18:15:39 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.19", - "version": "0.0.19", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-serializer-esbuild", - "comment": "Bump @rnx-kit/console to v1.0.7", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - } - ] - } - }, - { - "date": "Mon, 01 Nov 2021 13:46:13 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.18", - "version": "0.0.18", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-serializer-esbuild", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb", - "comment": "Normalize main and types fields across all packages which use them." - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-serializer-esbuild", - "comment": "Bump @rnx-kit/console to v1.0.6", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 12:14:31 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.17", - "version": "0.0.17", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-serializer-esbuild", - "comment": "Bump @rnx-kit/console to v1.0.5", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 10:31:10 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.16", - "version": "0.0.16", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-serializer-esbuild", - "comment": "Bump @rnx-kit/console to v1.0.4", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 09:04:41 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.15", - "version": "0.0.15", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-serializer-esbuild", - "commit": "5361bf5151fb8f8ad2aaa35989a7c80be1c59aa3", - "comment": "Prefer named exports" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 08:51:30 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.15", - "version": "0.0.15", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-serializer-esbuild", - "comment": "Bump @rnx-kit/console to v1.0.3", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - } - ] - } - }, - { - "date": "Tue, 12 Oct 2021 08:11:07 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.14", - "version": "0.0.14", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-serializer-esbuild", - "comment": "Bump react-native to 0.66", - "commit": "21aa5e4a868e067872c80d313a997ddae2c307e0" - } - ] - } - }, - { - "date": "Mon, 11 Oct 2021 18:12:04 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.14", - "version": "0.0.14", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-serializer-esbuild", - "comment": "Bump esbuild to 0.13.4", - "commit": "3c831c64828f1df9cadee777cf3e454e1677ecaa" - } - ] - } - }, - { - "date": "Tue, 21 Sep 2021 13:01:58 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.14", - "version": "0.0.14", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-serializer-esbuild", - "comment": "Updated docs for users of `@rnx-kit/babel-preset-metro-react-native`", - "commit": "862d756cce07a4403fcba65d8b0e1979c384fd01" - } - ] - } - }, - { - "date": "Wed, 08 Sep 2021 06:42:50 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.14", - "version": "0.0.14", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-serializer-esbuild", - "comment": "Use repo Jest preset", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-serializer-esbuild", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3", - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.14" - } - ] - } - }, - { - "date": "Tue, 24 Aug 2021 08:09:36 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.14", - "version": "0.0.14", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-serializer-esbuild", - "commit": "ccf242e997e1b399f3dc7253f36e5639a3e64036", - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.14" - } - ] - } - }, - { - "date": "Mon, 23 Aug 2021 17:18:07 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.14", - "version": "0.0.14", - "comments": { - "patch": [ - { - "author": "sverre.johansen@gmail.com", - "package": "@rnx-kit/metro-serializer-esbuild", - "comment": "Upgrade esbuild version", - "commit": "7200426250deb288fb38a3d8da91bb74a0e71437" - } - ] - } - }, - { - "date": "Fri, 20 Aug 2021 09:36:58 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.13", - "version": "0.0.13", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-serializer-esbuild", - "comment": "Fix compatibility issues with Hermes", - "commit": "2deee7a9285f3899e99aca2135ecd123fc777de2" - } - ] - } - }, - { - "date": "Wed, 04 Aug 2021 10:08:23 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.12", - "version": "0.0.12", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-serializer-esbuild", - "commit": "1d13d5df2ec61bb3426521199cde4e588cb849b1", - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.12" - } - ] - } - }, - { - "date": "Thu, 29 Jul 2021 19:42:04 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.11", - "version": "0.0.11", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-serializer-esbuild", - "comment": "Replace @rnx-kit/babel-preset-jest-typescript with @rnx-kit/jest-preset", - "commit": "bf6cf5092d383a447d0075fcf4f2584bbb347236" - } - ], - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-serializer-esbuild", - "commit": "bf6cf5092d383a447d0075fcf4f2584bbb347236", - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.11" - } - ] - } - }, - { - "date": "Tue, 20 Jul 2021 09:45:40 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.10", - "version": "0.0.10", - "comments": { - "none": [ - { - "comment": "Add known limitations", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c5a30021862aad0f991cb985496bcc1a07120d11", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 21:55:53 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.10", - "version": "0.0.10", - "comments": { - "patch": [ - { - "comment": "Conditionally add lodash transformer", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "0de555701c26b643e8c80457f105933e405b7e34", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 17:30:15 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.9", - "version": "0.0.9", - "comments": { - "patch": [ - { - "comment": "Correct metro version in peer dependencies", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "b7e5477028dc4e33cc78dbe23b5a8c3279105e80", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 09:53:10 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.8", - "version": "0.0.8", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.8", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "d5c36bb21e3482c24ff8b029cb60802d04e6bb64", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:45 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.8", - "version": "0.0.8", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.8", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "eaedb2cae443a479e131cfd71fab5c1039daca9d", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:25 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.8", - "version": "0.0.8", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.8", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "12196abcec79794493615829c3783d35f5bfc364", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 14:18:15 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.8", - "version": "0.0.8", - "comments": { - "none": [ - { - "comment": "Updated READMEs to mention that metro-serializer-esbuild requires Metro 0.66.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "a650a6ce4992a6245eb26bfec1f7cef7dcfcba4a", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:47 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.8", - "version": "0.0.8", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.8", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "2dc9fe456410eed10abbfa464ae7aa7e5cef7aef", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:07 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.8", - "version": "0.0.8", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.8", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "f3ff6e5f5c20cf9e8c81ca25a4fae3f483925c59", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:21:45 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.8", - "version": "0.0.8", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.8", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "ea2c03568d7e64c763b9883072a7a75d5a445953", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Thu, 08 Jul 2021 11:40:27 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.8", - "version": "0.0.8", - "comments": { - "patch": [ - { - "comment": "Assert that Metro version is at least 0.66.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "761a1994bbe5f39962ec28821c3411521fbf7190", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Thu, 08 Jul 2021 09:26:30 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.7", - "version": "0.0.7", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.7", - "author": "afoxman@microsoft.com", - "commit": "dc1565a9c099dfb9fb336aec69ad41ecf05e0a8e", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Thu, 01 Jul 2021 13:59:39 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.7", - "version": "0.0.7", - "comments": { - "patch": [ - { - "comment": "Fixed Windows paths not being escaped properly", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "e06636db33664f9d57d598b445c4e6b437ee86ee", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Tue, 29 Jun 2021 06:01:48 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.6", - "version": "0.0.6", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.6", - "author": "afoxman@microsoft.com", - "commit": "0608b0120730c5cf0a78dd8bed80c18083851011", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Mon, 28 Jun 2021 14:19:44 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.6", - "version": "0.0.6", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.6", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4794d9d1b5f8b9d1174dc0799291ff2e0a19b792", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Mon, 28 Jun 2021 08:19:07 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.6", - "version": "0.0.6", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.6", - "author": "afoxman@microsoft.com", - "commit": "e683ddef5e260d395fe2a112437b36d1ec23002c", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Mon, 28 Jun 2021 07:03:31 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.6", - "version": "0.0.6", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.6", - "author": "afoxman@microsoft.com", - "commit": "5d37edc9853b67953271966724ae75cae4efd341", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Fri, 25 Jun 2021 14:10:29 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.6", - "version": "0.0.6", - "comments": { - "patch": [ - { - "comment": "Use the new unstable_disableModuleWrapping flag", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "1af7bdb7844c7284505411938f09765415c4e896", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Thu, 24 Jun 2021 13:57:48 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.5", - "version": "0.0.5", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.5", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4d6844b9cfbe71feb15435e13496527c67ab225c", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 17:54:11 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.5", - "version": "0.0.5", - "comments": { - "patch": [ - { - "comment": "Use common console logger", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "48a9a57e0163eb1edef65240d1f0eb95f78f0850", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 17:39:16 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.4", - "version": "0.0.4", - "comments": { - "none": [ - { - "comment": "Bumped @types/node to 14.17.4", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "41bc87cda7c7c74084abf9f3f8039b0b670ab6ba", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 17:38:46 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.4", - "version": "0.0.4", - "comments": { - "none": [ - { - "comment": "Bumped @types/node to 14.17.4", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c630c871d6747cb6631070f6f8ccba8d8933b353", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 09:28:25 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.4", - "version": "0.0.4", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.4", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4701f7a40c050f8d376fbcfc84ce6e50f5fcf501", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Tue, 22 Jun 2021 15:04:23 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.4", - "version": "0.0.4", - "comments": { - "patch": [ - { - "comment": "Bumped chalk to 4.1.0", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "fe36a9a52319cfac244fbbeb8c47a210af067366", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Tue, 22 Jun 2021 14:59:18 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.3", - "version": "0.0.3", - "comments": { - "patch": [ - { - "comment": "Filter out modules from other platforms", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "1e8b8f1c05556b77cdf6b21d84cc52e1a225b18e", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Thu, 17 Jun 2021 18:01:13 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.2", - "version": "0.0.2", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "3bcc48b08a5ee4ad203fe9ab55b9a324c0a244d0", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Thu, 17 Jun 2021 09:08:01 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.2", - "version": "0.0.2", - "comments": { - "patch": [ - { - "comment": "Help esbuild reduce the bundle size further", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "3c875dbd3025847a2d88dcd7370e3fd02d4a9e91", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - }, - { - "date": "Tue, 15 Jun 2021 13:13:23 GMT", - "tag": "@rnx-kit/metro-serializer-esbuild_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "9ce445ef026a922d2cdbd95b857e3957ba48624d", - "package": "@rnx-kit/metro-serializer-esbuild" - } - ] - } - } - ] -} diff --git a/packages/metro-serializer/CHANGELOG.json b/packages/metro-serializer/CHANGELOG.json deleted file mode 100644 index c2a999c6a..000000000 --- a/packages/metro-serializer/CHANGELOG.json +++ /dev/null @@ -1,433 +0,0 @@ -{ - "name": "@rnx-kit/metro-serializer", - "entries": [ - { - "date": "Thu, 18 Nov 2021 20:51:05 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.10", - "version": "1.0.10", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-serializer", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.9", - "version": "1.0.9", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-serializer", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.9", - "version": "1.0.9", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-serializer", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 16:33:53 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.9", - "version": "1.0.9", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-serializer", - "commit": "not available", - "comment": "Transition from using our private Metro @types packages to the officially published @types packages." - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 16:31:46 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.9", - "version": "1.0.9", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-serializer", - "commit": "9c3acf4028bb449e60340b1096993b3f3fe462d5", - "comment": "Transition from using our private Metro @types packages to the officially published @types packages." - } - ] - } - }, - { - "date": "Mon, 01 Nov 2021 13:46:13 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.6", - "version": "1.0.6", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-serializer", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb", - "comment": "Normalize main and types fields across all packages which use them." - } - ] - } - }, - { - "date": "Tue, 12 Oct 2021 08:11:07 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-serializer", - "comment": "Bump react-native to 0.66", - "commit": "21aa5e4a868e067872c80d313a997ddae2c307e0" - } - ] - } - }, - { - "date": "Wed, 08 Sep 2021 06:42:50 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-serializer", - "comment": "Use repo Jest preset", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3" - } - ] - } - }, - { - "date": "Tue, 24 Aug 2021 08:09:36 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-serializer", - "commit": "ccf242e997e1b399f3dc7253f36e5639a3e64036", - "comment": "Bump @rnx-kit/metro-serializer to v1.0.2" - } - ] - } - }, - { - "date": "Wed, 04 Aug 2021 10:08:23 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.2", - "version": "1.0.2", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-serializer", - "commit": "1d13d5df2ec61bb3426521199cde4e588cb849b1", - "comment": "Bump @rnx-kit/metro-serializer to v1.0.2" - } - ] - } - }, - { - "date": "Thu, 29 Jul 2021 19:42:04 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-serializer", - "comment": "Replace @rnx-kit/babel-preset-jest-typescript with @rnx-kit/jest-preset", - "commit": "bf6cf5092d383a447d0075fcf4f2584bbb347236" - } - ], - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-serializer", - "commit": "bf6cf5092d383a447d0075fcf4f2584bbb347236", - "comment": "Bump @rnx-kit/metro-serializer to v1.0.1" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 09:53:10 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Added `lint` script", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "d5c36bb21e3482c24ff8b029cb60802d04e6bb64", - "package": "@rnx-kit/metro-serializer" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:45 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Added `format` script", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "eaedb2cae443a479e131cfd71fab5c1039daca9d", - "package": "@rnx-kit/metro-serializer" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:25 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Added `format` script", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "12196abcec79794493615829c3783d35f5bfc364", - "package": "@rnx-kit/metro-serializer" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:47 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Add badges for build status and version", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "2dc9fe456410eed10abbfa464ae7aa7e5cef7aef", - "package": "@rnx-kit/metro-serializer" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:07 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Add badges for build status and version", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "f3ff6e5f5c20cf9e8c81ca25a4fae3f483925c59", - "package": "@rnx-kit/metro-serializer" - } - ] - } - }, - { - "date": "Thu, 08 Jul 2021 09:26:30 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Update Metro. Fix dependencies.", - "author": "afoxman@microsoft.com", - "commit": "dc1565a9c099dfb9fb336aec69ad41ecf05e0a8e", - "package": "@rnx-kit/metro-serializer" - } - ] - } - }, - { - "date": "Tue, 29 Jun 2021 06:01:48 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Adjust type definitions after updating in-repo @types for Metro. No change to the API, just type shuffling.", - "author": "afoxman@microsoft.com", - "commit": "0608b0120730c5cf0a78dd8bed80c18083851011", - "package": "@rnx-kit/metro-serializer" - } - ] - } - }, - { - "date": "Mon, 28 Jun 2021 14:19:44 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Ran depcheck and cleaned up dependencies", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4794d9d1b5f8b9d1174dc0799291ff2e0a19b792", - "package": "@rnx-kit/metro-serializer" - } - ] - } - }, - { - "date": "Mon, 28 Jun 2021 08:19:07 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Adjust type definitions after updating in-repo @types for Metro. No change to the API, just type shuffling.", - "author": "afoxman@microsoft.com", - "commit": "e683ddef5e260d395fe2a112437b36d1ec23002c", - "package": "@rnx-kit/metro-serializer" - } - ] - } - }, - { - "date": "Mon, 28 Jun 2021 07:03:31 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Adjust type definitions after updating in-repo @types for Metro. No change to the API, just type shuffling.", - "author": "afoxman@microsoft.com", - "commit": "5d37edc9853b67953271966724ae75cae4efd341", - "package": "@rnx-kit/metro-serializer" - } - ] - } - }, - { - "date": "Thu, 24 Jun 2021 13:57:48 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Use local type definitions for Metro", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4d6844b9cfbe71feb15435e13496527c67ab225c", - "package": "@rnx-kit/metro-serializer" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 09:28:25 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Added ESLint config", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4701f7a40c050f8d376fbcfc84ce6e50f5fcf501", - "package": "@rnx-kit/metro-serializer" - } - ] - } - }, - { - "date": "Thu, 17 Jun 2021 18:01:13 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Fix test not detecting Promises correctly", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "3bcc48b08a5ee4ad203fe9ab55b9a324c0a244d0", - "package": "@rnx-kit/metro-serializer" - } - ] - } - }, - { - "date": "Tue, 15 Jun 2021 13:13:23 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Fixed homepage URL", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "9ce445ef026a922d2cdbd95b857e3957ba48624d", - "package": "@rnx-kit/metro-serializer" - } - ] - } - }, - { - "date": "Thu, 06 May 2021 20:37:55 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Split tsconfig options out into a shared file that can be included in all projects without specifying any source files.", - "author": "afoxman@microsoft.com", - "commit": "c34ccb3ca74893ea0741603b46aa96a238d59831", - "package": "@rnx-kit/metro-serializer" - } - ] - } - }, - { - "date": "Wed, 05 May 2021 07:05:52 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Use Babel preset for Jest + TypeScript", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c8ab12de29e878b96cb44fdff06aaf2e0ea868d7", - "package": "@rnx-kit/metro-serializer" - } - ] - } - }, - { - "date": "Mon, 12 Apr 2021 12:44:24 GMT", - "tag": "@rnx-kit/metro-serializer_v1.0.0", - "version": "1.0.0", - "comments": { - "minor": [ - { - "comment": "MetroSerializer is Metro's default JavaScript bundle serializer but with plugin support", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "dfb56e105d32f597b82468e41c795246251e568d", - "package": "@rnx-kit/metro-serializer" - } - ] - } - } - ] -} diff --git a/packages/metro-service/CHANGELOG.json b/packages/metro-service/CHANGELOG.json deleted file mode 100644 index 7e4a363ed..000000000 --- a/packages/metro-service/CHANGELOG.json +++ /dev/null @@ -1,570 +0,0 @@ -{ - "name": "@rnx-kit/metro-service", - "entries": [ - { - "date": "Tue, 30 Nov 2021 17:24:14 GMT", - "tag": "@rnx-kit/metro-service_v1.1.13", - "version": "1.1.13", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-service", - "comment": "Bump @rnx-kit/tools-language to v1.2.6", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - } - ] - } - }, - { - "date": "Thu, 18 Nov 2021 20:51:05 GMT", - "tag": "@rnx-kit/metro-service_v1.1.12", - "version": "1.1.12", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-service", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ], - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-service", - "comment": "Bump @rnx-kit/tools-language to v1.2.5", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/metro-service_v1.1.11", - "version": "1.1.11", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-service", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/metro-service_v1.1.11", - "version": "1.1.11", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-service", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 16:33:53 GMT", - "tag": "@rnx-kit/metro-service_v1.1.11", - "version": "1.1.11", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-service", - "commit": "not available", - "comment": "Transition from using our private Metro @types packages to the officially published @types packages." - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 16:31:46 GMT", - "tag": "@rnx-kit/metro-service_v1.1.11", - "version": "1.1.11", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-service", - "commit": "9c3acf4028bb449e60340b1096993b3f3fe462d5", - "comment": "Transition from using our private Metro @types packages to the officially published @types packages." - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 19:24:49 GMT", - "tag": "@rnx-kit/metro-service_v1.1.11", - "version": "1.1.11", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-service", - "comment": "Bump @rnx-kit/tools-language to v1.2.4", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 07:33:42 GMT", - "tag": "@rnx-kit/metro-service_v1.1.10", - "version": "1.1.10", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-service", - "comment": "Bump @rnx-kit/tools-language to v1.2.3", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - } - ] - } - }, - { - "date": "Wed, 03 Nov 2021 18:15:39 GMT", - "tag": "@rnx-kit/metro-service_v1.1.9", - "version": "1.1.9", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-service", - "comment": "Bump @rnx-kit/tools-language to v1.2.2", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - } - ] - } - }, - { - "date": "Mon, 01 Nov 2021 13:46:13 GMT", - "tag": "@rnx-kit/metro-service_v1.1.8", - "version": "1.1.8", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-service", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb", - "comment": "Normalize main and types fields across all packages which use them." - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-service", - "comment": "Bump @rnx-kit/tools-language to v1.2.1", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - } - ] - } - }, - { - "date": "Sat, 30 Oct 2021 07:50:51 GMT", - "tag": "@rnx-kit/metro-service_v1.1.7", - "version": "1.1.7", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-service", - "comment": "Bump @rnx-kit/tools-language to v1.2.0", - "commit": "6133f8fe0298611e4c736e94b46f32752d139e76" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 12:14:31 GMT", - "tag": "@rnx-kit/metro-service_v1.1.6", - "version": "1.1.6", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-service", - "comment": "Bump @rnx-kit/tools-language to v1.1.4", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 10:31:10 GMT", - "tag": "@rnx-kit/metro-service_v1.1.5", - "version": "1.1.5", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-service", - "comment": "Bump @rnx-kit/tools-language to v1.1.3", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 09:04:42 GMT", - "tag": "@rnx-kit/metro-service_v1.1.4", - "version": "1.1.4", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-service", - "commit": "5361bf5151fb8f8ad2aaa35989a7c80be1c59aa3", - "comment": "Prefer named exports" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 08:51:30 GMT", - "tag": "@rnx-kit/metro-service_v1.1.4", - "version": "1.1.4", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-service", - "comment": "Bump @rnx-kit/tools-language to v1.1.2", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - } - ] - } - }, - { - "date": "Tue, 12 Oct 2021 08:11:07 GMT", - "tag": "@rnx-kit/metro-service_v1.1.3", - "version": "1.1.3", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-service", - "comment": "Bump react-native to 0.66", - "commit": "21aa5e4a868e067872c80d313a997ddae2c307e0" - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 16:06:09 GMT", - "tag": "@rnx-kit/metro-service_v1.1.3", - "version": "1.1.3", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-service", - "comment": "Added lint script", - "commit": "f7b4eeebbd2576f83048ce5d2a0c538574d76c99" - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 16:05:55 GMT", - "tag": "@rnx-kit/metro-service_v1.1.3", - "version": "1.1.3", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-service", - "comment": "Added lint script", - "commit": "4463a88285b37b622deb06717c92ff0f3c5451ad" - } - ] - } - }, - { - "date": "Wed, 08 Sep 2021 06:42:50 GMT", - "tag": "@rnx-kit/metro-service_v1.1.3", - "version": "1.1.3", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-service", - "comment": "Use repo Jest preset", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-service", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3", - "comment": "Bump @rnx-kit/metro-service to v1.1.3" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 07:00:17 GMT", - "tag": "@rnx-kit/metro-service_v1.1.3", - "version": "1.1.3", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-service", - "commit": "0eecc568dd8ff556cd3964772c614cbbf7eefb98", - "comment": "Bump @rnx-kit/metro-service to v1.1.3" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 06:43:13 GMT", - "tag": "@rnx-kit/metro-service_v1.1.3", - "version": "1.1.3", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-service", - "comment": "Stricter handling of errors", - "commit": "25b936b3786f2a37dc6feacb4034e6afb56e343b" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-service", - "commit": "25b936b3786f2a37dc6feacb4034e6afb56e343b", - "comment": "Bump @rnx-kit/metro-service to v1.1.3" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 07:32:57 GMT", - "tag": "@rnx-kit/metro-service_v1.1.2", - "version": "1.1.2", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-service", - "commit": "b8093ce5af4bcdad1b2d91b45da54ee640fab8ae", - "comment": "Bump @rnx-kit/metro-service to v1.1.2" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 06:13:43 GMT", - "tag": "@rnx-kit/metro-service_v1.1.1", - "version": "1.1.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-service", - "comment": "Bump @react-native-community/cli to 6.0", - "commit": "0ef422105802569f5ce0688aea238926c9570fe9" - } - ] - } - }, - { - "date": "Tue, 24 Aug 2021 08:09:36 GMT", - "tag": "@rnx-kit/metro-service_v1.1.1", - "version": "1.1.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-service", - "commit": "ccf242e997e1b399f3dc7253f36e5639a3e64036", - "comment": "Bump @rnx-kit/metro-service to v1.1.1" - } - ] - } - }, - { - "date": "Sat, 21 Aug 2021 08:22:48 GMT", - "tag": "@rnx-kit/metro-service_v1.1.1", - "version": "1.1.1", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-service", - "comment": "Integrate tools package and other common libraries throughout monorepo, removing custom code.", - "commit": "f65f706c734841c4339ca1f825b9c9505cea8941" - }, - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-service", - "commit": "f65f706c734841c4339ca1f825b9c9505cea8941", - "comment": "Bump @rnx-kit/metro-service to v1.1.1" - } - ] - } - }, - { - "date": "Fri, 06 Aug 2021 17:50:49 GMT", - "tag": "@rnx-kit/metro-service_v1.1.0", - "version": "1.1.0", - "comments": { - "minor": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-service", - "comment": "Remove props that have no effect from bundle API. Update loadMetroConfig to support more overrides. Export Metro's runServer API as startServer. Export createTerminal API which instantiates a new Metro terminal and terminal reporter.", - "commit": "97ec3dcb6845ec8b7e766d1916ed61728b80ef86" - } - ] - } - }, - { - "date": "Wed, 04 Aug 2021 10:08:23 GMT", - "tag": "@rnx-kit/metro-service_v1.0.6", - "version": "1.0.6", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-service", - "commit": "1d13d5df2ec61bb3426521199cde4e588cb849b1", - "comment": "Bump @rnx-kit/metro-service to v1.0.6" - } - ] - } - }, - { - "date": "Thu, 29 Jul 2021 19:42:04 GMT", - "tag": "@rnx-kit/metro-service_v1.0.5", - "version": "1.0.5", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-service", - "comment": "Replace @rnx-kit/babel-preset-jest-typescript with @rnx-kit/jest-preset", - "commit": "bf6cf5092d383a447d0075fcf4f2584bbb347236" - } - ], - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-service", - "commit": "bf6cf5092d383a447d0075fcf4f2584bbb347236", - "comment": "Bump @rnx-kit/metro-service to v1.0.5" - } - ] - } - }, - { - "date": "Thu, 22 Jul 2021 16:59:25 GMT", - "tag": "@rnx-kit/metro-service_v1.0.4", - "version": "1.0.4", - "comments": { - "patch": [ - { - "comment": "Support Metro <0.63", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "722506bfdb7966d022c7804574812aa8543fc2de", - "package": "@rnx-kit/metro-service" - } - ] - } - }, - { - "date": "Tue, 13 Jul 2021 17:31:45 GMT", - "tag": "@rnx-kit/metro-service_v1.0.3", - "version": "1.0.3", - "comments": { - "patch": [ - { - "comment": "Remove dependency on mkdirp, and use nodejs \"fs\" instead. Add a tolerance when finding a matching scale factor for android. Move \"throw\" statement into scale search routine, so that it always returns a real value (or throws). Add tests.", - "author": "afoxman@microsoft.com", - "commit": "0f0c380b62f4ee8d40070048be13e99f707296d2", - "package": "@rnx-kit/metro-service" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:45 GMT", - "tag": "@rnx-kit/metro-service_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "comment": "Added `format` script", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "eaedb2cae443a479e131cfd71fab5c1039daca9d", - "package": "@rnx-kit/metro-service" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:25 GMT", - "tag": "@rnx-kit/metro-service_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "comment": "Added `format` script", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "12196abcec79794493615829c3783d35f5bfc364", - "package": "@rnx-kit/metro-service" - } - ] - } - }, - { - "date": "Thu, 08 Jul 2021 09:26:30 GMT", - "tag": "@rnx-kit/metro-service_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "comment": "Update Metro. Fix dependencies.", - "author": "afoxman@microsoft.com", - "commit": "dc1565a9c099dfb9fb336aec69ad41ecf05e0a8e", - "package": "@rnx-kit/metro-service" - } - ] - } - }, - { - "date": "Tue, 29 Jun 2021 06:01:48 GMT", - "tag": "@rnx-kit/metro-service_v1.0.2", - "version": "1.0.2", - "comments": { - "patch": [ - { - "comment": "Add a metro-service package for interacting with metro at an API level, rather than through its command-line interface.", - "author": "afoxman@microsoft.com", - "commit": "0608b0120730c5cf0a78dd8bed80c18083851011", - "package": "@rnx-kit/metro-service" - } - ] - } - }, - { - "date": "Mon, 28 Jun 2021 08:19:07 GMT", - "tag": "@rnx-kit/metro-service_v1.0.1", - "version": "1.0.1", - "comments": { - "patch": [ - { - "comment": "Add a metro-service package for interacting with metro at an API level, rather than through its command-line interface.", - "author": "afoxman@microsoft.com", - "commit": "e683ddef5e260d395fe2a112437b36d1ec23002c", - "package": "@rnx-kit/metro-service" - } - ] - } - } - ] -} diff --git a/packages/metro-swc-worker/CHANGELOG.json b/packages/metro-swc-worker/CHANGELOG.json deleted file mode 100644 index 39a2326fc..000000000 --- a/packages/metro-swc-worker/CHANGELOG.json +++ /dev/null @@ -1,199 +0,0 @@ -{ - "name": "@rnx-kit/metro-swc-worker", - "entries": [ - { - "date": "Tue, 30 Nov 2021 17:24:14 GMT", - "tag": "@rnx-kit/metro-swc-worker_v0.1.6", - "version": "0.1.6", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-swc-worker", - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.23", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - } - ] - } - }, - { - "date": "Thu, 18 Nov 2021 20:51:05 GMT", - "tag": "@rnx-kit/metro-swc-worker_v0.1.5", - "version": "0.1.5", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-swc-worker", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ], - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-swc-worker", - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.22", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/metro-swc-worker_v0.1.4", - "version": "0.1.4", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-swc-worker", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/metro-swc-worker_v0.1.4", - "version": "0.1.4", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-swc-worker", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 16:33:53 GMT", - "tag": "@rnx-kit/metro-swc-worker_v0.1.4", - "version": "0.1.4", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-swc-worker", - "commit": "not available", - "comment": "Transition from using our private Metro @types packages to the officially published @types packages." - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 16:31:46 GMT", - "tag": "@rnx-kit/metro-swc-worker_v0.1.4", - "version": "0.1.4", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/metro-swc-worker", - "commit": "9c3acf4028bb449e60340b1096993b3f3fe462d5", - "comment": "Transition from using our private Metro @types packages to the officially published @types packages." - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 19:24:49 GMT", - "tag": "@rnx-kit/metro-swc-worker_v0.1.4", - "version": "0.1.4", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-swc-worker", - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.21", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 07:33:42 GMT", - "tag": "@rnx-kit/metro-swc-worker_v0.1.3", - "version": "0.1.3", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-swc-worker", - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.20", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - } - ] - } - }, - { - "date": "Wed, 03 Nov 2021 18:15:39 GMT", - "tag": "@rnx-kit/metro-swc-worker_v0.1.2", - "version": "0.1.2", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-swc-worker", - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.19", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - } - ] - } - }, - { - "date": "Mon, 01 Nov 2021 13:46:13 GMT", - "tag": "@rnx-kit/metro-swc-worker_v0.1.1", - "version": "0.1.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/metro-swc-worker", - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.18", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - } - ] - } - }, - { - "date": "Mon, 01 Nov 2021 12:39:24 GMT", - "tag": "@rnx-kit/metro-swc-worker_v0.1.0", - "version": "0.1.0", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-swc-worker", - "commit": "4636318255fea865d5824cb1402def6068551642", - "comment": "Bump @rnx-kit/metro-serializer-esbuild to avoid dupes in the repo" - } - ] - } - }, - { - "date": "Sun, 31 Oct 2021 08:16:31 GMT", - "tag": "@rnx-kit/metro-swc-worker_v0.1.0", - "version": "0.1.0", - "comments": { - "minor": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/metro-swc-worker", - "commit": "d97e2b9d3ab7313aaa3671df1aa6a101edbac9ed", - "comment": "Metro transform worker that uses swc under the hood" - }, - { - "author": "beachball", - "package": "@rnx-kit/metro-swc-worker", - "comment": "Bump @rnx-kit/metro-serializer-esbuild to v0.0.17", - "commit": "d97e2b9d3ab7313aaa3671df1aa6a101edbac9ed" - } - ] - } - } - ] -} diff --git a/packages/react-native-test-app-msal/CHANGELOG.json b/packages/react-native-test-app-msal/CHANGELOG.json deleted file mode 100644 index f17433b4d..000000000 --- a/packages/react-native-test-app-msal/CHANGELOG.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "name": "@rnx-kit/react-native-test-app-msal", - "entries": [ - { - "date": "Mon, 22 Nov 2021 12:15:07 GMT", - "tag": "@rnx-kit/react-native-test-app-msal_v0.2.0", - "version": "0.2.0", - "comments": { - "minor": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/react-native-test-app-msal", - "commit": "28052286ec9ed5abfe4f79b48c9f234557d2bea4", - "comment": "Refactored auth callback to make it simpler to add properties to the result." - } - ] - } - }, - { - "date": "Wed, 03 Nov 2021 18:15:39 GMT", - "tag": "@rnx-kit/react-native-test-app-msal_v0.1.0", - "version": "0.1.0", - "comments": { - "minor": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/react-native-test-app-msal", - "commit": "ef7b6705d31e525e12711320f34626161015501e", - "comment": "MSAL module for react-native-test-app" - } - ] - } - } - ] -} diff --git a/packages/rn-changelog-generator/CHANGELOG.json b/packages/rn-changelog-generator/CHANGELOG.json deleted file mode 100644 index 01f6fefc3..000000000 --- a/packages/rn-changelog-generator/CHANGELOG.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "name": "@rnx-kit/rn-changelog-generator", - "entries": [ - { - "date": "Thu, 18 Nov 2021 20:51:05 GMT", - "tag": "@rnx-kit/rn-changelog-generator_v0.1.1", - "version": "0.1.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/rn-changelog-generator", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ] - } - }, - { - "date": "Fri, 12 Nov 2021 18:30:41 GMT", - "tag": "@rnx-kit/rn-changelog-generator_v0.1.0", - "version": "0.1.0", - "comments": { - "minor": [ - { - "author": "lsciandra@microsoft.com", - "package": "@rnx-kit/rn-changelog-generator", - "commit": "71e4bc28d48bcb3e4a9b4236676fb709c5419dac", - "comment": "create rn-changelog-generator package" - } - ] - } - } - ] -} diff --git a/packages/template/README.md b/packages/template/README.md index 5a63cd948..ca8ebd1c6 100644 --- a/packages/template/README.md +++ b/packages/template/README.md @@ -1,4 +1,4 @@ - + # Template folder @@ -32,8 +32,7 @@ To generate a sample project for you to use. - `types.ts` you should add the types for your code in dedicated files (when it starts to get massive) - `test` folder - contains the tests that will be ran during `yarn test` - `index.test.ts` you usually want one test file per each file in the src folder -- `CHANGELOG.json` this will get generated by beachball -- `CHANGELOG.md` this will also get generated via beachball +- `CHANGELOG.md` this will be generated by Changesets - `just.config.js` sets up commands (or tasks as they are called) such as build, format, lint, and test. We use it to have a uniform way of building etc. across all packages. - `package.json` classic package file describer - your main point of control. Remember to leverage the existing infra and practices! - `README.md` what will tell your users everything they need to know. Please make sure to cover at least a few basics: how to use, which problems it solve, any specific props or patterns to follow. Your tests should help explain in details how the code actually works diff --git a/packages/test-app/CHANGELOG.json b/packages/test-app/CHANGELOG.json deleted file mode 100644 index ca1b841a2..000000000 --- a/packages/test-app/CHANGELOG.json +++ /dev/null @@ -1,2458 +0,0 @@ -{ - "name": "@rnx-kit/test-app", - "entries": [ - { - "date": "Thu, 16 Sep 2021 10:10:39 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "ac474077fa1675e2faaa74ced891ba1e1a6673f0", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Tue, 14 Sep 2021 15:28:16 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "9d8cbae61aa4942747d1c7c1e9bd007d764168de", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Mon, 13 Sep 2021 18:43:23 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "879da8b132357b2b19d643ee4f508d11a69e81ef", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Mon, 13 Sep 2021 17:38:26 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "b912e8f7cc3d3ee7a7b31768d10fc8077c9f622d", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Wed, 08 Sep 2021 07:04:15 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "a3f63fb86e5facc1f7251abc116e3d23aca37473", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Wed, 08 Sep 2021 06:42:50 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Mon, 06 Sep 2021 06:57:59 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "263c7c4d160895f857f6b76b147ad3c6a5e97343", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Fri, 03 Sep 2021 12:18:30 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "ced0ef438232d91f7fa527f51e23e6da9e7dbf2c", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Fri, 03 Sep 2021 09:49:28 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "73624d095f4e874d5ceee8d123c9b8fedfdf0452", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 10:50:41 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "ff12b97c1107ad1eb6d253f74ff0f3daa7ec1b26", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 07:00:17 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "0eecc568dd8ff556cd3964772c614cbbf7eefb98", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 06:43:13 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "25b936b3786f2a37dc6feacb4034e6afb56e343b", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 06:34:16 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "5b06c8ffb55eb06976fb2d7bdcfbca79fe12f7f9", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 06:21:44 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "eed680eae677e25f2b0b70e832319260271cc0e6", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Fri, 27 Aug 2021 18:41:43 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "dcb826baf0cc3705b460776bdb31e19930f4f2dc", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Thu, 26 Aug 2021 17:24:29 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "dannyvv@microsoft.com", - "package": "@rnx-kit/test-app", - "commit": "28439d4f5c7da369bfb8cea52afc5b72988c015c", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 16:13:13 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/test-app", - "commit": "a66b07778871fffd7921acf14e697031432c424e", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 08:52:48 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/test-app", - "commit": "0e657ab7ff261ebf6873ef7418cbb40d6418ca8e", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 08:31:56 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "09e3ee0807e9558a0c46b252b2662c524095c41c", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 07:32:57 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/test-app", - "commit": "b8093ce5af4bcdad1b2d91b45da54ee640fab8ae", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 06:13:43 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "0ef422105802569f5ce0688aea238926c9570fe9", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Tue, 24 Aug 2021 09:20:39 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/test-app", - "commit": "47bed722fef16852bd119dc460e500f4e6a5521e", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Tue, 24 Aug 2021 08:15:03 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/test-app", - "commit": "b72c487ff1c4a6e5750a5c6156b4283e632683d4", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Tue, 24 Aug 2021 08:09:36 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "ccf242e997e1b399f3dc7253f36e5639a3e64036", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Mon, 23 Aug 2021 18:57:47 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/test-app", - "commit": "113f0631a2342c55ee52046ec3c70b14b9962303", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Mon, 23 Aug 2021 18:52:43 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "36fc1c476c151223208d9f35c8a68a386807e3be", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Mon, 23 Aug 2021 18:18:31 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/test-app", - "commit": "0f3e59491a4c9f9389dacb32d4161031179da2ba", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Mon, 23 Aug 2021 17:58:06 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/test-app", - "commit": "45341d8c509d074de7e45b9ea071a91babe12fae", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Mon, 23 Aug 2021 17:40:48 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/test-app", - "commit": "44540aa06df3f7ec554caf13bad7acd16a74a381", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Mon, 23 Aug 2021 17:18:07 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "sverre.johansen@gmail.com", - "package": "@rnx-kit/test-app", - "commit": "7200426250deb288fb38a3d8da91bb74a0e71437", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Mon, 23 Aug 2021 09:13:20 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/test-app", - "commit": "528f370fdcdd2db2523eaa9e0ade9ed6f100d775", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Mon, 23 Aug 2021 08:49:21 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "32ae291705cd20962bf4f315972d74ea088b7455", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Sat, 21 Aug 2021 08:22:48 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/test-app", - "commit": "f65f706c734841c4339ca1f825b9c9505cea8941", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Fri, 20 Aug 2021 10:36:13 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "asgramme@microsoft.com", - "package": "@rnx-kit/test-app", - "commit": "3f9a0bf27632a63d0b2b058282edc8283a4b1668", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Fri, 20 Aug 2021 09:36:58 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "2deee7a9285f3899e99aca2135ecd123fc777de2", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Thu, 19 Aug 2021 07:59:20 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "84c80d34cad6f8452954f3fcbb7d0ad5457055d5", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Wed, 18 Aug 2021 14:54:20 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "f6651e5391d69c5c77d495a447a546c0f9abba1e", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Tue, 17 Aug 2021 20:18:02 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "13dcd0c6da90c76db9ee188658b9f9aa5cb034d6", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Tue, 17 Aug 2021 09:36:56 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "150ed8e6ffca098c9bb72f5cd9e466a6d3ee393b", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Mon, 16 Aug 2021 14:17:13 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "59fb7d424f11437a534812df67804544baddeacc", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Fri, 13 Aug 2021 13:30:40 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "74979015c3e51ca33e9c66a411e4457a9e1edd49", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Fri, 06 Aug 2021 22:07:45 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/test-app", - "commit": "f8f9598f2be6df361dd6adb06921a05a46a1230b", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Fri, 06 Aug 2021 18:23:09 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/test-app", - "commit": "d4cc9733fff683948473f181fe649a30c8747103", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Fri, 06 Aug 2021 18:05:53 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/test-app", - "commit": "e0c49e3c2e2acb7327f81f42d3023667b3887b93", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Fri, 06 Aug 2021 17:50:49 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/test-app", - "commit": "97ec3dcb6845ec8b7e766d1916ed61728b80ef86", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Wed, 04 Aug 2021 10:08:23 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "1d13d5df2ec61bb3426521199cde4e588cb849b1", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Mon, 02 Aug 2021 11:18:46 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "49774eaf30ab5f7e87f1464cc14d1d58c83fb037", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Fri, 30 Jul 2021 18:00:51 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "dd66becefd2a7e26e96d06c607a127700ecda9bc", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Thu, 29 Jul 2021 19:42:04 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "bf6cf5092d383a447d0075fcf4f2584bbb347236", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Mon, 26 Jul 2021 15:59:59 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/test-app", - "commit": "b02743b55c37ac6b32b11a747e01c2d43013f954", - "comment": "Bump @rnx-kit/test-app to v0.0.1" - } - ] - } - }, - { - "date": "Thu, 22 Jul 2021 16:59:25 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "722506bfdb7966d022c7804574812aa8543fc2de", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Thu, 22 Jul 2021 09:12:14 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "ef46281ebe6329c9a92f486c7461118179a0db06", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Tue, 20 Jul 2021 09:45:40 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c5a30021862aad0f991cb985496bcc1a07120d11", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Tue, 20 Jul 2021 09:17:58 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "arabisho@microsoft.com", - "commit": "adda1c55902fc4bba4a6798b71053771e18131e6", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Fri, 16 Jul 2021 21:45:40 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "eb831d4e7e3b540e6e380a678dd0238304ce7e38", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Tue, 13 Jul 2021 17:31:45 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "afoxman@microsoft.com", - "commit": "0f0c380b62f4ee8d40070048be13e99f707296d2", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Tue, 13 Jul 2021 17:03:23 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "afoxman@microsoft.com", - "commit": "a95b353ad91c18ed040cff23079edcc489645ca1", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Tue, 13 Jul 2021 13:40:11 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "lsciandra@microsoft.com", - "commit": "c9e8b65095d29973099c6ef2910dfc02160880de", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 21:55:53 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "0de555701c26b643e8c80457f105933e405b7e34", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 17:30:15 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "b7e5477028dc4e33cc78dbe23b5a8c3279105e80", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 09:53:10 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "d5c36bb21e3482c24ff8b029cb60802d04e6bb64", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 08:34:12 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "10e9415e4120495665d6f3448d89948eacc100b8", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 07:51:46 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "afoxman@microsoft.com", - "commit": "021cfdb3fe726b76a377b2a6cccbe16a6999bf7a", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:45 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "eaedb2cae443a479e131cfd71fab5c1039daca9d", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:25 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "12196abcec79794493615829c3783d35f5bfc364", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 14:18:15 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "a650a6ce4992a6245eb26bfec1f7cef7dcfcba4a", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:47 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "2dc9fe456410eed10abbfa464ae7aa7e5cef7aef", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:07 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "f3ff6e5f5c20cf9e8c81ca25a4fae3f483925c59", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:21:45 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "ea2c03568d7e64c763b9883072a7a75d5a445953", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:17:59 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "10beb208470cb3d1c8de4c12a829da41dbf8983a", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Thu, 08 Jul 2021 11:40:27 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "761a1994bbe5f39962ec28821c3411521fbf7190", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Thu, 08 Jul 2021 09:26:30 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "afoxman@microsoft.com", - "commit": "dc1565a9c099dfb9fb336aec69ad41ecf05e0a8e", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Mon, 05 Jul 2021 15:15:06 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "53faa95399eaad7a8df9c758335380029d0d2041", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Thu, 01 Jul 2021 13:59:39 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "e06636db33664f9d57d598b445c4e6b437ee86ee", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Tue, 29 Jun 2021 06:01:48 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "afoxman@microsoft.com", - "commit": "0608b0120730c5cf0a78dd8bed80c18083851011", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Mon, 28 Jun 2021 14:19:44 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4794d9d1b5f8b9d1174dc0799291ff2e0a19b792", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Mon, 28 Jun 2021 08:19:07 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "afoxman@microsoft.com", - "commit": "e683ddef5e260d395fe2a112437b36d1ec23002c", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Mon, 28 Jun 2021 07:03:31 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "afoxman@microsoft.com", - "commit": "5d37edc9853b67953271966724ae75cae4efd341", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Fri, 25 Jun 2021 16:53:16 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "1822fcdb44bce87b2f07551f9e31c2f099084b5e", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Fri, 25 Jun 2021 14:10:29 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "1af7bdb7844c7284505411938f09765415c4e896", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Thu, 24 Jun 2021 13:57:48 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4d6844b9cfbe71feb15435e13496527c67ab225c", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 17:54:11 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "48a9a57e0163eb1edef65240d1f0eb95f78f0850", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 17:39:16 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "41bc87cda7c7c74084abf9f3f8039b0b670ab6ba", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 17:38:46 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c630c871d6747cb6631070f6f8ccba8d8933b353", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 09:28:25 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4701f7a40c050f8d376fbcfc84ce6e50f5fcf501", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 07:30:22 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "afoxman@microsoft.com", - "commit": "167081c3c6c2ef84c461b420a9875184358a8ded", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 06:06:43 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "45de83b3208bc137ae6eeb7451bcfde5a0b3779a", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Tue, 22 Jun 2021 15:04:23 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "fe36a9a52319cfac244fbbeb8c47a210af067366", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Mon, 21 Jun 2021 17:32:05 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "d2c832f866d64e595f8cceae5139bbbd033098b5", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Mon, 21 Jun 2021 11:43:28 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "97e5ae4b804010fe2457075ff5c1969391097b61", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Thu, 17 Jun 2021 18:01:13 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "3bcc48b08a5ee4ad203fe9ab55b9a324c0a244d0", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Thu, 17 Jun 2021 06:05:20 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "1e9d77d5f6f95f3c9819f81081850beea5cecbf3", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Tue, 15 Jun 2021 13:13:23 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "9ce445ef026a922d2cdbd95b857e3957ba48624d", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Sat, 05 Jun 2021 08:39:15 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/test-app to v0.0.1", - "author": "dannyvv@microsoft.com", - "commit": "471ae7a5aac29188257996d1b09bea31e12475f0", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Fri, 04 Jun 2021 12:36:37 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.20", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "434c350f84c22f492f3e5f5065ba2bc2d31b2678", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Fri, 04 Jun 2021 09:02:33 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.19", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "fe5932b980aa4df8d081fe601c5bb553f54a3907", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Thu, 03 Jun 2021 10:15:50 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.18", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "693d313e7ab36dcc0f28ec81b889bbd4aa4a89fd", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Wed, 02 Jun 2021 17:08:58 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.18", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "26f466ce336fda0e8651582ce0c07873d0b7084e", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Mon, 31 May 2021 06:57:45 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.17", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "7dfb8067e76b561b035a1b81d3cb8ef41b0978e0", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Thu, 27 May 2021 06:09:59 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.17", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "5d0bb1baee85221f9bccf25e436a996738103de1", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Wed, 26 May 2021 13:22:22 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.16", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "dd572c96f42e6c477fbfc178afd9892935b213c3", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Wed, 26 May 2021 06:53:03 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.15", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "d816342c652bfe239c8914e7048c9b6d20372589", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Thu, 20 May 2021 16:06:43 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.14", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "8e1f94f63652f88208e19c5d67f0f513cf449332", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Thu, 20 May 2021 15:24:25 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.13", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "84c927a1863af77c32c02cdedd29e2a30c2169ae", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Thu, 20 May 2021 06:03:39 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/metro-config to v1.2.0", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4a9e6c2f48d9d0faa352bd4e28b9c3294a3de6b5", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Wed, 19 May 2021 20:37:27 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.12", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "64d928a0fa70b9ccdc2f1ddaf69207a5a45eb1ad", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Wed, 19 May 2021 16:00:47 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.12", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "25050e7be5bd223a57940b02054ac288a6a8e0c2", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Wed, 19 May 2021 15:58:50 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.12", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "25050e7be5bd223a57940b02054ac288a6a8e0c2", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Tue, 18 May 2021 19:20:51 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/metro-config to v1.1.4", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c767296fbf6f78fc5259cd6ddbd4d219891922e0", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Tue, 18 May 2021 18:41:27 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.12", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "2f84e615438734d609d22cf4dee96bd7296a79cb", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Tue, 18 May 2021 09:25:17 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.11", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "986c9db076ab35e2f53f3b710ce0708cbb1899c3", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Sat, 15 May 2021 09:02:22 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.10", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "30eb2a9df003d7f71b61f78829d7f6dd83e6c2ea", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Sat, 15 May 2021 08:55:08 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.9", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "124a204b9dca475c66775de809ae436eb969a193", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Sat, 15 May 2021 08:49:14 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.8", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "d70e257508d6cb7207d5132e5cfb1323a569ca38", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Fri, 14 May 2021 07:34:43 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/metro-plugin-typescript-validation to v1.0.3", - "author": "afoxman@microsoft.com", - "commit": "b3f72c98d7d2bd52dd1e7c7c267c4d4934e83c75", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Wed, 12 May 2021 11:52:17 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.7", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "0dec2500df992c740b32e5b624d513b56312792f", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Wed, 12 May 2021 05:52:23 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/metro-plugin-typescript-validation to v1.0.2", - "author": "afoxman@microsoft.com", - "commit": "812dd5e0cda414fc1ced6463ff9cdbb9a495bcfd", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Wed, 12 May 2021 05:38:51 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.6", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4ebfac02941377da104bfed7eb114064acf25f7c", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Tue, 11 May 2021 17:21:45 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.6", - "author": "afoxman@microsoft.com", - "commit": "60cd10f49912d84c537121df8fe6a2ef340de6df", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Tue, 11 May 2021 15:41:12 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.5", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "62d55105865a37216acc27e4399be2562c1deac6", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Tue, 11 May 2021 15:36:06 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.4", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4a2fe040dc45b66c552e6f947eb8c0024a658406", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Tue, 11 May 2021 15:28:18 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.4", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "f2d09f279b1d5f4eac5c81e2d4e9e260ae4bfa78", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Mon, 10 May 2021 21:58:48 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.3", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "e085c163b72a693e3c588927319457705f3a54f6", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Mon, 10 May 2021 14:10:30 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "2a699c896062bb627e62f3628f8773594e96661e", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Sat, 08 May 2021 20:35:26 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "5847a1e9383f0465e686ed15598a78831283aa7f", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Fri, 07 May 2021 19:27:01 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/metro-plugin-typescript-validation to v1.0.1", - "author": "afoxman@microsoft.com", - "commit": "368a92fbaefef8a49a189d006eb0f00a13b2898e", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Thu, 06 May 2021 20:42:52 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.0", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "e9dd245ca19853c5bc024405e70360291d29c23e", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Thu, 06 May 2021 20:37:55 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/babel-preset-metro-react-native to v1.0.2", - "author": "afoxman@microsoft.com", - "commit": "c34ccb3ca74893ea0741603b46aa96a238d59831", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Thu, 06 May 2021 16:54:17 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.5.0", - "author": "dannyvv@microsoft.com", - "commit": "8c2571c17819157b37b1e59e337d9f5d43d9424b", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Wed, 05 May 2021 21:00:14 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.4.4", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c20ff4cdd6e961c0a697fba52b61bf4d5f9aa1c6", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Wed, 05 May 2021 20:55:03 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.4.3", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "029fced0d8da2f9745e687bfce42ef072bcb7bf4", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Wed, 05 May 2021 19:51:01 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.4.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "ae2e1aec823003e81003269160ba7dce04eb1714", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Wed, 05 May 2021 07:05:52 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/cli to v0.4.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c8ab12de29e878b96cb44fdff06aaf2e0ea868d7", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Thu, 29 Apr 2021 13:47:02 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.4.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "15c1e30a91a17422f6a45e1f34048540660fc7d9", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Wed, 28 Apr 2021 17:08:34 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.4.0", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "39c57b8e5de28442b69a449d57a3f7834f52275b", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Wed, 28 Apr 2021 15:54:06 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.3.3", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c79828791a6ac5cf19b4abfff6347542af49eaec", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Tue, 27 Apr 2021 19:43:40 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.3.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "87ec0aec3a1c1f0801f3d9f3da2b949bb0fd6d5e", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Tue, 27 Apr 2021 09:54:28 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.3.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "936b4eb3a361e820ef4f830be55182aae1e36dbe", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Fri, 16 Apr 2021 23:29:39 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.3.0", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "0358ff602565656ebf5f49a3f753974455158bbf", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Fri, 16 Apr 2021 12:03:52 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/metro-config to v1.1.3", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "770100be65c0c06f380769ace3f287d27d4408c0", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Tue, 13 Apr 2021 15:58:06 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.1.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "156e4465b424ce1512ac427ba716fbf063c43294", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Tue, 13 Apr 2021 08:39:11 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/metro-plugin-duplicates-checker to v1.1.0", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "5e69d665fb19ef9e4d740724de5c6c848a6a080c", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Mon, 12 Apr 2021 18:24:47 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/metro-plugin-cyclic-dependencies-detector to v1.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "a5dbb7309f19fafcbfa4c9be79a4e5defa50c6eb", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Fri, 09 Apr 2021 21:41:43 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.2.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c884313fa958e14113ee659ee01924589fd90f90", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Fri, 09 Apr 2021 08:27:05 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.2.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "ff2b50c6e16b588316b44fc8efa3295befaf2ebc", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Wed, 07 Apr 2021 16:29:26 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-config to v1.1.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "85047602b77d9eb201c3aad51b8206d504a70eb3", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Mon, 15 Mar 2021 07:09:22 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-config to v1.1.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "38515b5c325c76c6ac6652757433c62deb2e811c", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Thu, 11 Mar 2021 23:54:05 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/babel-preset-metro-react-native to v1.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "ad889b0e030e217d9df940a3aa605da6387fbc19", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Thu, 11 Mar 2021 22:58:41 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.2.0", - "author": "afoxman@microsoft.com", - "commit": "cc013a092960b50c0c90a8ab5ad6e52e02b5d13d", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Thu, 11 Mar 2021 22:51:12 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/metro-config to v1.1.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "e113d4f5b8737ce1fccc37c9c48d356a6fe28511", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Thu, 11 Mar 2021 15:31:28 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/metro-config to v1.1.0", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "f51c3a2734ba34d74ce0b784daba05b2deb85bcf", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Wed, 10 Mar 2021 18:05:17 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.1.0", - "author": "afoxman@microsoft.com", - "commit": "5e44f7b0db29b8ab20004b1d64d1cb09dc8bbd90", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Tue, 09 Mar 2021 20:34:23 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/cli to v0.0.5", - "author": "afoxman@microsoft.com", - "commit": "199a3ace5c54d83aaef163a3b09b5df01e4cf6b3", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Tue, 09 Mar 2021 08:21:51 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/metro-config to v1.0.4", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "e680fda8c1b6829140a64c26280c31cf3143cf0d", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Mon, 08 Mar 2021 20:53:41 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-config to v1.0.3", - "author": "afoxman@microsoft.com", - "commit": "75565553e5dc8440f18c3fb40bf48d008d83d5cf", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Mon, 08 Mar 2021 19:58:23 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-config to v1.0.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4b94373ba5a2c4071e199f759b15b449d66f4c0c", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Mon, 08 Mar 2021 10:59:59 GMT", - "tag": "@rnx-kit/test-app_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.0.5", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "422652c6492ae381cb9f4db0d11a7afb75018fe4", - "package": "@rnx-kit/test-app" - } - ] - } - }, - { - "date": "Mon, 22 Feb 2021 10:50:46 GMT", - "tag": "@rnx-kit/test-app-mobile_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.0.3", - "author": "afoxman@microsoft.com", - "commit": "1a3c54e876c6a7c25f423cebc4b2556b611c575a", - "package": "@rnx-kit/test-app-mobile" - } - ], - "none": [ - { - "comment": "Bump @rnx-kit/metro-config to v1.0.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "1a3c54e876c6a7c25f423cebc4b2556b611c575a", - "package": "@rnx-kit/test-app-mobile" - } - ] - } - }, - { - "date": "Fri, 19 Feb 2021 19:58:00 GMT", - "tag": "@rnx-kit/test-app-mobile_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/cli to v0.0.2", - "author": "afoxman@microsoft.com", - "commit": "5adefaed7d9a52f288f2929895d2a017187c8dbf", - "package": "@rnx-kit/test-app-mobile" - } - ] - } - }, - { - "date": "Fri, 19 Feb 2021 07:03:27 GMT", - "tag": "@rnx-kit/test-app-mobile_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-config to v1.0.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "9afadb4f2c5e9b5476d5575295b6ea0b909db760", - "package": "@rnx-kit/test-app-mobile" - } - ] - } - }, - { - "date": "Thu, 18 Feb 2021 09:33:32 GMT", - "tag": "@rnx-kit/test-app-mobile_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/metro-config to v1.0.2", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "7cd8fc3229dd9cecf57ab5e4f5c2e8228ca2aa43", - "package": "@rnx-kit/test-app-mobile" - } - ] - } - }, - { - "date": "Tue, 16 Feb 2021 09:27:59 GMT", - "tag": "@rnx-kit/test-app-mobile_v0.0.1", - "version": "0.0.1", - "comments": { - "patch": [ - { - "comment": "Bump @rnx-kit/metro-config to v1.0.1", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "93d5f4d1b75e87f1ffc6d18b6d99c817a060045d", - "package": "@rnx-kit/test-app-mobile" - } - ] - } - }, - { - "date": "Tue, 09 Feb 2021 07:58:51 GMT", - "tag": "@rnx-kit/mobile-app_v0.0.1", - "version": "0.0.1", - "comments": { - "none": [ - { - "comment": "Bump @rnx-kit/metro-config to v1.0.0", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "acbfb8256ff0477c59cb8e5001d3cbd8b5cf1207", - "package": "@rnx-kit/mobile-app" - } - ] - } - } - ] -} diff --git a/packages/third-party-notices/CHANGELOG.json b/packages/third-party-notices/CHANGELOG.json deleted file mode 100644 index 508e47b1c..000000000 --- a/packages/third-party-notices/CHANGELOG.json +++ /dev/null @@ -1,776 +0,0 @@ -{ - "name": "@rnx-kit/third-party-notices", - "entries": [ - { - "date": "Tue, 30 Nov 2021 17:24:14 GMT", - "tag": "@rnx-kit/third-party-notices_v1.2.13", - "version": "1.2.13", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/third-party-notices", - "comment": "Bump @rnx-kit/console to v1.0.11", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - }, - { - "author": "beachball", - "package": "@rnx-kit/third-party-notices", - "comment": "Bump @rnx-kit/tools-node to v1.2.6", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - } - ] - } - }, - { - "date": "Thu, 18 Nov 2021 20:51:05 GMT", - "tag": "@rnx-kit/third-party-notices_v1.2.12", - "version": "1.2.12", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/third-party-notices", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ], - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/third-party-notices", - "comment": "Bump @rnx-kit/console to v1.0.10", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - }, - { - "author": "beachball", - "package": "@rnx-kit/third-party-notices", - "comment": "Bump @rnx-kit/tools-node to v1.2.5", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/third-party-notices_v1.2.11", - "version": "1.2.11", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/third-party-notices", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/third-party-notices_v1.2.11", - "version": "1.2.11", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/third-party-notices", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 19:24:49 GMT", - "tag": "@rnx-kit/third-party-notices_v1.2.11", - "version": "1.2.11", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/third-party-notices", - "comment": "Bump @rnx-kit/console to v1.0.9", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - }, - { - "author": "beachball", - "package": "@rnx-kit/third-party-notices", - "comment": "Bump @rnx-kit/tools-node to v1.2.4", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 07:33:42 GMT", - "tag": "@rnx-kit/third-party-notices_v1.2.10", - "version": "1.2.10", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/third-party-notices", - "comment": "Bump @rnx-kit/console to v1.0.8", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - }, - { - "author": "beachball", - "package": "@rnx-kit/third-party-notices", - "comment": "Bump @rnx-kit/tools-node to v1.2.3", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - } - ] - } - }, - { - "date": "Wed, 03 Nov 2021 18:15:39 GMT", - "tag": "@rnx-kit/third-party-notices_v1.2.9", - "version": "1.2.9", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/third-party-notices", - "comment": "Bump @rnx-kit/console to v1.0.7", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - }, - { - "author": "beachball", - "package": "@rnx-kit/third-party-notices", - "comment": "Bump @rnx-kit/tools-node to v1.2.2", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - } - ] - } - }, - { - "date": "Mon, 01 Nov 2021 13:46:13 GMT", - "tag": "@rnx-kit/third-party-notices_v1.2.8", - "version": "1.2.8", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/third-party-notices", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb", - "comment": "Normalize main and types fields across all packages which use them." - }, - { - "author": "beachball", - "package": "@rnx-kit/third-party-notices", - "comment": "Bump @rnx-kit/console to v1.0.6", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - }, - { - "author": "beachball", - "package": "@rnx-kit/third-party-notices", - "comment": "Bump @rnx-kit/tools-node to v1.2.1", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - } - ] - } - }, - { - "date": "Sat, 30 Oct 2021 07:50:51 GMT", - "tag": "@rnx-kit/third-party-notices_v1.2.7", - "version": "1.2.7", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/third-party-notices", - "comment": "Bump @rnx-kit/tools-node to v1.2.0", - "commit": "6133f8fe0298611e4c736e94b46f32752d139e76" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 12:14:31 GMT", - "tag": "@rnx-kit/third-party-notices_v1.2.6", - "version": "1.2.6", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/third-party-notices", - "comment": "Bump @rnx-kit/console to v1.0.5", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - }, - { - "author": "beachball", - "package": "@rnx-kit/third-party-notices", - "comment": "Bump @rnx-kit/tools-node to v1.1.6", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 10:31:10 GMT", - "tag": "@rnx-kit/third-party-notices_v1.2.5", - "version": "1.2.5", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/third-party-notices", - "comment": "Bump @rnx-kit/console to v1.0.4", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - }, - { - "author": "beachball", - "package": "@rnx-kit/third-party-notices", - "comment": "Bump @rnx-kit/tools-node to v1.1.5", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 08:51:30 GMT", - "tag": "@rnx-kit/third-party-notices_v1.2.4", - "version": "1.2.4", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/third-party-notices", - "comment": "Bump @rnx-kit/console to v1.0.3", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - }, - { - "author": "beachball", - "package": "@rnx-kit/third-party-notices", - "comment": "Bump @rnx-kit/tools-node to v1.1.4", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - } - ] - } - }, - { - "date": "Fri, 22 Oct 2021 18:31:09 GMT", - "tag": "@rnx-kit/third-party-notices_v1.2.3", - "version": "1.2.3", - "comments": { - "none": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/third-party-notices", - "commit": "3c965a3209c03b06f145f9edad4b07a230a0f058", - "comment": "Move TPN CLI from bin to lib and publish from there." - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 16:06:09 GMT", - "tag": "@rnx-kit/third-party-notices_v1.2.3", - "version": "1.2.3", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/third-party-notices", - "comment": "Upgrade Jest to v27", - "commit": "f7b4eeebbd2576f83048ce5d2a0c538574d76c99" - } - ] - } - }, - { - "date": "Wed, 22 Sep 2021 16:05:55 GMT", - "tag": "@rnx-kit/third-party-notices_v1.2.3", - "version": "1.2.3", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/third-party-notices", - "comment": "Upgrade Jest to v27", - "commit": "4463a88285b37b622deb06717c92ff0f3c5451ad" - } - ] - } - }, - { - "date": "Tue, 21 Sep 2021 13:01:58 GMT", - "tag": "@rnx-kit/third-party-notices_v1.2.3", - "version": "1.2.3", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/third-party-notices", - "comment": "Enable `--isolatedModules` to ensure compatibility with transpilers that only operate on a single file at a time, e.g. Babel or esbuild.", - "commit": "862d756cce07a4403fcba65d8b0e1979c384fd01" - } - ] - } - }, - { - "date": "Wed, 08 Sep 2021 06:42:50 GMT", - "tag": "@rnx-kit/third-party-notices_v1.2.3", - "version": "1.2.3", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/third-party-notices", - "comment": "Use repo Jest preset", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/third-party-notices", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3", - "comment": "Bump @rnx-kit/third-party-notices to v1.2.3" - } - ] - } - }, - { - "date": "Fri, 03 Sep 2021 12:18:30 GMT", - "tag": "@rnx-kit/third-party-notices_v1.2.3", - "version": "1.2.3", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/third-party-notices", - "commit": "ced0ef438232d91f7fa527f51e23e6da9e7dbf2c", - "comment": "Bump @rnx-kit/third-party-notices to v1.2.3" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 07:00:17 GMT", - "tag": "@rnx-kit/third-party-notices_v1.2.2", - "version": "1.2.2", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/third-party-notices", - "commit": "0eecc568dd8ff556cd3964772c614cbbf7eefb98", - "comment": "Bump @rnx-kit/third-party-notices to v1.2.2" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 06:43:13 GMT", - "tag": "@rnx-kit/third-party-notices_v1.2.2", - "version": "1.2.2", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/third-party-notices", - "commit": "25b936b3786f2a37dc6feacb4034e6afb56e343b", - "comment": "Bump @rnx-kit/third-party-notices to v1.2.2" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 06:21:44 GMT", - "tag": "@rnx-kit/third-party-notices_v1.2.1", - "version": "1.2.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/third-party-notices", - "comment": "Formatted test code", - "commit": "eed680eae677e25f2b0b70e832319260271cc0e6" - } - ] - } - }, - { - "date": "Fri, 27 Aug 2021 18:41:43 GMT", - "tag": "@rnx-kit/third-party-notices_v1.2.1", - "version": "1.2.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/third-party-notices", - "commit": "dcb826baf0cc3705b460776bdb31e19930f4f2dc", - "comment": "Bump @rnx-kit/third-party-notices to v1.2.1" - } - ] - } - }, - { - "date": "Thu, 26 Aug 2021 17:24:29 GMT", - "tag": "@rnx-kit/third-party-notices_v1.2.0", - "version": "1.2.0", - "comments": { - "minor": [ - { - "author": "dannyvv@microsoft.com", - "package": "@rnx-kit/third-party-notices", - "comment": "Add support for webpack prefixing package names", - "commit": "28439d4f5c7da369bfb8cea52afc5b72988c015c" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 08:52:48 GMT", - "tag": "@rnx-kit/third-party-notices_v1.1.4", - "version": "1.1.4", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/third-party-notices", - "commit": "0e657ab7ff261ebf6873ef7418cbb40d6418ca8e", - "comment": "Bump @rnx-kit/third-party-notices to v1.1.4" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 07:32:57 GMT", - "tag": "@rnx-kit/third-party-notices_v1.1.3", - "version": "1.1.3", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/third-party-notices", - "commit": "b8093ce5af4bcdad1b2d91b45da54ee640fab8ae", - "comment": "Bump @rnx-kit/third-party-notices to v1.1.3" - } - ] - } - }, - { - "date": "Tue, 24 Aug 2021 08:09:36 GMT", - "tag": "@rnx-kit/third-party-notices_v1.1.2", - "version": "1.1.2", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/third-party-notices", - "commit": "ccf242e997e1b399f3dc7253f36e5639a3e64036", - "comment": "Bump @rnx-kit/third-party-notices to v1.1.2" - } - ] - } - }, - { - "date": "Sat, 21 Aug 2021 08:22:48 GMT", - "tag": "@rnx-kit/third-party-notices_v1.1.2", - "version": "1.1.2", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/third-party-notices", - "comment": "Integrate tools package and other common libraries throughout monorepo, removing custom code.", - "commit": "f65f706c734841c4339ca1f825b9c9505cea8941" - }, - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/third-party-notices", - "commit": "f65f706c734841c4339ca1f825b9c9505cea8941", - "comment": "Bump @rnx-kit/third-party-notices to v1.1.2" - } - ] - } - }, - { - "date": "Wed, 04 Aug 2021 10:08:23 GMT", - "tag": "@rnx-kit/third-party-notices_v1.1.1", - "version": "1.1.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/third-party-notices", - "commit": "1d13d5df2ec61bb3426521199cde4e588cb849b1", - "comment": "Bump @rnx-kit/third-party-notices to v1.1.1" - } - ] - } - }, - { - "date": "Mon, 02 Aug 2021 11:18:46 GMT", - "tag": "@rnx-kit/third-party-notices_v1.1.0", - "version": "1.1.0", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/third-party-notices", - "comment": "Bump @rnx-kit/console to 1.0.1 so Beachball doesn't get confused during publishing", - "commit": "49774eaf30ab5f7e87f1464cc14d1d58c83fb037" - } - ] - } - }, - { - "date": "Fri, 30 Jul 2021 18:00:51 GMT", - "tag": "@rnx-kit/third-party-notices_v1.1.0", - "version": "1.1.0", - "comments": { - "minor": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/third-party-notices", - "comment": "Add JSON output format", - "commit": "dd66becefd2a7e26e96d06c607a127700ecda9bc" - } - ] - } - }, - { - "date": "Thu, 29 Jul 2021 19:42:04 GMT", - "tag": "@rnx-kit/third-party-notices_v1.0.3", - "version": "1.0.3", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/third-party-notices", - "comment": "Replace @rnx-kit/babel-preset-jest-typescript with @rnx-kit/jest-preset", - "commit": "bf6cf5092d383a447d0075fcf4f2584bbb347236" - } - ], - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/third-party-notices", - "commit": "bf6cf5092d383a447d0075fcf4f2584bbb347236", - "comment": "Bump @rnx-kit/third-party-notices to v1.0.3" - } - ] - } - }, - { - "date": "Fri, 16 Jul 2021 21:45:40 GMT", - "tag": "@rnx-kit/third-party-notices_v1.0.2", - "version": "1.0.2", - "comments": { - "patch": [ - { - "comment": "Address CVE-2020-7608", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "eb831d4e7e3b540e6e380a678dd0238304ce7e38", - "package": "@rnx-kit/third-party-notices" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 09:53:10 GMT", - "tag": "@rnx-kit/third-party-notices_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "comment": "Added `lint` script", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "d5c36bb21e3482c24ff8b029cb60802d04e6bb64", - "package": "@rnx-kit/third-party-notices" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 07:51:46 GMT", - "tag": "@rnx-kit/third-party-notices_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "comment": "fix TPN tests", - "author": "afoxman@microsoft.com", - "commit": "021cfdb3fe726b76a377b2a6cccbe16a6999bf7a", - "package": "@rnx-kit/third-party-notices" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:45 GMT", - "tag": "@rnx-kit/third-party-notices_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "comment": "Added `format` script", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "eaedb2cae443a479e131cfd71fab5c1039daca9d", - "package": "@rnx-kit/third-party-notices" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:25 GMT", - "tag": "@rnx-kit/third-party-notices_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "comment": "Added `format` script", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "12196abcec79794493615829c3783d35f5bfc364", - "package": "@rnx-kit/third-party-notices" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:47 GMT", - "tag": "@rnx-kit/third-party-notices_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "comment": "Add badges for build status and version", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "2dc9fe456410eed10abbfa464ae7aa7e5cef7aef", - "package": "@rnx-kit/third-party-notices" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:07 GMT", - "tag": "@rnx-kit/third-party-notices_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "comment": "Add badges for build status and version", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "f3ff6e5f5c20cf9e8c81ca25a4fae3f483925c59", - "package": "@rnx-kit/third-party-notices" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 09:28:25 GMT", - "tag": "@rnx-kit/third-party-notices_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "comment": "Added ESLint config", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4701f7a40c050f8d376fbcfc84ce6e50f5fcf501", - "package": "@rnx-kit/third-party-notices" - } - ] - } - }, - { - "date": "Tue, 22 Jun 2021 15:04:23 GMT", - "tag": "@rnx-kit/third-party-notices_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "comment": "Looser dependency on chalk and yargs", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "fe36a9a52319cfac244fbbeb8c47a210af067366", - "package": "@rnx-kit/third-party-notices" - } - ] - } - }, - { - "date": "Sat, 05 Jun 2021 08:39:15 GMT", - "tag": "@rnx-kit/third-party-notices_v1.0.1", - "version": "1.0.1", - "comments": { - "patch": [ - { - "comment": "Fix ThirdPartyNotices, missing await", - "author": "dannyvv@microsoft.com", - "commit": "471ae7a5aac29188257996d1b09bea31e12475f0", - "package": "@rnx-kit/third-party-notices" - } - ] - } - }, - { - "date": "Thu, 03 Jun 2021 10:15:50 GMT", - "tag": "@rnx-kit/third-party-notices_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Formatted all the things", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "693d313e7ab36dcc0f28ec81b889bbd4aa4a89fd", - "package": "@rnx-kit/third-party-notices" - } - ] - } - }, - { - "date": "Thu, 06 May 2021 20:42:52 GMT", - "tag": "@rnx-kit/third-party-notices_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Use Babel preset for Jest + TypeScript", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "e9dd245ca19853c5bc024405e70360291d29c23e", - "package": "@rnx-kit/third-party-notices" - } - ] - } - }, - { - "date": "Thu, 06 May 2021 20:37:55 GMT", - "tag": "@rnx-kit/third-party-notices_v1.0.0", - "version": "1.0.0", - "comments": { - "none": [ - { - "comment": "Split tsconfig options out into a shared file that can be included in all projects without specifying any source files.", - "author": "afoxman@microsoft.com", - "commit": "c34ccb3ca74893ea0741603b46aa96a238d59831", - "package": "@rnx-kit/third-party-notices" - } - ] - } - }, - { - "date": "Thu, 06 May 2021 16:54:17 GMT", - "tag": "@rnx-kit/third-party-notices_v1.0.0", - "version": "1.0.0", - "comments": { - "prerelease": [ - { - "comment": "Port third-party-notice extraction logic to rnx-kit", - "author": "dannyvv@microsoft.com", - "commit": "8c2571c17819157b37b1e59e337d9f5d43d9424b", - "package": "@rnx-kit/third-party-notices" - } - ], - "patch": [ - { - "comment": "Port third-party-notice extraction logic to rnx-kit.", - "author": "dannyvv@microsoft.com", - "commit": "8c2571c17819157b37b1e59e337d9f5d43d9424b", - "package": "@rnx-kit/third-party-notices" - } - ] - } - } - ] -} diff --git a/packages/tools-language/CHANGELOG.json b/packages/tools-language/CHANGELOG.json deleted file mode 100644 index aa6d577a3..000000000 --- a/packages/tools-language/CHANGELOG.json +++ /dev/null @@ -1,185 +0,0 @@ -{ - "name": "@rnx-kit/tools-language", - "entries": [ - { - "date": "Thu, 18 Nov 2021 20:51:05 GMT", - "tag": "@rnx-kit/tools-language_v1.2.5", - "version": "1.2.5", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-language", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/tools-language_v1.2.4", - "version": "1.2.4", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-language", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/tools-language_v1.2.4", - "version": "1.2.4", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-language", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Mon, 01 Nov 2021 13:46:13 GMT", - "tag": "@rnx-kit/tools-language_v1.2.1", - "version": "1.2.1", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/tools-language", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb", - "comment": "Normalize main and types fields across all packages which use them." - } - ] - } - }, - { - "date": "Sat, 30 Oct 2021 07:50:51 GMT", - "tag": "@rnx-kit/tools-language_v1.2.0", - "version": "1.2.0", - "comments": { - "minor": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/tools-language", - "commit": "6133f8fe0298611e4c736e94b46f32752d139e76", - "comment": "Add new language and node functions to the tools packages." - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 09:04:42 GMT", - "tag": "@rnx-kit/tools-language_v1.1.2", - "version": "1.1.2", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-language", - "commit": "5361bf5151fb8f8ad2aaa35989a7c80be1c59aa3", - "comment": "Prefer named exports" - } - ] - } - }, - { - "date": "Wed, 08 Sep 2021 06:42:50 GMT", - "tag": "@rnx-kit/tools-language_v1.1.1", - "version": "1.1.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-language", - "comment": "Use repo Jest preset", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 07:00:17 GMT", - "tag": "@rnx-kit/tools-language_v1.1.1", - "version": "1.1.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-language", - "comment": "Updated documentation", - "commit": "0eecc568dd8ff556cd3964772c614cbbf7eefb98" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 06:43:13 GMT", - "tag": "@rnx-kit/tools-language_v1.1.1", - "version": "1.1.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-language", - "comment": "Stricter handling of errors", - "commit": "25b936b3786f2a37dc6feacb4034e6afb56e343b" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 07:32:57 GMT", - "tag": "@rnx-kit/tools-language_v1.1.0", - "version": "1.1.0", - "comments": { - "minor": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/tools-language", - "comment": "Add two new functions for extended objects and their types.", - "commit": "b8093ce5af4bcdad1b2d91b45da54ee640fab8ae" - } - ] - } - }, - { - "date": "Tue, 24 Aug 2021 08:09:36 GMT", - "tag": "@rnx-kit/tools-language_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-language", - "commit": "ccf242e997e1b399f3dc7253f36e5639a3e64036", - "comment": "Bump @rnx-kit/tools-language to v1.0.1" - } - ] - } - }, - { - "date": "Sat, 21 Aug 2021 08:22:48 GMT", - "tag": "@rnx-kit/tools-language_v1.0.1", - "version": "1.0.1", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/tools-language", - "comment": "Create a language tools package", - "commit": "f65f706c734841c4339ca1f825b9c9505cea8941" - } - ] - } - } - ] -} diff --git a/packages/tools-node/CHANGELOG.json b/packages/tools-node/CHANGELOG.json deleted file mode 100644 index b27ab112e..000000000 --- a/packages/tools-node/CHANGELOG.json +++ /dev/null @@ -1,373 +0,0 @@ -{ - "name": "@rnx-kit/tools-node", - "entries": [ - { - "date": "Tue, 30 Nov 2021 17:24:14 GMT", - "tag": "@rnx-kit/tools-node_v1.2.6", - "version": "1.2.6", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/tools-node", - "comment": "Bump @rnx-kit/tools-language to v1.2.6", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - } - ] - } - }, - { - "date": "Thu, 18 Nov 2021 20:51:05 GMT", - "tag": "@rnx-kit/tools-node_v1.2.5", - "version": "1.2.5", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-node", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ], - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/tools-node", - "comment": "Bump @rnx-kit/tools-language to v1.2.5", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/tools-node_v1.2.4", - "version": "1.2.4", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-node", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/tools-node_v1.2.4", - "version": "1.2.4", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-node", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 19:24:49 GMT", - "tag": "@rnx-kit/tools-node_v1.2.4", - "version": "1.2.4", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/tools-node", - "comment": "Bump @rnx-kit/tools-language to v1.2.4", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 07:33:42 GMT", - "tag": "@rnx-kit/tools-node_v1.2.3", - "version": "1.2.3", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/tools-node", - "comment": "Bump @rnx-kit/tools-language to v1.2.3", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - } - ] - } - }, - { - "date": "Wed, 03 Nov 2021 18:15:39 GMT", - "tag": "@rnx-kit/tools-node_v1.2.2", - "version": "1.2.2", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/tools-node", - "comment": "Bump @rnx-kit/tools-language to v1.2.2", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - } - ] - } - }, - { - "date": "Mon, 01 Nov 2021 13:46:13 GMT", - "tag": "@rnx-kit/tools-node_v1.2.1", - "version": "1.2.1", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/tools-node", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb", - "comment": "Normalize main and types fields across all packages which use them." - }, - { - "author": "beachball", - "package": "@rnx-kit/tools-node", - "comment": "Bump @rnx-kit/tools-language to v1.2.1", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - } - ] - } - }, - { - "date": "Sat, 30 Oct 2021 07:50:51 GMT", - "tag": "@rnx-kit/tools-node_v1.2.0", - "version": "1.2.0", - "comments": { - "minor": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/tools-node", - "commit": "6133f8fe0298611e4c736e94b46f32752d139e76", - "comment": "Add new language and node functions to the tools packages." - }, - { - "author": "beachball", - "package": "@rnx-kit/tools-node", - "comment": "Bump @rnx-kit/tools-language to v1.2.0", - "commit": "6133f8fe0298611e4c736e94b46f32752d139e76" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 12:14:31 GMT", - "tag": "@rnx-kit/tools-node_v1.1.6", - "version": "1.1.6", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/tools-node", - "comment": "Bump @rnx-kit/tools-language to v1.1.4", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 10:31:10 GMT", - "tag": "@rnx-kit/tools-node_v1.1.5", - "version": "1.1.5", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/tools-node", - "comment": "Bump @rnx-kit/tools-language to v1.1.3", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 09:04:42 GMT", - "tag": "@rnx-kit/tools-node_v1.1.4", - "version": "1.1.4", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-node", - "commit": "5361bf5151fb8f8ad2aaa35989a7c80be1c59aa3", - "comment": "Prefer named exports" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 08:51:30 GMT", - "tag": "@rnx-kit/tools-node_v1.1.4", - "version": "1.1.4", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/tools-node", - "comment": "Bump @rnx-kit/tools-language to v1.1.2", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - } - ] - } - }, - { - "date": "Wed, 08 Sep 2021 06:42:50 GMT", - "tag": "@rnx-kit/tools-node_v1.1.3", - "version": "1.1.3", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-node", - "comment": "Use repo Jest preset", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-node", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3", - "comment": "Bump @rnx-kit/tools-node to v1.1.3" - } - ] - } - }, - { - "date": "Fri, 03 Sep 2021 12:18:30 GMT", - "tag": "@rnx-kit/tools-node_v1.1.3", - "version": "1.1.3", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-node", - "comment": "Allow indentation to be configured", - "commit": "ced0ef438232d91f7fa527f51e23e6da9e7dbf2c" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 07:00:17 GMT", - "tag": "@rnx-kit/tools-node_v1.1.2", - "version": "1.1.2", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-node", - "comment": "Updated documentation", - "commit": "0eecc568dd8ff556cd3964772c614cbbf7eefb98" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-node", - "commit": "0eecc568dd8ff556cd3964772c614cbbf7eefb98", - "comment": "Bump @rnx-kit/tools-node to v1.1.2" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 06:43:13 GMT", - "tag": "@rnx-kit/tools-node_v1.1.2", - "version": "1.1.2", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-node", - "commit": "25b936b3786f2a37dc6feacb4034e6afb56e343b", - "comment": "Bump @rnx-kit/tools-node to v1.1.2" - } - ] - } - }, - { - "date": "Fri, 27 Aug 2021 18:41:43 GMT", - "tag": "@rnx-kit/tools-node_v1.1.1", - "version": "1.1.1", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-node", - "comment": "Fix Windows absolute paths not being handled correctly", - "commit": "dcb826baf0cc3705b460776bdb31e19930f4f2dc" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 08:52:48 GMT", - "tag": "@rnx-kit/tools-node_v1.1.0", - "version": "1.1.0", - "comments": { - "minor": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/tools-node", - "comment": "Add a method to create a directory, including parent directories.", - "commit": "0e657ab7ff261ebf6873ef7418cbb40d6418ca8e" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 07:32:57 GMT", - "tag": "@rnx-kit/tools-node_v1.0.2", - "version": "1.0.2", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/tools-node", - "commit": "b8093ce5af4bcdad1b2d91b45da54ee640fab8ae", - "comment": "Bump @rnx-kit/tools-node to v1.0.2" - } - ] - } - }, - { - "date": "Tue, 24 Aug 2021 08:09:36 GMT", - "tag": "@rnx-kit/tools-node_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-node", - "commit": "ccf242e997e1b399f3dc7253f36e5639a3e64036", - "comment": "Bump @rnx-kit/tools-node to v1.0.1" - } - ] - } - }, - { - "date": "Sat, 21 Aug 2021 08:22:48 GMT", - "tag": "@rnx-kit/tools-node_v1.0.1", - "version": "1.0.1", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/tools-node", - "comment": "Create a node tools package", - "commit": "f65f706c734841c4339ca1f825b9c9505cea8941" - }, - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/tools-node", - "commit": "f65f706c734841c4339ca1f825b9c9505cea8941", - "comment": "Bump @rnx-kit/tools-node to v1.0.1" - } - ] - } - } - ] -} diff --git a/packages/tools-react-native/CHANGELOG.json b/packages/tools-react-native/CHANGELOG.json deleted file mode 100644 index 666200366..000000000 --- a/packages/tools-react-native/CHANGELOG.json +++ /dev/null @@ -1,140 +0,0 @@ -{ - "name": "@rnx-kit/tools-react-native", - "entries": [ - { - "date": "Thu, 18 Nov 2021 20:51:05 GMT", - "tag": "@rnx-kit/tools-react-native_v1.0.9", - "version": "1.0.9", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-react-native", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/tools-react-native_v1.0.8", - "version": "1.0.8", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-react-native", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/tools-react-native_v1.0.8", - "version": "1.0.8", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-react-native", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Mon, 01 Nov 2021 13:46:13 GMT", - "tag": "@rnx-kit/tools-react-native_v1.0.5", - "version": "1.0.5", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/tools-react-native", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb", - "comment": "Normalize main and types fields across all packages which use them." - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 09:04:42 GMT", - "tag": "@rnx-kit/tools-react-native_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-react-native", - "commit": "5361bf5151fb8f8ad2aaa35989a7c80be1c59aa3", - "comment": "Prefer named exports" - } - ] - } - }, - { - "date": "Wed, 08 Sep 2021 06:42:50 GMT", - "tag": "@rnx-kit/tools-react-native_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-react-native", - "comment": "Use repo Jest preset", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 07:00:17 GMT", - "tag": "@rnx-kit/tools-react-native_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-react-native", - "comment": "Updated documentation", - "commit": "0eecc568dd8ff556cd3964772c614cbbf7eefb98" - } - ] - } - }, - { - "date": "Tue, 24 Aug 2021 08:09:36 GMT", - "tag": "@rnx-kit/tools-react-native_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/tools-react-native", - "commit": "ccf242e997e1b399f3dc7253f36e5639a3e64036", - "comment": "Bump @rnx-kit/tools-react-native to v1.0.1" - } - ] - } - }, - { - "date": "Sat, 21 Aug 2021 08:22:48 GMT", - "tag": "@rnx-kit/tools-react-native_v1.0.1", - "version": "1.0.1", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/tools-react-native", - "comment": "Create a react-native tools package", - "commit": "f65f706c734841c4339ca1f825b9c9505cea8941" - } - ] - } - } - ] -} diff --git a/packages/typescript-react-native-compiler/CHANGELOG.json b/packages/typescript-react-native-compiler/CHANGELOG.json deleted file mode 100644 index bc1aa63c3..000000000 --- a/packages/typescript-react-native-compiler/CHANGELOG.json +++ /dev/null @@ -1,211 +0,0 @@ -{ - "name": "@rnx-kit/typescript-react-native-compiler", - "entries": [ - { - "date": "Tue, 30 Nov 2021 17:24:14 GMT", - "tag": "@rnx-kit/typescript-react-native-compiler_v0.0.6", - "version": "0.0.6", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/typescript-react-native-compiler", - "comment": "Bump @rnx-kit/tools-language to v1.2.6", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - }, - { - "author": "beachball", - "package": "@rnx-kit/typescript-react-native-compiler", - "comment": "Bump @rnx-kit/tools-node to v1.2.6", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - }, - { - "author": "beachball", - "package": "@rnx-kit/typescript-react-native-compiler", - "comment": "Bump @rnx-kit/typescript-react-native-resolver to v0.1.3", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - }, - { - "author": "beachball", - "package": "@rnx-kit/typescript-react-native-compiler", - "comment": "Bump @rnx-kit/typescript-service to v1.5.3", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - } - ] - } - }, - { - "date": "Fri, 19 Nov 2021 16:08:47 GMT", - "tag": "@rnx-kit/typescript-react-native-compiler_v0.0.5", - "version": "0.0.5", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/typescript-react-native-compiler", - "comment": "Bump @rnx-kit/typescript-react-native-resolver to v0.1.2", - "commit": "0654e1e1433ba6ae20f5696aa78529e0c0d6e415" - }, - { - "author": "beachball", - "package": "@rnx-kit/typescript-react-native-compiler", - "comment": "Bump @rnx-kit/typescript-service to v1.5.2", - "commit": "0654e1e1433ba6ae20f5696aa78529e0c0d6e415" - } - ] - } - }, - { - "date": "Thu, 18 Nov 2021 20:51:05 GMT", - "tag": "@rnx-kit/typescript-react-native-compiler_v0.0.4", - "version": "0.0.4", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/typescript-react-native-compiler", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ], - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/typescript-react-native-compiler", - "comment": "Bump @rnx-kit/tools-language to v1.2.5", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - }, - { - "author": "beachball", - "package": "@rnx-kit/typescript-react-native-compiler", - "comment": "Bump @rnx-kit/tools-node to v1.2.5", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - }, - { - "author": "beachball", - "package": "@rnx-kit/typescript-react-native-compiler", - "comment": "Bump @rnx-kit/typescript-react-native-resolver to v0.1.1", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - }, - { - "author": "beachball", - "package": "@rnx-kit/typescript-react-native-compiler", - "comment": "Bump @rnx-kit/typescript-service to v1.5.1", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 21:11:31 GMT", - "tag": "@rnx-kit/typescript-react-native-compiler_v0.0.3", - "version": "0.0.3", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/typescript-react-native-compiler", - "commit": "f75a209043f131e09b32b8783bf912a8c14f26f7", - "comment": "Update the CLI's Metro/TS integration to use the new, generalized resolver in @rnx-kit/typescript-react-native-resolver. Remove the unneeded \"default\" resolver." - }, - { - "author": "beachball", - "package": "@rnx-kit/typescript-react-native-compiler", - "comment": "Bump @rnx-kit/typescript-react-native-resolver to v0.1.0", - "commit": "f75a209043f131e09b32b8783bf912a8c14f26f7" - }, - { - "author": "beachball", - "package": "@rnx-kit/typescript-react-native-compiler", - "comment": "Bump @rnx-kit/typescript-service to v1.5.0", - "commit": "f75a209043f131e09b32b8783bf912a8c14f26f7" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/typescript-react-native-compiler_v0.0.2", - "version": "0.0.2", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/typescript-react-native-compiler", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/typescript-react-native-compiler_v0.0.2", - "version": "0.0.2", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/typescript-react-native-compiler", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Mon, 08 Nov 2021 10:20:15 GMT", - "tag": "@rnx-kit/typescript-react-native-compiler_v0.0.2", - "version": "0.0.2", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/typescript-react-native-compiler", - "commit": "62e605f399f6c0817054a16d7e398d9876d9bbc2", - "comment": "Re-align dependencies to make Beachball happy" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 19:44:16 GMT", - "tag": "@rnx-kit/typescript-react-native-compiler_v0.0.2", - "version": "0.0.2", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/typescript-react-native-compiler", - "commit": "53609bb80f9556c390d4cff0040adbe75aa5c1bb", - "comment": "Create the typescript-react-native-compiler package" - }, - { - "author": "beachball", - "package": "@rnx-kit/typescript-react-native-compiler", - "comment": "Bump @rnx-kit/tools-language to v1.2.4", - "commit": "53609bb80f9556c390d4cff0040adbe75aa5c1bb" - }, - { - "author": "beachball", - "package": "@rnx-kit/typescript-react-native-compiler", - "comment": "Bump @rnx-kit/tools-node to v1.2.4", - "commit": "53609bb80f9556c390d4cff0040adbe75aa5c1bb" - }, - { - "author": "beachball", - "package": "@rnx-kit/typescript-react-native-compiler", - "comment": "Bump @rnx-kit/typescript-react-native-resolver to v0.0.5", - "commit": "53609bb80f9556c390d4cff0040adbe75aa5c1bb" - }, - { - "author": "beachball", - "package": "@rnx-kit/typescript-react-native-compiler", - "comment": "Bump @rnx-kit/typescript-service to v1.4.3", - "commit": "53609bb80f9556c390d4cff0040adbe75aa5c1bb" - } - ] - } - } - ] -} diff --git a/packages/typescript-react-native-resolver/CHANGELOG.json b/packages/typescript-react-native-resolver/CHANGELOG.json deleted file mode 100644 index 4eedb68a1..000000000 --- a/packages/typescript-react-native-resolver/CHANGELOG.json +++ /dev/null @@ -1,175 +0,0 @@ -{ - "name": "@rnx-kit/typescript-react-native-resolver", - "entries": [ - { - "date": "Tue, 30 Nov 2021 17:24:14 GMT", - "tag": "@rnx-kit/typescript-react-native-resolver_v0.1.3", - "version": "0.1.3", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/typescript-react-native-resolver", - "comment": "Bump @rnx-kit/tools-node to v1.2.6", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - } - ] - } - }, - { - "date": "Fri, 19 Nov 2021 16:08:47 GMT", - "tag": "@rnx-kit/typescript-react-native-resolver_v0.1.2", - "version": "0.1.2", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/typescript-react-native-resolver", - "commit": "0654e1e1433ba6ae20f5696aa78529e0c0d6e415", - "comment": "When modifying a TypeScript host, only change trace() when logging is enabled. Also, when changing file/directory APIs, bind the original calls to the host so that the 'this' reference is set properly." - } - ] - } - }, - { - "date": "Thu, 18 Nov 2021 20:51:05 GMT", - "tag": "@rnx-kit/typescript-react-native-resolver_v0.1.1", - "version": "0.1.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/typescript-react-native-resolver", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ], - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/typescript-react-native-resolver", - "comment": "Bump @rnx-kit/tools-node to v1.2.5", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 21:11:31 GMT", - "tag": "@rnx-kit/typescript-react-native-resolver_v0.1.0", - "version": "0.1.0", - "comments": { - "minor": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/typescript-react-native-resolver", - "commit": "f75a209043f131e09b32b8783bf912a8c14f26f7", - "comment": "Update the CLI's Metro/TS integration to use the new, generalized resolver in @rnx-kit/typescript-react-native-resolver. Remove the unneeded \"default\" resolver." - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/typescript-react-native-resolver_v0.0.5", - "version": "0.0.5", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/typescript-react-native-resolver", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/typescript-react-native-resolver_v0.0.5", - "version": "0.0.5", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/typescript-react-native-resolver", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 19:44:16 GMT", - "tag": "@rnx-kit/typescript-react-native-resolver_v0.0.5", - "version": "0.0.5", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/typescript-react-native-resolver", - "commit": "53609bb80f9556c390d4cff0040adbe75aa5c1bb", - "comment": "update package dependencies" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 19:24:49 GMT", - "tag": "@rnx-kit/typescript-react-native-resolver_v0.0.4", - "version": "0.0.4", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/typescript-react-native-resolver", - "comment": "Bump @rnx-kit/tools-node to v1.2.4", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 07:33:42 GMT", - "tag": "@rnx-kit/typescript-react-native-resolver_v0.0.3", - "version": "0.0.3", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/typescript-react-native-resolver", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81", - "comment": "Use regex test method instead of match." - }, - { - "author": "beachball", - "package": "@rnx-kit/typescript-react-native-resolver", - "comment": "Bump @rnx-kit/tools-node to v1.2.3", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - } - ] - } - }, - { - "date": "Thu, 04 Nov 2021 22:26:34 GMT", - "tag": "@rnx-kit/typescript-react-native-resolver_v0.0.2", - "version": "0.0.2", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/typescript-react-native-resolver", - "commit": "fba0df37b18c9f1807d50ac9bae6071742067ea0", - "comment": "Create the typescript-react-native-resolver package" - }, - { - "author": "beachball", - "package": "@rnx-kit/typescript-react-native-resolver", - "comment": "Bump @rnx-kit/tools-node to v1.2.2", - "commit": "fba0df37b18c9f1807d50ac9bae6071742067ea0" - } - ] - } - } - ] -} diff --git a/packages/typescript-service/CHANGELOG.json b/packages/typescript-service/CHANGELOG.json deleted file mode 100644 index 38b16f1be..000000000 --- a/packages/typescript-service/CHANGELOG.json +++ /dev/null @@ -1,624 +0,0 @@ -{ - "name": "@rnx-kit/typescript-service", - "entries": [ - { - "date": "Tue, 30 Nov 2021 17:24:14 GMT", - "tag": "@rnx-kit/typescript-service_v1.5.3", - "version": "1.5.3", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/typescript-service", - "comment": "Bump @rnx-kit/tools-node to v1.2.6", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - } - ] - } - }, - { - "date": "Fri, 19 Nov 2021 16:08:47 GMT", - "tag": "@rnx-kit/typescript-service_v1.5.2", - "version": "1.5.2", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/typescript-service", - "commit": "0654e1e1433ba6ae20f5696aa78529e0c0d6e415", - "comment": "Don't format/print \"suggestion\" diagnostics. Doing so hits an internal debug assert in TypeScript." - } - ] - } - }, - { - "date": "Thu, 18 Nov 2021 20:51:05 GMT", - "tag": "@rnx-kit/typescript-service_v1.5.1", - "version": "1.5.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/typescript-service", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465", - "comment": "Replace just-scripts with something that is easier to debug and make changes to." - } - ], - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/typescript-service", - "comment": "Bump @rnx-kit/tools-node to v1.2.5", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 21:11:31 GMT", - "tag": "@rnx-kit/typescript-service_v1.5.0", - "version": "1.5.0", - "comments": { - "minor": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/typescript-service", - "commit": "f75a209043f131e09b32b8783bf912a8c14f26f7", - "comment": "Update the CLI's Metro/TS integration to use the new, generalized resolver in @rnx-kit/typescript-react-native-resolver. Remove the unneeded \"default\" resolver." - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:57 GMT", - "tag": "@rnx-kit/typescript-service_v1.4.3", - "version": "1.4.3", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/typescript-service", - "commit": "not available", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Tue, 09 Nov 2021 19:26:33 GMT", - "tag": "@rnx-kit/typescript-service_v1.4.3", - "version": "1.4.3", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/typescript-service", - "commit": "83db2a2f3de04ec602286f6c67dea16977e2828a", - "comment": "Renamed rnx-kit-scripts package to @rnx-kit/scripts to prevent hijacking" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 19:24:49 GMT", - "tag": "@rnx-kit/typescript-service_v1.4.3", - "version": "1.4.3", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/typescript-service", - "comment": "Bump @rnx-kit/tools-node to v1.2.4", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 07:33:42 GMT", - "tag": "@rnx-kit/typescript-service_v1.4.2", - "version": "1.4.2", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/typescript-service", - "comment": "Bump @rnx-kit/tools-node to v1.2.3", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - } - ] - } - }, - { - "date": "Wed, 03 Nov 2021 18:15:39 GMT", - "tag": "@rnx-kit/typescript-service_v1.4.1", - "version": "1.4.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/typescript-service", - "comment": "Bump @rnx-kit/tools-node to v1.2.2", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - } - ] - } - }, - { - "date": "Mon, 01 Nov 2021 15:07:43 GMT", - "tag": "@rnx-kit/typescript-service_v1.4.0", - "version": "1.4.0", - "comments": { - "minor": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/typescript-service", - "commit": "a45168c5c37cde1565d91cf6b4f7f24e50696a0e", - "comment": "Refactor typescript-service API to make it more flexible for use in other projects/packages." - }, - { - "author": "beachball", - "package": "@rnx-kit/typescript-service", - "comment": "Bump @rnx-kit/tools-node to v1.2.1", - "commit": "a45168c5c37cde1565d91cf6b4f7f24e50696a0e" - } - ] - } - }, - { - "date": "Mon, 01 Nov 2021 13:46:13 GMT", - "tag": "@rnx-kit/typescript-service_v1.3.10", - "version": "1.3.10", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/typescript-service", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb", - "comment": "Normalize main and types fields across all packages which use them." - }, - { - "author": "beachball", - "package": "@rnx-kit/typescript-service", - "comment": "Bump @rnx-kit/tools-node to v1.2.1", - "commit": "b4558421f2dd05b05e9460cb81332d702f1addcb" - } - ] - } - }, - { - "date": "Sat, 30 Oct 2021 07:50:51 GMT", - "tag": "@rnx-kit/typescript-service_v1.3.9", - "version": "1.3.9", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/typescript-service", - "comment": "Bump @rnx-kit/tools-node to v1.2.0", - "commit": "6133f8fe0298611e4c736e94b46f32752d139e76" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 12:14:31 GMT", - "tag": "@rnx-kit/typescript-service_v1.3.8", - "version": "1.3.8", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/typescript-service", - "comment": "Bump @rnx-kit/tools-node to v1.1.6", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 10:31:10 GMT", - "tag": "@rnx-kit/typescript-service_v1.3.7", - "version": "1.3.7", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/typescript-service", - "comment": "Bump @rnx-kit/tools-node to v1.1.5", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 09:04:42 GMT", - "tag": "@rnx-kit/typescript-service_v1.3.6", - "version": "1.3.6", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/typescript-service", - "commit": "5361bf5151fb8f8ad2aaa35989a7c80be1c59aa3", - "comment": "Prefer named exports" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 08:51:30 GMT", - "tag": "@rnx-kit/typescript-service_v1.3.6", - "version": "1.3.6", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/typescript-service", - "comment": "Bump @rnx-kit/tools-node to v1.1.4", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - } - ] - } - }, - { - "date": "Wed, 08 Sep 2021 06:42:50 GMT", - "tag": "@rnx-kit/typescript-service_v1.3.5", - "version": "1.3.5", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/typescript-service", - "comment": "Use repo Jest preset", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3" - }, - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/typescript-service", - "commit": "01595b237b2d2c44857385bed84f7bd752e434b3", - "comment": "Bump @rnx-kit/typescript-service to v1.3.5" - } - ] - } - }, - { - "date": "Fri, 03 Sep 2021 12:18:30 GMT", - "tag": "@rnx-kit/typescript-service_v1.3.5", - "version": "1.3.5", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/typescript-service", - "commit": "ced0ef438232d91f7fa527f51e23e6da9e7dbf2c", - "comment": "Bump @rnx-kit/typescript-service to v1.3.5" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 07:00:17 GMT", - "tag": "@rnx-kit/typescript-service_v1.3.4", - "version": "1.3.4", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/typescript-service", - "commit": "0eecc568dd8ff556cd3964772c614cbbf7eefb98", - "comment": "Bump @rnx-kit/typescript-service to v1.3.4" - } - ] - } - }, - { - "date": "Tue, 31 Aug 2021 06:43:13 GMT", - "tag": "@rnx-kit/typescript-service_v1.3.4", - "version": "1.3.4", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/typescript-service", - "commit": "25b936b3786f2a37dc6feacb4034e6afb56e343b", - "comment": "Bump @rnx-kit/typescript-service to v1.3.4" - } - ] - } - }, - { - "date": "Fri, 27 Aug 2021 18:41:43 GMT", - "tag": "@rnx-kit/typescript-service_v1.3.3", - "version": "1.3.3", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/typescript-service", - "commit": "dcb826baf0cc3705b460776bdb31e19930f4f2dc", - "comment": "Bump @rnx-kit/typescript-service to v1.3.3" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 08:52:48 GMT", - "tag": "@rnx-kit/typescript-service_v1.3.2", - "version": "1.3.2", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/typescript-service", - "commit": "0e657ab7ff261ebf6873ef7418cbb40d6418ca8e", - "comment": "Bump @rnx-kit/typescript-service to v1.3.2" - } - ] - } - }, - { - "date": "Wed, 25 Aug 2021 07:32:57 GMT", - "tag": "@rnx-kit/typescript-service_v1.3.1", - "version": "1.3.1", - "comments": { - "patch": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/typescript-service", - "commit": "b8093ce5af4bcdad1b2d91b45da54ee640fab8ae", - "comment": "Bump @rnx-kit/typescript-service to v1.3.1" - } - ] - } - }, - { - "date": "Tue, 24 Aug 2021 08:09:36 GMT", - "tag": "@rnx-kit/typescript-service_v1.3.0", - "version": "1.3.0", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/typescript-service", - "commit": "ccf242e997e1b399f3dc7253f36e5639a3e64036", - "comment": "Bump @rnx-kit/typescript-service to v1.3.0" - } - ] - } - }, - { - "date": "Mon, 23 Aug 2021 17:40:48 GMT", - "tag": "@rnx-kit/typescript-service_v1.3.0", - "version": "1.3.0", - "comments": { - "minor": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/typescript-service", - "comment": "Update Service, Project and Resolver APIs in support of TypeScript validation for Metro.", - "commit": "44540aa06df3f7ec554caf13bad7acd16a74a381" - } - ] - } - }, - { - "date": "Fri, 06 Aug 2021 17:50:49 GMT", - "tag": "@rnx-kit/typescript-service_v1.2.0", - "version": "1.2.0", - "comments": { - "minor": [ - { - "author": "afoxman@microsoft.com", - "package": "@rnx-kit/typescript-service", - "comment": "Add a custom write function for redirecting diagnostic output.", - "commit": "97ec3dcb6845ec8b7e766d1916ed61728b80ef86" - } - ] - } - }, - { - "date": "Wed, 04 Aug 2021 10:08:23 GMT", - "tag": "@rnx-kit/typescript-service_v1.1.2", - "version": "1.1.2", - "comments": { - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/typescript-service", - "commit": "1d13d5df2ec61bb3426521199cde4e588cb849b1", - "comment": "Bump @rnx-kit/typescript-service to v1.1.2" - } - ] - } - }, - { - "date": "Thu, 29 Jul 2021 19:42:04 GMT", - "tag": "@rnx-kit/typescript-service_v1.1.1", - "version": "1.1.1", - "comments": { - "none": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/typescript-service", - "comment": "Replace @rnx-kit/babel-preset-jest-typescript with @rnx-kit/jest-preset", - "commit": "bf6cf5092d383a447d0075fcf4f2584bbb347236" - } - ], - "patch": [ - { - "author": "4123478+tido64@users.noreply.github.com", - "package": "@rnx-kit/typescript-service", - "commit": "bf6cf5092d383a447d0075fcf4f2584bbb347236", - "comment": "Bump @rnx-kit/typescript-service to v1.1.1" - } - ] - } - }, - { - "date": "Tue, 13 Jul 2021 17:03:23 GMT", - "tag": "@rnx-kit/typescript-service_v1.1.0", - "version": "1.1.0", - "comments": { - "minor": [ - { - "comment": "Separate Project methods into \"find\" and \"open\", allowing caller to decide on the appropriate error-handling logic. Add filtering when validating Project files -- 0nly include ts[x] unless checkJs is enabled. Make cache methods return a true/false result, moving error-handling up and out to the caller (Project). Stop converting to lowercase during path normalization, as this confuses typescript.", - "author": "afoxman@microsoft.com", - "commit": "a95b353ad91c18ed040cff23079edcc489645ca1", - "package": "@rnx-kit/typescript-service" - } - ] - } - }, - { - "date": "Mon, 12 Jul 2021 09:53:10 GMT", - "tag": "@rnx-kit/typescript-service_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "comment": "Added `lint` script", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "d5c36bb21e3482c24ff8b029cb60802d04e6bb64", - "package": "@rnx-kit/typescript-service" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:45 GMT", - "tag": "@rnx-kit/typescript-service_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "comment": "Added `format` script", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "eaedb2cae443a479e131cfd71fab5c1039daca9d", - "package": "@rnx-kit/typescript-service" - } - ] - } - }, - { - "date": "Sat, 10 Jul 2021 07:28:25 GMT", - "tag": "@rnx-kit/typescript-service_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "comment": "Added `format` script", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "12196abcec79794493615829c3783d35f5bfc364", - "package": "@rnx-kit/typescript-service" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:47 GMT", - "tag": "@rnx-kit/typescript-service_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "comment": "Add badges for build status and version", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "2dc9fe456410eed10abbfa464ae7aa7e5cef7aef", - "package": "@rnx-kit/typescript-service" - } - ] - } - }, - { - "date": "Fri, 09 Jul 2021 12:23:07 GMT", - "tag": "@rnx-kit/typescript-service_v1.0.2", - "version": "1.0.2", - "comments": { - "none": [ - { - "comment": "Add badges for build status and version", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "f3ff6e5f5c20cf9e8c81ca25a4fae3f483925c59", - "package": "@rnx-kit/typescript-service" - } - ] - } - }, - { - "date": "Thu, 08 Jul 2021 09:26:30 GMT", - "tag": "@rnx-kit/typescript-service_v1.0.2", - "version": "1.0.2", - "comments": { - "patch": [ - { - "comment": "Add missing exports in typescript-service", - "author": "afoxman@microsoft.com", - "commit": "dc1565a9c099dfb9fb336aec69ad41ecf05e0a8e", - "package": "@rnx-kit/typescript-service" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 17:39:16 GMT", - "tag": "@rnx-kit/typescript-service_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "comment": "Bumped @types/node to 14.17.4", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "41bc87cda7c7c74084abf9f3f8039b0b670ab6ba", - "package": "@rnx-kit/typescript-service" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 17:38:46 GMT", - "tag": "@rnx-kit/typescript-service_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "comment": "Bumped @types/node to 14.17.4", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "c630c871d6747cb6631070f6f8ccba8d8933b353", - "package": "@rnx-kit/typescript-service" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 09:28:25 GMT", - "tag": "@rnx-kit/typescript-service_v1.0.1", - "version": "1.0.1", - "comments": { - "none": [ - { - "comment": "Added ESLint config", - "author": "4123478+tido64@users.noreply.github.com", - "commit": "4701f7a40c050f8d376fbcfc84ce6e50f5fcf501", - "package": "@rnx-kit/typescript-service" - } - ] - } - }, - { - "date": "Wed, 23 Jun 2021 07:30:22 GMT", - "tag": "@rnx-kit/typescript-service_v1.0.1", - "version": "1.0.1", - "comments": { - "patch": [ - { - "comment": "Add a new package for using TypeScript language services", - "author": "afoxman@microsoft.com", - "commit": "167081c3c6c2ef84c461b420a9875184358a8ded", - "package": "@rnx-kit/typescript-service" - } - ] - } - } - ] -} diff --git a/scripts/CHANGELOG.json b/scripts/CHANGELOG.json deleted file mode 100644 index b68f58966..000000000 --- a/scripts/CHANGELOG.json +++ /dev/null @@ -1,125 +0,0 @@ -{ - "name": "@rnx-kit/scripts", - "entries": [ - { - "date": "Tue, 30 Nov 2021 17:24:14 GMT", - "tag": "@rnx-kit/scripts_v1.0.0", - "version": "1.0.0", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/scripts", - "comment": "Bump @rnx-kit/golang to v0.1.8", - "commit": "0143911ce2ded7b06469c70510ef24d939a33bc0" - } - ] - } - }, - { - "date": "Thu, 18 Nov 2021 20:51:05 GMT", - "tag": "@rnx-kit/scripts_v1.0.0", - "version": "1.0.0", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "@rnx-kit/scripts", - "comment": "Bump @rnx-kit/golang to v0.1.7", - "commit": "856118d45ba9f4bf4cf8dabffe1a152229688465" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 19:24:49 GMT", - "tag": "rnx-kit-scripts_v0.1.1", - "version": "0.1.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "rnx-kit-scripts", - "comment": "Bump @rnx-kit/golang to v0.1.6", - "commit": "103d8c85f90a43985b56aa0364c9d568bcf56b05" - } - ] - } - }, - { - "date": "Fri, 05 Nov 2021 07:33:42 GMT", - "tag": "rnx-kit-scripts_v0.1.1", - "version": "0.1.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "rnx-kit-scripts", - "comment": "Bump @rnx-kit/golang to v0.1.5", - "commit": "52adbb5f16d429cd38d8ec12a7b47dea357fdd81" - } - ] - } - }, - { - "date": "Wed, 03 Nov 2021 18:15:39 GMT", - "tag": "rnx-kit-scripts_v0.1.1", - "version": "0.1.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "rnx-kit-scripts", - "comment": "Bump @rnx-kit/golang to v0.1.4", - "commit": "acebdc3d387fc38e11b487736e1d7ba065131f1d" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 12:14:31 GMT", - "tag": "rnx-kit-scripts_v0.1.1", - "version": "0.1.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "rnx-kit-scripts", - "comment": "Bump @rnx-kit/golang to v0.1.3", - "commit": "8b9c88041612fcd365898c087cf6da4344dd3ffa" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 10:31:10 GMT", - "tag": "rnx-kit-scripts_v0.1.1", - "version": "0.1.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "rnx-kit-scripts", - "comment": "Bump @rnx-kit/golang to v0.1.2", - "commit": "0c7c668b4041ec34c1a86ed3d33879b7c222a584" - } - ] - } - }, - { - "date": "Fri, 29 Oct 2021 08:51:30 GMT", - "tag": "rnx-kit-scripts_v0.1.1", - "version": "0.1.1", - "comments": { - "patch": [ - { - "author": "beachball", - "package": "rnx-kit-scripts", - "comment": "Bump @rnx-kit/golang to v0.1.1", - "commit": "04ebb242c7c48691ff4ffb84a6c508def06e42f7" - } - ] - } - } - ] -} diff --git a/yarn.lock b/yarn.lock index 098c5ddae..62ead34ec 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1097,7 +1097,7 @@ pirates "^4.0.0" source-map-support "^0.5.16" -"@babel/runtime@^7.0.0", "@babel/runtime@^7.12.5", "@babel/runtime@^7.8.4": +"@babel/runtime@^7.0.0", "@babel/runtime@^7.10.4", "@babel/runtime@^7.12.5", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.4": version "7.16.3" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.16.3.tgz#b86f0db02a04187a3c17caa77de69840165d42d5" integrity sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ== @@ -1141,6 +1141,190 @@ resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== +"@changesets/apply-release-plan@^5.0.2": + version "5.0.2" + resolved "https://registry.yarnpkg.com/@changesets/apply-release-plan/-/apply-release-plan-5.0.2.tgz#8abcbbce338a0ac10d67b1cc777b0b893b452198" + integrity sha512-grNaIzOjAd34VV5493hyL7a9Y5P2v0dLXWaSfcUUIREemzkkpuVtsqAQRtot2JIjOcpGMyTn3tnaMpErJ1ZByw== + dependencies: + "@babel/runtime" "^7.10.4" + "@changesets/config" "^1.6.2" + "@changesets/get-version-range-type" "^0.3.2" + "@changesets/git" "^1.2.0" + "@changesets/types" "^4.0.1" + "@manypkg/get-packages" "^1.0.1" + detect-indent "^6.0.0" + fs-extra "^7.0.1" + lodash.startcase "^4.4.0" + outdent "^0.5.0" + prettier "^1.19.1" + resolve-from "^5.0.0" + semver "^5.4.1" + +"@changesets/assemble-release-plan@^5.0.2": + version "5.0.2" + resolved "https://registry.yarnpkg.com/@changesets/assemble-release-plan/-/assemble-release-plan-5.0.2.tgz#81063d2e01f967851063f5689f80374aa35175e9" + integrity sha512-4Q7w0ZeeNCv6sxUywL2bc8D2id9nyq2SB0LK+WY6ocg9/m4b3giKcbcGYxczgFbJvdcgxowqXPPAyETI9RpqBg== + dependencies: + "@babel/runtime" "^7.10.4" + "@changesets/errors" "^0.1.4" + "@changesets/get-dependents-graph" "^1.2.3" + "@changesets/types" "^4.0.1" + "@manypkg/get-packages" "^1.0.1" + semver "^5.4.1" + +"@changesets/cli@^2.18.0": + version "2.18.0" + resolved "https://registry.yarnpkg.com/@changesets/cli/-/cli-2.18.0.tgz#662e27c78897cf948ca61177df9c915d750b8221" + integrity sha512-WJj0g0BvTxsVfAnHJrOTORRTTP6CG5yT4gxVGW3og8B1SquEwL3KhIXIbpA+o3BnkBlm/hRoIrkRivrgX7GOJA== + dependencies: + "@babel/runtime" "^7.10.4" + "@changesets/apply-release-plan" "^5.0.2" + "@changesets/assemble-release-plan" "^5.0.2" + "@changesets/config" "^1.6.2" + "@changesets/errors" "^0.1.4" + "@changesets/get-dependents-graph" "^1.2.3" + "@changesets/get-release-plan" "^3.0.2" + "@changesets/git" "^1.2.0" + "@changesets/logger" "^0.0.5" + "@changesets/pre" "^1.0.7" + "@changesets/read" "^0.5.1" + "@changesets/types" "^4.0.1" + "@changesets/write" "^0.1.5" + "@manypkg/get-packages" "^1.0.1" + "@types/semver" "^6.0.0" + boxen "^1.3.0" + chalk "^2.1.0" + enquirer "^2.3.0" + external-editor "^3.1.0" + fs-extra "^7.0.1" + human-id "^1.0.2" + is-ci "^2.0.0" + meow "^6.0.0" + outdent "^0.5.0" + p-limit "^2.2.0" + preferred-pm "^3.0.0" + semver "^5.4.1" + spawndamnit "^2.0.0" + term-size "^2.1.0" + tty-table "^2.8.10" + +"@changesets/config@^1.6.2": + version "1.6.2" + resolved "https://registry.yarnpkg.com/@changesets/config/-/config-1.6.2.tgz#42ade5ec516560e33698f207804b3560223ea334" + integrity sha512-CJV71tDz/A4TmpyYRIdT4pwGg0GWuem7ahNR01VnOHhmXoXFbXrISX1TYGYo611N7vO9RQHmV8cnhmlHU0LlNA== + dependencies: + "@changesets/errors" "^0.1.4" + "@changesets/get-dependents-graph" "^1.2.3" + "@changesets/logger" "^0.0.5" + "@changesets/types" "^4.0.1" + "@manypkg/get-packages" "^1.0.1" + fs-extra "^7.0.1" + micromatch "^4.0.2" + +"@changesets/errors@^0.1.4": + version "0.1.4" + resolved "https://registry.yarnpkg.com/@changesets/errors/-/errors-0.1.4.tgz#f79851746c43679a66b383fdff4c012f480f480d" + integrity sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q== + dependencies: + extendable-error "^0.1.5" + +"@changesets/get-dependents-graph@^1.2.3": + version "1.2.3" + resolved "https://registry.yarnpkg.com/@changesets/get-dependents-graph/-/get-dependents-graph-1.2.3.tgz#593c292cd4a1543606817d818f0d8c753ac26411" + integrity sha512-+Fyf+L+4rck9au5zIZcIJX+8zBMGRdgZwD5DGGt37hP011R/46fahnpJ6imNB9cV+HTMNX/QMAFrkWqt1hy73A== + dependencies: + "@changesets/types" "^4.0.1" + "@manypkg/get-packages" "^1.0.1" + chalk "^2.1.0" + fs-extra "^7.0.1" + semver "^5.4.1" + +"@changesets/get-release-plan@^3.0.2": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@changesets/get-release-plan/-/get-release-plan-3.0.2.tgz#7e5b264838032b226263f8bfeff4706c255f6d4f" + integrity sha512-jAWHQfaDOUKEcrnx6GZyYM7oKmbI+vQ+wbYowIeYpiojprQC0P7I6asbzk4fpGM2xyzP4EjRMErRGH91VVzBSg== + dependencies: + "@babel/runtime" "^7.10.4" + "@changesets/assemble-release-plan" "^5.0.2" + "@changesets/config" "^1.6.2" + "@changesets/pre" "^1.0.7" + "@changesets/read" "^0.5.1" + "@changesets/types" "^4.0.1" + "@manypkg/get-packages" "^1.0.1" + +"@changesets/get-version-range-type@^0.3.2": + version "0.3.2" + resolved "https://registry.yarnpkg.com/@changesets/get-version-range-type/-/get-version-range-type-0.3.2.tgz#8131a99035edd11aa7a44c341cbb05e668618c67" + integrity sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg== + +"@changesets/git@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@changesets/git/-/git-1.2.0.tgz#9b6c4bcf101ecf2f870df6771bb1ca12d863984e" + integrity sha512-9EM+04/6TIImnNTgagxrwtimITtHEDaBYKubPPA6WDzd+KiTOf9g7i/6aUhhdwbwqQQfPAn5gzgfFB0KvwEHeA== + dependencies: + "@babel/runtime" "^7.10.4" + "@changesets/errors" "^0.1.4" + "@changesets/types" "^4.0.1" + "@manypkg/get-packages" "^1.0.1" + is-subdir "^1.1.1" + spawndamnit "^2.0.0" + +"@changesets/logger@^0.0.5": + version "0.0.5" + resolved "https://registry.yarnpkg.com/@changesets/logger/-/logger-0.0.5.tgz#68305dd5a643e336be16a2369cb17cdd8ed37d4c" + integrity sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw== + dependencies: + chalk "^2.1.0" + +"@changesets/parse@^0.3.9": + version "0.3.9" + resolved "https://registry.yarnpkg.com/@changesets/parse/-/parse-0.3.9.tgz#c518792b05f15ab418d58dc1cea81601556e845e" + integrity sha512-XoTEkMpvRRVxSlhvOaK4YSFM+RZhYFTksxRh7ieNkb6pMxkpq8MOYSi/07BuqkODn4dJEMOoSy3RzL99P6FyqA== + dependencies: + "@changesets/types" "^4.0.1" + js-yaml "^3.13.1" + +"@changesets/pre@^1.0.7": + version "1.0.7" + resolved "https://registry.yarnpkg.com/@changesets/pre/-/pre-1.0.7.tgz#caf6430c90b8ac6d58c9cd90a19558ab06b19b88" + integrity sha512-oUU6EL4z0AIyCv/EscQFxxJsQfc9/AcSpqAGbdZrLXwshUWTXsJHMWlE3/+iSIyQ+I+/xtxbBxnqDUpUU3TOOg== + dependencies: + "@babel/runtime" "^7.10.4" + "@changesets/errors" "^0.1.4" + "@changesets/types" "^4.0.1" + "@manypkg/get-packages" "^1.0.1" + fs-extra "^7.0.1" + +"@changesets/read@^0.5.1": + version "0.5.1" + resolved "https://registry.yarnpkg.com/@changesets/read/-/read-0.5.1.tgz#89635bf2b84e5fd5d49e1d685adb9c47b5e679a1" + integrity sha512-QJ3rVS+L0Y3yLk3cAOglNh4tuMUfQl8cJjyAnNnJHS9nCXZUiZjYiJc+34XpZT5vUb+4+0FY1wWtzlkAKuLR2g== + dependencies: + "@babel/runtime" "^7.10.4" + "@changesets/git" "^1.2.0" + "@changesets/logger" "^0.0.5" + "@changesets/parse" "^0.3.9" + "@changesets/types" "^4.0.1" + chalk "^2.1.0" + fs-extra "^7.0.1" + p-filter "^2.1.0" + +"@changesets/types@^4.0.1": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@changesets/types/-/types-4.0.1.tgz#85cf3cc32baff0691112d9d15fc21fbe022c9f0a" + integrity sha512-zVfv752D8K2tjyFmxU/vnntQ+dPu+9NupOSguA/2Zuym4tVxRh0ylArgKZ1bOAi2eXfGlZMxJU/kj7uCSI15RQ== + +"@changesets/write@^0.1.5": + version "0.1.5" + resolved "https://registry.yarnpkg.com/@changesets/write/-/write-0.1.5.tgz#97574d95c8e48c3bbb1173802672f9a64d1b7fef" + integrity sha512-AYVSCH7on/Cyzo/8lVfqlsXmyKl3JhbNu9yHApdLPhHAzv5wqoHiZlMDkmd+AA67SRqzK2lDs4BcIojK+uWeIA== + dependencies: + "@babel/runtime" "^7.10.4" + "@changesets/types" "^4.0.1" + fs-extra "^7.0.1" + human-id "^1.0.2" + prettier "^1.19.1" + "@cnakazawa/watch@^1.0.3": version "1.0.4" resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a" @@ -1429,6 +1613,28 @@ "@types/yargs" "^16.0.0" chalk "^4.0.0" +"@manypkg/find-root@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@manypkg/find-root/-/find-root-1.1.0.tgz#a62d8ed1cd7e7d4c11d9d52a8397460b5d4ad29f" + integrity sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA== + dependencies: + "@babel/runtime" "^7.5.5" + "@types/node" "^12.7.1" + find-up "^4.1.0" + fs-extra "^8.1.0" + +"@manypkg/get-packages@^1.0.1": + version "1.1.3" + resolved "https://registry.yarnpkg.com/@manypkg/get-packages/-/get-packages-1.1.3.tgz#e184db9bba792fa4693de4658cfb1463ac2c9c47" + integrity sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A== + dependencies: + "@babel/runtime" "^7.5.5" + "@changesets/types" "^4.0.1" + "@manypkg/find-root" "^1.1.0" + fs-extra "^8.1.0" + globby "^11.0.0" + read-yaml-file "^1.1.0" + "@microsoft/task-scheduler@^2.7.1": version "2.7.1" resolved "https://registry.yarnpkg.com/@microsoft/task-scheduler/-/task-scheduler-2.7.1.tgz#de2ebe6edb7ed882511051301f0e6f81732d7564" @@ -2182,6 +2388,11 @@ resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz#1001cc5e6a3704b83c236027e77f2f58ea010f40" integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ== +"@types/minimist@^1.2.0": + version "1.2.2" + resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.2.tgz#ee771e2ba4b3dc5b372935d549fd9617bf345b8c" + integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ== + "@types/node-fetch@^2.5.0": version "2.5.9" resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.5.9.tgz#c04a12115aa436f189e39579272b305e477621b4" @@ -2200,6 +2411,16 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-10.17.13.tgz#ccebcdb990bd6139cd16e84c39dc2fb1023ca90c" integrity sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg== +"@types/node@^12.7.1": + version "12.20.37" + resolved "https://registry.yarnpkg.com/@types/node/-/node-12.20.37.tgz#abb38afa9d6e8a2f627a8cb52290b3c80fbe61ed" + integrity sha512-i1KGxqcvJaLQali+WuypQnXwcplhtNtjs66eNsZpp2P2FL/trJJxx/VWsM0YCL2iMoIJrbXje48lvIQAQ4p2ZA== + +"@types/normalize-package-data@^2.4.0": + version "2.4.1" + resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" + integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== + "@types/parse-json@^4.0.0": version "4.0.0" resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" @@ -2255,6 +2476,11 @@ resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.1.tgz#18845205e86ff0038517aab7a18a62a6b9f71275" integrity sha512-EaCxbanVeyxDRTQBkdLb3Bvl/HK7PBK6UJjsSixB0iHKoWxE5uu2Q/DgtpOhPIojN0Zl1whvOd7PoHs2P0s5eA== +"@types/semver@^6.0.0": + version "6.2.3" + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-6.2.3.tgz#5798ecf1bec94eaa64db39ee52808ec0693315aa" + integrity sha512-KQf+QAMWKMrtBMsB8/24w53tEsxllMj6TuA80TT/5igJalLI/zm0L3oXRbIAl4Ohfc85gyHX/jhMwsVkmhLU4A== + "@types/semver@^7.0.0": version "7.3.9" resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.9.tgz#152c6c20a7688c30b967ec1841d31ace569863fc" @@ -2517,6 +2743,13 @@ anser@^1.4.9: resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.10.tgz#befa3eddf282684bd03b63dcda3927aef8c2e35b" integrity sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww== +ansi-align@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" + integrity sha1-w2rsy6VjuJzrVW82kPCx2eNUf38= + dependencies: + string-width "^2.0.0" + ansi-colors@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" @@ -2690,6 +2923,11 @@ array.prototype.flatmap@^1.2.5: define-properties "^1.1.3" es-abstract "^1.19.0" +arrify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" + integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= + arrify@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa" @@ -3006,32 +3244,18 @@ base64-js@^1.1.2, base64-js@^1.3.1, base64-js@^1.5.1: resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== -beachball@^2.2.0: - version "2.20.0" - resolved "https://registry.yarnpkg.com/beachball/-/beachball-2.20.0.tgz#7fe55e7d86c9c890de15474c84f6a32653bdb6ca" - integrity sha512-vVdF6qDDurO66GZigUtqKuXzQM8ImlG7MgN5iTj9rvZ4RM6vy+nklu0EmqaQtqS5K6hZ4WrHDwgcR/kLa0VHpA== - dependencies: - cosmiconfig "^6.0.0" - execa "^4.0.3" - fs-extra "^8.0.1" - git-url-parse "^11.1.2" - glob "^7.1.4" - human-id "^2.0.1" - lodash "^4.17.15" - minimatch "^3.0.4" - p-limit "^3.0.2" - prompts "~2.1.0" - semver "^6.1.1" - toposort "^2.0.2" - uuid "^8.3.1" - workspace-tools "^0.16.2" - yargs-parser "^20.2.4" - before-after-hook@^2.2.0: version "2.2.1" resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.2.1.tgz#73540563558687586b52ed217dad6a802ab1549c" integrity sha512-/6FKxSTWoJdbsLDF8tdIjaRiFXiE6UHsEHE3OPI/cwPURCVi1ukP0gmLn7XWEiFk5TcwQjjY5PWsU+j+tgXgmw== +better-path-resolve@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/better-path-resolve/-/better-path-resolve-1.0.0.tgz#13a35a1104cdd48a7b74bf8758f96a1ee613f99d" + integrity sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g== + dependencies: + is-windows "^1.0.0" + big-integer@^1.6.44: version "1.6.48" resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.48.tgz#8fd88bd1632cba4a1c8c3e3d7159f08bb95b4b9e" @@ -3061,6 +3285,19 @@ bluebird@^3.7.2: resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== +boxen@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" + integrity sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw== + dependencies: + ansi-align "^2.0.0" + camelcase "^4.0.0" + chalk "^2.0.1" + cli-boxes "^1.0.0" + string-width "^2.0.0" + term-size "^1.2.0" + widest-line "^2.0.0" + bplist-creator@0.0.8: version "0.0.8" resolved "https://registry.yarnpkg.com/bplist-creator/-/bplist-creator-0.0.8.tgz#56b2a6e79e9aec3fc33bf831d09347d73794e79c" @@ -3090,6 +3327,13 @@ braces@^3.0.1, braces@~3.0.2: dependencies: fill-range "^7.0.1" +breakword@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/breakword/-/breakword-1.0.5.tgz#fd420a417f55016736b5b615161cae1c8f819810" + integrity sha512-ex5W9DoOQ/LUEU3PMdLs9ua/CYZl1678NUkKOdUSi8Aw5F1idieaiRURCBFJCwVcrD1J8Iy3vfWSloaMwO2qFg== + dependencies: + wcwidth "^1.0.1" + browser-process-hrtime@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" @@ -3181,6 +3425,20 @@ callsites@^3.0.0: resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== +camelcase-keys@^6.2.2: + version "6.2.2" + resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" + integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== + dependencies: + camelcase "^5.3.1" + map-obj "^4.0.0" + quick-lru "^4.0.1" + +camelcase@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" + integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= + camelcase@^5.0.0, camelcase@^5.3.1: version "5.3.1" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" @@ -3203,7 +3461,7 @@ capture-exit@^2.0.0: dependencies: rsvp "^4.8.4" -chalk@^2.0.0, chalk@^2.0.1, chalk@^2.4.2: +chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.2: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== @@ -3212,6 +3470,14 @@ chalk@^2.0.0, chalk@^2.0.1, chalk@^2.4.2: escape-string-regexp "^1.0.5" supports-color "^5.3.0" +chalk@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" + integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" @@ -3225,6 +3491,11 @@ char-regex@^1.0.2: resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== +chardet@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" + integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== + "chokidar@>=2.0.0 <4.0.0", chokidar@^3.2.1: version "3.5.2" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75" @@ -3260,6 +3531,11 @@ cjs-module-lexer@^1.0.0: resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40" integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA== +cli-boxes@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" + integrity sha1-T6kXw+WclKAEzWH47lCdplFocUM= + cli-cursor@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" @@ -3514,6 +3790,15 @@ cp-file@^9.1.0: nested-error-stacks "^2.0.0" p-event "^4.1.0" +cross-spawn@^5.0.1, cross-spawn@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" + integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= + dependencies: + lru-cache "^4.0.1" + shebang-command "^1.2.0" + which "^1.2.9" + cross-spawn@^6.0.0: version "6.0.5" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" @@ -3561,6 +3846,31 @@ csstype@^3.0.2: resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.7.tgz#2a5fb75e1015e84dd15692f71e89a1450290950b" integrity sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g== +csv-generate@^3.4.3: + version "3.4.3" + resolved "https://registry.yarnpkg.com/csv-generate/-/csv-generate-3.4.3.tgz#bc42d943b45aea52afa896874291da4b9108ffff" + integrity sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw== + +csv-parse@^4.16.3: + version "4.16.3" + resolved "https://registry.yarnpkg.com/csv-parse/-/csv-parse-4.16.3.tgz#7ca624d517212ebc520a36873c3478fa66efbaf7" + integrity sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg== + +csv-stringify@^5.6.5: + version "5.6.5" + resolved "https://registry.yarnpkg.com/csv-stringify/-/csv-stringify-5.6.5.tgz#c6d74badda4b49a79bf4e72f91cce1e33b94de00" + integrity sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A== + +csv@^5.3.1: + version "5.5.3" + resolved "https://registry.yarnpkg.com/csv/-/csv-5.5.3.tgz#cd26c1e45eae00ce6a9b7b27dcb94955ec95207d" + integrity sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g== + dependencies: + csv-generate "^3.4.3" + csv-parse "^4.16.3" + csv-stringify "^5.6.5" + stream-transform "^2.1.3" + data-urls@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b" @@ -3589,7 +3899,15 @@ debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.2.0, debug@^4.3.2: dependencies: ms "2.1.2" -decamelize@^1.2.0: +decamelize-keys@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9" + integrity sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk= + dependencies: + decamelize "^1.1.0" + map-obj "^1.0.0" + +decamelize@^1.1.0, decamelize@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= @@ -3843,7 +4161,7 @@ enhanced-resolve@^5.8.3: graceful-fs "^4.2.4" tapable "^2.2.0" -enquirer@^2.3.5: +enquirer@^2.3.0, enquirer@^2.3.5: version "2.3.6" resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== @@ -4234,6 +4552,19 @@ exec-sh@^0.3.2: resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.6.tgz#ff264f9e325519a60cb5e273692943483cca63bc" integrity sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w== +execa@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" + integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= + dependencies: + cross-spawn "^5.0.1" + get-stream "^3.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + execa@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" @@ -4306,6 +4637,20 @@ expect@^27.4.2: jest-message-util "^27.4.2" jest-regex-util "^27.4.0" +extendable-error@^0.1.5: + version "0.1.7" + resolved "https://registry.yarnpkg.com/extendable-error/-/extendable-error-0.1.7.tgz#60b9adf206264ac920058a7395685ae4670c2b96" + integrity sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg== + +external-editor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" + integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== + dependencies: + chardet "^0.7.0" + iconv-lite "^0.4.24" + tmp "^0.0.33" + fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" @@ -4437,6 +4782,14 @@ find-up@^5.0.0: locate-path "^6.0.0" path-exists "^4.0.0" +find-yarn-workspace-root2@1.2.16: + version "1.2.16" + resolved "https://registry.yarnpkg.com/find-yarn-workspace-root2/-/find-yarn-workspace-root2-1.2.16.tgz#60287009dd2f324f59646bdb4b7610a6b301c2a9" + integrity sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA== + dependencies: + micromatch "^4.0.2" + pkg-dir "^4.2.0" + find-yarn-workspace-root@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-1.2.1.tgz#40eb8e6e7c2502ddfaa2577c176f221422f860db" @@ -4514,7 +4867,16 @@ fs-extra@^4.0.3: jsonfile "^4.0.0" universalify "^0.1.0" -fs-extra@^8.0.1, fs-extra@^8.1.0: +fs-extra@^7.0.1, fs-extra@~7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" + integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== + dependencies: + graceful-fs "^4.1.2" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs-extra@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== @@ -4533,15 +4895,6 @@ fs-extra@^9.0.0: jsonfile "^6.0.1" universalify "^2.0.0" -fs-extra@~7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" - integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== - dependencies: - graceful-fs "^4.1.2" - jsonfile "^4.0.0" - universalify "^0.1.0" - fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" @@ -4615,6 +4968,11 @@ get-package-type@^0.1.0: resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== +get-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" + integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= + get-stream@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" @@ -4736,10 +5094,20 @@ got@^11.8.2: p-cancelable "^2.0.0" responselike "^2.0.0" -graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.4: - version "4.2.6" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" - integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ== +graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.5, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.4: + version "4.2.8" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz#e412b8d33f5e006593cbd3cee6df9f2cebbe802a" + integrity sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg== + +grapheme-splitter@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" + integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== + +hard-rejection@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" + integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== has-bigints@^1.0.1: version "1.0.1" @@ -4810,6 +5178,11 @@ hermes-profile-transformer@^0.0.6: dependencies: source-map "^0.7.3" +hosted-git-info@^2.1.4: + version "2.8.9" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" + integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== + html-encoding-sniffer@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3" @@ -4863,10 +5236,10 @@ https-proxy-agent@^5.0.0: agent-base "6" debug "4" -human-id@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/human-id/-/human-id-2.0.1.tgz#71aadd0f46d577fd982358133cfd43f2a46f1477" - integrity sha512-XWoYbGsEfBB0mtUHiyihsefgf+s1tNQHj7sX1kgDxUM0IEKk8rcZIPTwUpqDdFIQbkViOLejbc0t8jBzz5jL3w== +human-id@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/human-id/-/human-id-1.0.2.tgz#e654d4b2b0d8b07e45da9f6020d8af17ec0a5df3" + integrity sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw== human-signals@^1.1.1: version "1.1.1" @@ -4878,7 +5251,7 @@ human-signals@^2.1.0: resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== -iconv-lite@0.4.24: +iconv-lite@0.4.24, iconv-lite@^0.4.24: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== @@ -4954,6 +5327,11 @@ imurmurhash@^0.1.4: resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= +indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + indexes-of@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" @@ -5107,6 +5485,11 @@ is-number@^7.0.0: resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== +is-plain-obj@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" + integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= + is-plain-object@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" @@ -5154,6 +5537,13 @@ is-string@^1.0.5, is-string@^1.0.7: dependencies: has-tostringtag "^1.0.0" +is-subdir@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/is-subdir/-/is-subdir-1.2.0.tgz#b791cd28fab5202e91a08280d51d9d7254fd20d4" + integrity sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw== + dependencies: + better-path-resolve "1.0.0" + is-symbol@^1.0.2, is-symbol@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" @@ -5173,6 +5563,11 @@ is-weakref@^1.0.1: dependencies: call-bind "^1.0.0" +is-windows@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" + integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== + is-wsl@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" @@ -5821,7 +6216,7 @@ joi@^17.2.1: resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== -js-yaml@^3.13.1, js-yaml@^3.14.0: +js-yaml@^3.13.0, js-yaml@^3.13.1, js-yaml@^3.14.0, js-yaml@^3.6.1: version "3.14.1" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== @@ -5991,6 +6386,11 @@ keyv@^4.0.0: dependencies: json-buffer "3.0.1" +kind-of@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + klaw@^1.0.0: version "1.3.1" resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" @@ -5998,7 +6398,7 @@ klaw@^1.0.0: optionalDependencies: graceful-fs "^4.1.9" -kleur@^3.0.2, kleur@^3.0.3: +kleur@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== @@ -6059,6 +6459,16 @@ load-json-file@^4.0.0: pify "^3.0.0" strip-bom "^3.0.0" +load-yaml-file@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/load-yaml-file/-/load-yaml-file-0.2.0.tgz#af854edaf2bea89346c07549122753c07372f64d" + integrity sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw== + dependencies: + graceful-fs "^4.1.5" + js-yaml "^3.13.0" + pify "^4.0.1" + strip-bom "^3.0.0" + loader-utils@^1.1.0: version "1.4.0" resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" @@ -6115,6 +6525,11 @@ lodash.merge@^4.6.2: resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== +lodash.startcase@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/lodash.startcase/-/lodash.startcase-4.4.0.tgz#9436e34ed26093ed7ffae1936144350915d9add8" + integrity sha1-lDbjTtJgk+1/+uGTYUQ1CRXZrdg= + lodash.throttle@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" @@ -6153,6 +6568,14 @@ lowercase-keys@^2.0.0: resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== +lru-cache@^4.0.1: + version "4.1.5" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" + integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== + dependencies: + pseudomap "^1.0.2" + yallist "^2.1.2" + lru-cache@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" @@ -6203,6 +6626,16 @@ map-age-cleaner@^0.1.1: dependencies: p-defer "^1.0.0" +map-obj@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" + integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0= + +map-obj@^4.0.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a" + integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== + markdown-table@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-2.0.0.tgz#194a90ced26d31fe753d8b9434430214c011865b" @@ -6226,6 +6659,23 @@ memory-streams@^0.1.3: dependencies: readable-stream "~1.0.2" +meow@^6.0.0: + version "6.1.1" + resolved "https://registry.yarnpkg.com/meow/-/meow-6.1.1.tgz#1ad64c4b76b2a24dfb2f635fddcadf320d251467" + integrity sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg== + dependencies: + "@types/minimist" "^1.2.0" + camelcase-keys "^6.2.2" + decamelize-keys "^1.1.0" + hard-rejection "^2.1.0" + minimist-options "^4.0.2" + normalize-package-data "^2.5.0" + read-pkg-up "^7.0.1" + redent "^3.0.0" + trim-newlines "^3.0.0" + type-fest "^0.13.1" + yargs-parser "^18.1.3" + merge-source-map@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.1.0.tgz#2fdde7e6020939f70906a68f2d7ae685e4c8c646" @@ -6564,6 +7014,11 @@ mimic-response@^3.1.0: resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== +min-indent@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" + integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== + minimatch@^3.0.2, minimatch@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" @@ -6571,11 +7026,25 @@ minimatch@^3.0.2, minimatch@^3.0.4: dependencies: brace-expansion "^1.1.7" +minimist-options@^4.0.2: + version "4.1.0" + resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" + integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== + dependencies: + arrify "^1.0.1" + is-plain-obj "^1.1.0" + kind-of "^6.0.3" + minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5: version "1.2.5" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== +mixme@^0.5.1: + version "0.5.4" + resolved "https://registry.yarnpkg.com/mixme/-/mixme-0.5.4.tgz#8cb3bd0cd32a513c161bf1ca99d143f0bcf2eff3" + integrity sha512-3KYa4m4Vlqx98GPdOHghxSdNtTvcP8E0kkaJ5Dlh+h2DRzF7zpuVVcA8B0QpKd11YJeP9QQ7ASkKzOeu195Wzw== + mkdirp-classic@^0.5.2: version "0.5.3" resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" @@ -6697,6 +7166,16 @@ node-stream-zip@^1.9.1: resolved "https://registry.yarnpkg.com/node-stream-zip/-/node-stream-zip-1.13.3.tgz#63235337abebcef408b244b4e28f28961e6e86f0" integrity sha512-Vv95ug+8Jfug4AxcqNV7TeGEk2antNidj+YBOyP8SS8LTHJmjsE3d9h6L831eJtO8p7jesJ3CDtgkwmLO/wcSw== +normalize-package-data@^2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== + dependencies: + hosted-git-info "^2.1.4" + resolve "^1.10.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + normalize-path@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" @@ -6904,11 +7383,16 @@ ora@^3.4.0: strip-ansi "^5.2.0" wcwidth "^1.0.1" -os-tmpdir@^1.0.0: +os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= +outdent@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/outdent/-/outdent-0.5.0.tgz#9e10982fdc41492bb473ad13840d22f9655be2ff" + integrity sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q== + p-cancelable@^2.0.0: version "2.1.1" resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz#aab7fbd416582fa32a3db49859c122487c5ed2cf" @@ -6926,6 +7410,13 @@ p-event@^4.1.0: dependencies: p-timeout "^3.1.0" +p-filter@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-filter/-/p-filter-2.1.0.tgz#1b1472562ae7a0f742f0f3d3d3718ea66ff9c09c" + integrity sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw== + dependencies: + p-map "^2.0.0" + p-finally@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" @@ -6976,6 +7467,11 @@ p-locate@^5.0.0: dependencies: p-limit "^3.0.2" +p-map@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175" + integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw== + p-profiler@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/p-profiler/-/p-profiler-0.2.1.tgz#853b5e6b482c5d376e5e2bb1e94bd09c0e715983" @@ -7231,6 +7727,16 @@ postcss@^8.1.10: nanoid "^3.1.23" source-map "^0.6.1" +preferred-pm@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/preferred-pm/-/preferred-pm-3.0.3.tgz#1b6338000371e3edbce52ef2e4f65eb2e73586d6" + integrity sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ== + dependencies: + find-up "^5.0.0" + find-yarn-workspace-root2 "1.2.16" + path-exists "^4.0.0" + which-pm "2.0.0" + prelude-ls@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" @@ -7241,6 +7747,11 @@ prelude-ls@~1.1.2: resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= +prettier@^1.19.1: + version "1.19.1" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb" + integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew== + prettier@^2.0.0, prettier@^2.3.0: version "2.5.0" resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.5.0.tgz#a6370e2d4594e093270419d9cc47f7670488f893" @@ -7314,14 +7825,6 @@ prompts@^2.0.1, prompts@^2.4.0, prompts@^2.4.1: kleur "^3.0.3" sisteransi "^1.0.5" -prompts@~2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.1.0.tgz#bf90bc71f6065d255ea2bdc0fe6520485c1b45db" - integrity sha512-+x5TozgqYdOwWsQFZizE/Tra3fKvAoy037kOyU6cgz84n8f6zxngLOV4O32kTwt9FcLCxAqw0P/c8rOr9y+Gfg== - dependencies: - kleur "^3.0.2" - sisteransi "^1.0.0" - prop-types@^15.7.2: version "15.7.2" resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" @@ -7336,6 +7839,11 @@ protocols@^1.1.0, protocols@^1.4.0: resolved "https://registry.yarnpkg.com/protocols/-/protocols-1.4.8.tgz#48eea2d8f58d9644a4a32caae5d5db290a075ce8" integrity sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg== +pseudomap@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" + integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= + psl@^1.1.33: version "1.8.0" resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" @@ -7384,6 +7892,11 @@ queue-microtask@^1.2.2: resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== +quick-lru@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" + integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== + quick-lru@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" @@ -7542,6 +8055,35 @@ react@17.0.2: loose-envify "^1.1.0" object-assign "^4.1.1" +read-pkg-up@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" + integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== + dependencies: + find-up "^4.1.0" + read-pkg "^5.2.0" + type-fest "^0.8.1" + +read-pkg@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" + integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== + dependencies: + "@types/normalize-package-data" "^2.4.0" + normalize-package-data "^2.5.0" + parse-json "^5.0.0" + type-fest "^0.6.0" + +read-yaml-file@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/read-yaml-file/-/read-yaml-file-1.1.0.tgz#9362bbcbdc77007cc8ea4519fe1c0b821a7ce0d8" + integrity sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA== + dependencies: + graceful-fs "^4.1.5" + js-yaml "^3.6.1" + pify "^4.0.1" + strip-bom "^3.0.0" + read-yaml-file@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/read-yaml-file/-/read-yaml-file-2.1.0.tgz#c5866712db9ef5343b4d02c2413bada53c41c4a9" @@ -7611,6 +8153,14 @@ rechoir@^0.6.2: dependencies: resolve "^1.1.6" +redent@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" + integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== + dependencies: + indent-string "^4.0.0" + strip-indent "^3.0.0" + regenerate-unicode-properties@^8.2.0: version "8.2.0" resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" @@ -7729,7 +8279,7 @@ resolve.exports@^1.1.0: resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-1.1.0.tgz#5ce842b94b05146c0e03076985d1d0e7e48c90c9" integrity sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ== -resolve@^1.1.6, resolve@^1.14.2, resolve@^1.18.1, resolve@^1.20.0: +resolve@^1.1.6, resolve@^1.10.0, resolve@^1.14.2, resolve@^1.18.1, resolve@^1.20.0: version "1.20.0" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== @@ -7880,16 +8430,16 @@ semver-compare@^1.0.0: resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= +"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.6.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + semver@7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== -semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.6.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== - semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: version "6.3.0" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" @@ -8022,7 +8572,7 @@ simple-plist@^1.0.0: bplist-parser "0.2.0" plist "^3.0.1" -sisteransi@^1.0.0, sisteransi@^1.0.5: +sisteransi@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== @@ -8051,6 +8601,17 @@ slice-ansi@^2.0.0: astral-regex "^1.0.0" is-fullwidth-code-point "^2.0.0" +smartwrap@^1.2.3: + version "1.2.5" + resolved "https://registry.yarnpkg.com/smartwrap/-/smartwrap-1.2.5.tgz#45ee3e09ac234e5f7f17c16e916f511834f3cd23" + integrity sha512-bzWRwHwu0RnWjwU7dFy7tF68pDAx/zMSu3g7xr9Nx5J0iSImYInglwEVExyHLxXljy6PWMjkSAbwF7t2mPnRmg== + dependencies: + breakword "^1.0.5" + grapheme-splitter "^1.0.4" + strip-ansi "^6.0.0" + wcwidth "^1.0.1" + yargs "^15.1.0" + source-map-support@^0.5.16, source-map-support@^0.5.19, source-map-support@^0.5.6: version "0.5.19" resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" @@ -8079,12 +8640,28 @@ sourcemap-codec@^1.4.4: resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== +spawndamnit@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/spawndamnit/-/spawndamnit-2.0.0.tgz#9f762ac5c3476abb994b42ad592b5ad22bb4b0ad" + integrity sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA== + dependencies: + cross-spawn "^5.1.0" + signal-exit "^3.0.2" + +spdx-correct@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" + integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + spdx-exceptions@^2.1.0: version "2.3.0" resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== -spdx-expression-parse@^3.0.1: +spdx-expression-parse@^3.0.0, spdx-expression-parse@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== @@ -8148,6 +8725,13 @@ stream-buffers@~2.2.0: resolved "https://registry.yarnpkg.com/stream-buffers/-/stream-buffers-2.2.0.tgz#91d5f5130d1cef96dcfa7f726945188741d09ee4" integrity sha1-kdX1Ew0c75bc+n9yaUUYh0HQnuQ= +stream-transform@^2.1.3: + version "2.1.3" + resolved "https://registry.yarnpkg.com/stream-transform/-/stream-transform-2.1.3.tgz#a1c3ecd72ddbf500aa8d342b0b9df38f5aa598e3" + integrity sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ== + dependencies: + mixme "^0.5.1" + strict-uri-encode@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546" @@ -8175,7 +8759,7 @@ string-width@^1.0.1: is-fullwidth-code-point "^1.0.0" strip-ansi "^3.0.0" -"string-width@^1.0.2 || 2": +"string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== @@ -8289,6 +8873,13 @@ strip-final-newline@^2.0.0: resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== +strip-indent@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" + integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== + dependencies: + min-indent "^1.0.0" + strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" @@ -8396,6 +8987,18 @@ temp@^0.8.1: dependencies: rimraf "~2.6.2" +term-size@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" + integrity sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk= + dependencies: + execa "^0.7.0" + +term-size@^2.1.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.1.tgz#2a6a54840432c2fb6320fea0f415531e90189f54" + integrity sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg== + terminal-link@^2.0.0: version "2.1.1" resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" @@ -8441,6 +9044,13 @@ timsort@~0.3.0: resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4" integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q= +tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + dependencies: + os-tmpdir "~1.0.2" + tmpl@1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" @@ -8463,11 +9073,6 @@ toidentifier@1.0.0: resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== -toposort@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/toposort/-/toposort-2.0.2.tgz#ae21768175d1559d48bef35420b2f4962f09c330" - integrity sha1-riF2gXXRVZ1IvvNUILL0li8JwzA= - tough-cookie@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4" @@ -8484,6 +9089,11 @@ tr46@^2.0.2: dependencies: punycode "^2.1.1" +trim-newlines@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" + integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== + trim-repeated@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/trim-repeated/-/trim-repeated-1.0.0.tgz#e3646a2ea4e891312bf7eace6cfb05380bc01c21" @@ -8508,6 +9118,18 @@ tsutils@^3.21.0: dependencies: tslib "^1.8.1" +tty-table@^2.8.10: + version "2.8.13" + resolved "https://registry.yarnpkg.com/tty-table/-/tty-table-2.8.13.tgz#d484a416381973eaebbdf19c79136b390e5c6d70" + integrity sha512-eVV/+kB6fIIdx+iUImhXrO22gl7f6VmmYh0Zbu6C196fe1elcHXd7U6LcLXu0YoVPc2kNesWiukYcdK8ZmJ6aQ== + dependencies: + chalk "^3.0.0" + csv "^5.3.1" + smartwrap "^1.2.3" + strip-ansi "^6.0.0" + wcwidth "^1.0.1" + yargs "^15.1.0" + tunnel@0.0.6, tunnel@^0.0.6: version "0.0.6" resolved "https://registry.yarnpkg.com/tunnel/-/tunnel-0.0.6.tgz#72f1314b34a5b192db012324df2cc587ca47f92c" @@ -8532,6 +9154,11 @@ type-detect@4.0.8: resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== +type-fest@^0.13.1: + version "0.13.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934" + integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg== + type-fest@^0.20.2: version "0.20.2" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" @@ -8542,12 +9169,17 @@ type-fest@^0.21.3: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== +type-fest@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" + integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== + type-fest@^0.7.1: version "0.7.1" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.7.1.tgz#8dda65feaf03ed78f0a3f9678f1869147f7c5c48" integrity sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg== -type-fest@^0.8.0: +type-fest@^0.8.0, type-fest@^0.8.1: version "0.8.1" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== @@ -8691,7 +9323,7 @@ uuid@^3.3.2: resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== -uuid@^8.3.0, uuid@^8.3.1, uuid@^8.3.2: +uuid@^8.3.0, uuid@^8.3.2: version "8.3.2" resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== @@ -8710,6 +9342,14 @@ v8-to-istanbul@^8.1.0: convert-source-map "^1.6.0" source-map "^0.7.3" +validate-npm-package-license@^3.0.1: + version "3.0.4" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + validator@^8.0.0: version "8.2.0" resolved "https://registry.yarnpkg.com/validator/-/validator-8.2.0.tgz#3c1237290e37092355344fef78c231249dab77b9" @@ -8805,6 +9445,14 @@ which-module@^2.0.0: resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= +which-pm@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/which-pm/-/which-pm-2.0.0.tgz#8245609ecfe64bf751d0eef2f376d83bf1ddb7ae" + integrity sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w== + dependencies: + load-yaml-file "^0.2.0" + path-exists "^4.0.0" + which@^1.2.9: version "1.3.1" resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" @@ -8826,6 +9474,13 @@ wide-align@^1.1.0: dependencies: string-width "^1.0.2 || 2" +widest-line@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc" + integrity sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA== + dependencies: + string-width "^2.1.1" + word-wrap@^1.2.3, word-wrap@~1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" @@ -9005,6 +9660,11 @@ y18n@^5.0.5: resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.5.tgz#8769ec08d03b1ea2df2500acef561743bbb9ab18" integrity sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg== +yallist@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" + integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= + yallist@^3.0.2: version "3.1.1" resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" @@ -9028,7 +9688,7 @@ yargs-parser@^18.1.2, yargs-parser@^18.1.3: camelcase "^5.0.0" decamelize "^1.2.0" -yargs-parser@^20.2.2, yargs-parser@^20.2.4: +yargs-parser@^20.2.2: version "20.2.7" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.7.tgz#61df85c113edfb5a7a4e36eb8aa60ef423cbc90a" integrity sha512-FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw==