Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
153 changes: 153 additions & 0 deletions .yarn/plugins/@rnx-kit/yarn-plugin-ignore.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,153 @@
/* eslint-disable */

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🕵🏾‍♀️ visual changes to review in the Visual Change Report

vr-tests-react-components/Menu Converged - submenuIndicator slotted content 1 screenshots
Image Name Diff(in Pixels) Image Type
vr-tests-react-components/Menu Converged - submenuIndicator slotted content.default.submenus open.chromium.png 413 Changed
vr-tests-react-components/Positioning 2 screenshots
Image Name Diff(in Pixels) Image Type
vr-tests-react-components/Positioning.Positioning end.chromium.png 620 Changed
vr-tests-react-components/Positioning.Positioning end.updated 2 times.chromium.png 615 Changed
vr-tests-react-components/ProgressBar converged 3 screenshots
Image Name Diff(in Pixels) Image Type
vr-tests-react-components/ProgressBar converged.Indeterminate + thickness - High Contrast.default.chromium.png 145 Changed
vr-tests-react-components/ProgressBar converged.Indeterminate + thickness.default.chromium.png 92 Changed
vr-tests-react-components/ProgressBar converged.Indeterminate + thickness - Dark Mode.default.chromium.png 50 Changed
vr-tests-react-components/TagPicker 2 screenshots
Image Name Diff(in Pixels) Image Type
vr-tests-react-components/TagPicker.disabled - High Contrast.disabled input hover.chromium.png 1319 Changed
vr-tests-react-components/TagPicker.disabled - RTL.disabled input hover.chromium.png 635 Changed
vr-tests-web-components/Avatar 1 screenshots
Image Name Diff(in Pixels) Image Type
vr-tests-web-components/Avatar. - Dark Mode.normal.chromium_1.png 298 Changed
vr-tests-web-components/MenuList 1 screenshots
Image Name Diff(in Pixels) Image Type
vr-tests-web-components/MenuList. - Dark Mode.normal.chromium.png 498 Changed
vr-tests-web-components/TextInput 1 screenshots
Image Name Diff(in Pixels) Image Type
vr-tests-web-components/TextInput. - Dark Mode.normal.chromium_1.png 288 Changed
vr-tests/Callout 5 screenshots
Image Name Diff(in Pixels) Image Type
vr-tests/Callout.No beak.default.chromium.png 2192 Changed
vr-tests/Callout.Beak 25.default.chromium.png 2198 Changed
vr-tests/Callout.Gap space 25.default.chromium.png 2195 Changed
vr-tests/Callout.Rendering callout attached to a rectangle.default.chromium.png 1835 Changed
vr-tests/Callout.No callout width specified.default.chromium.png 2143 Changed
vr-tests/react-charting-LineChart 3 screenshots
Image Name Diff(in Pixels) Image Type
vr-tests/react-charting-LineChart.Multiple - Dark Mode.default.chromium.png 181 Changed
vr-tests/react-charting-LineChart.Multiple - RTL.default.chromium.png 200 Changed
vr-tests/react-charting-LineChart.Multiple.default.chromium.png 192 Changed
vr-tests/react-charting-VerticalBarChart 1 screenshots
Image Name Diff(in Pixels) Image Type
vr-tests/react-charting-VerticalBarChart.Basic - Secondary Y Axis.default.chromium.png 3 Changed

There were 2 duplicate changes discarded. Check the build logs for more information.

//prettier-ignore
module.exports = {
name: "@rnx-kit/yarn-plugin-ignore",
factory: function (require) {
"use strict";
var plugin = (() => {
var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
}) : x)(function(x) {
if (typeof require !== "undefined") return require.apply(this, arguments);
throw Error('Dynamic require of "' + x + '" is not supported');
});
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
// If the importer is in node compatibility mode or this is not an ESM
// file that has been converted to a CommonJS file using a Babel-
// compatible transform (i.e. "__esModule" has not been set), then set
// "default" to the CommonJS "module.exports" for node compatibility.
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
mod
));
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);

// src/index.ts
var index_exports = {};
__export(index_exports, {
IgnoreFetcher: () => IgnoreFetcher,
IgnoreResolver: () => IgnoreResolver,
default: () => index_default
});

// src/IgnoreFetcher.ts
var import_fslib = __require("@yarnpkg/fslib");
var fs = __toESM(__require("fs"), 1);

// src/constants.ts
var IGNORE_PROTOCOL = "ignore:";
var STUB_MODULE = `module.exports = {};
`;
var STUB_PACKAGE = `{
"name": "@rnx-kit/yarn-plugin-ignore/stub",
"version": "0.0.0",
"description": "Stub package for '@rnx-kit/yarn-plugin-ignore'",
"main": "index.js"
}
`;

// src/IgnoreFetcher.ts
var IgnoreFetcher = class {
supports(locator) {
return locator.reference.startsWith(IGNORE_PROTOCOL);
}
getLocalPath() {
return null;
}
async fetch(_locator, opts) {
const base = opts.project.cwd;
const sourceFs = new import_fslib.CwdFS(base);
const localPath = import_fslib.ppath.resolve(
base,
"node_modules",
".generated",
"@rnx-kit",
"yarn-plugin-ignore-stub"
);
const nativePath = import_fslib.npath.fromPortablePath(localPath);
if (!fs.existsSync(nativePath)) {
fs.mkdirSync(nativePath, { recursive: true, mode: 493 });
fs.writeFileSync(import_fslib.npath.join(nativePath, "package.json"), STUB_PACKAGE);
fs.writeFileSync(import_fslib.npath.join(nativePath, "index.js"), STUB_MODULE);
}
return {
packageFs: new import_fslib.CwdFS(localPath, { baseFs: sourceFs }),
prefixPath: import_fslib.PortablePath.dot,
discardFromLookup: true,
localPath
};
}
};

