зеркало из https://github.com/microsoft/rnx-kit.git
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).
This commit is contained in:
Родитель
06a9974767
Коммит
9cfe0d73fc
|
@ -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)
|
|
@ -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": []
|
||||
}
|
|
@ -0,0 +1,2 @@
|
|||
---
|
||||
---
|
|
@ -1,3 +1,10 @@
|
|||
'chore':
|
||||
- .github/**/*
|
||||
- .gitignore
|
||||
- .npmrc
|
||||
- .yarnrc
|
||||
- package.json
|
||||
- scripts/**/*
|
||||
'feature: cli':
|
||||
- packages/cli/**/*
|
||||
- packages/config/**/*
|
||||
|
|
|
@ -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 }}
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
19
package.json
19
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"
|
||||
},
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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."
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
<!-- We recommend that the first beachball change report for a new package is of type "none" -->
|
||||
<!-- We recommend an empty change log entry for a new package: `yarn change --empty` -->
|
||||
|
||||
# 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
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
804
yarn.lock
804
yarn.lock
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Загрузка…
Ссылка в новой задаче