// src/IgnoreResolver.ts
var import_core = __require("@yarnpkg/core");
var import_node_assert = __require("assert");
var IgnoreResolver = class {
supportsDescriptor(descriptor) {
return descriptor.range.startsWith(IGNORE_PROTOCOL);
}
supportsLocator(locator) {
return locator.reference.startsWith(IGNORE_PROTOCOL);
}
shouldPersistResolution() {
return false;
}
bindDescriptor(descriptor, _fromLocator) {
return descriptor;
}
getResolutionDependencies() {
return {};
}
async getCandidates(descriptor, _dependencies, _opts) {
return [import_core.structUtils.makeLocator(descriptor, IGNORE_PROTOCOL)];
}
async getSatisfying(_descriptor, _dependencies, locators, _opts) {
(0, import_node_assert.equal)(locators.length, 1, "Expected a single locator candidate");
return { locators, sorted: true };
}
async resolve(locator, opts) {
const manifest = new import_core.Manifest();
return {
...locator,
version: "0.0.0",
languageName: opts.project.configuration.get("defaultLanguageName"),
linkType: import_core.LinkType.SOFT,
conditions: null,
dependencies: manifest.dependencies,
peerDependencies: manifest.peerDependencies,
dependenciesMeta: manifest.dependenciesMeta,
peerDependenciesMeta: manifest.peerDependenciesMeta,
bin: manifest.bin
};
}
};

// src/index.ts
var plugin = {
fetchers: [IgnoreFetcher],
resolvers: [IgnoreResolver]
};
var index_default = plugin;
return __toCommonJS(index_exports);
})();
return plugin;
}
};
//# sourceMappingURL=yarn-plugin-ignore.cjs.map
5 changes: 5 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,9 @@ npmPreapprovedPackages:
- beachball
- p-graph

plugins:
- checksum: 8d8252c376e41a67ca509b2778f3fb92164aa91828459ae8a6aa0e13f1b6f9843586d0983ba9a200f6d813d37efc171474c8dbc85b0dff01df56c0d476c238ce
path: .yarn/plugins/@rnx-kit/yarn-plugin-ignore.cjs
spec: 'https://raw.githubusercontent.com/microsoft/rnx-kit/main/incubator/yarn-plugin-ignore/dist/yarn-plugin-ignore.cjs'

yarnPath: .yarn/releases/yarn-4.18.0.cjs
50 changes: 27 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
"@nx/workspace": "21.6.10",
"@octokit/rest": "18.12.0",
"@oddbird/css-anchor-positioning": "0.4.0",
"@phenomnomnominal/tsquery": "6.1.3",
"@phenomnomnominal/tsquery": "6.2.0",
"@playwright/test": "1.56.1",
"@react-native/babel-preset": "0.73.21",
"@rnx-kit/eslint-plugin": "0.8.6",
Expand Down Expand Up @@ -360,32 +360,36 @@
}
},
"resolutions": {
"@nx/devkit/minimatch": "^9.0.7",
"@nx/jest/minimatch": "^9.0.7",
"@phenomnomnominal/tsquery": "6.1.3",
"@types/jest-axe/axe-core": "4.7.2",
"basic-ftp": "^5.2.0",
"@cypress/request/qs": "^6.14.2",
"@tensile-perf/runner/express": "^4.22.1",
"body-parser/qs": "^6.14.2",
"d3-format": "3.1.0",
"d3-scale/d3-time-format": "3.0.0",
"@phenomnomnominal/tsquery@npm:~5.0.1": "6.2.0",
"@phenomnomnominal/tsquery@npm:6.1.3": "6.2.0",
"axe-core@npm:^3.5.5": "^4.7.2",
"axe-core@npm:4.10.2": "^4.7.2",
"d3-format@npm:1 - 3": "3.1.0",
"d3-format@npm:^3.0.0": "3.1.0",
"d3-scale/d3-time-format@npm:2 - 4": "^3.0.0",
"esbuild": "0.25.0",
"handlebars": "^4.7.9",
"just-scripts-utils/tar": "^7.5.8",
"micromatch": "4.0.8",
"micromatch/braces": "^3.0.3",
"nx/minimatch": "^9.0.7",
"express@npm:^4.17.3": "4.22.1",
"express@npm:4.19.2": "4.22.1",
"express@npm:4.22.1": "4.22.1",
"just-scripts-utils/tar@npm:^6.1.9": "^7.5.8",
"lodash@npm:~4.17.15": "npm:^4.18.1",
"micromatch@npm:^3.0.4": "^4.0.8",
"micromatch@npm:4.0.8": "^4.0.8",
"minimatch@npm:~3.0.3": "^3.1.5",
"minimatch@npm:9.0.1": "^9.0.7",
"minimatch@npm:9.0.3": "^9.0.7",
"node-gyp": "ignore:",
"picomatch@npm:4.0.2": "^4.0.4",
"playwright": "1.56.1",
"prettier": "2.8.8",
"prismjs": "1.30.0",
"puppeteer": "24.42.0",
"shell-quote": "^1.8.2",
"swc-loader": "0.2.6",
"syncpack/minimatch": "^9.0.7",
"tar-fs": "2.1.4",
"prismjs@npm:~1.17.0": "1.30.0",
"puppeteer@npm:^1.13.0": "24.42.0",
"qs@npm:~6.14.0": "^6.15.3",
"qs@npm:~6.15.1": "^6.15.3",
"qs@npm:6.14.0": "^6.15.3",
"webpack": "5.108.4",
"ws": "^8.21.1"
"ws@npm:^7.2.0": "^8.21.1",
"ws@npm:^7.3.1": "^8.21.1"
},
"nx": {
"includedScripts": []
Expand Down
Loading
Loading