* chore: Update deps There are these yarn messages, which I don't understand, but @NGPixel may. ``` ➤ YN0000: ┌ Resolution step ➤ YN0060: │ @parcel/optimizer-image@npm:2.6.2 provides @parcel/core (pec760) with version 2.5.0, which doesn't satisfy what @parcel/workers requests ➤ YN0060: │ @parcel/types@npm:2.6.2 provides @parcel/core (p1835f) with version 2.5.0, which doesn't satisfy what @parcel/fs requests ➤ YN0060: │ @parcel/types@npm:2.6.2 provides @parcel/core (p40766) with version 2.5.0, which doesn't satisfy what @parcel/workers requests ➤ YN0060: │ @parcel/types@npm:2.6.2 provides @parcel/core (p60182) with version 2.5.0, which doesn't satisfy what @parcel/cache requests ➤ YN0060: │ @parcel/types@npm:2.6.2 provides @parcel/core (pe24cb) with version 2.5.0, which doesn't satisfy what @parcel/package-manager requests ➤ YN0000: │ Some peer dependencies are incorrectly met; run yarn explain peer-requirements <hash> for details, where <hash> is the six-letter p-prefixed code ➤ YN0000: └ Completed ``` * Use .yarnrc.yml from @NGPixel * Fix tests. I have no idea why they started failing, the both the js code and the tests have not changed in months...
41 lines
799 B
YAML
41 lines
799 B
YAML
defaultSemverRangePrefix: ""
|
|
|
|
enableTelemetry: false
|
|
|
|
nodeLinker: pnp
|
|
|
|
packageExtensions:
|
|
"@parcel/optimizer-image@*":
|
|
dependencies:
|
|
"@parcel/core": "2.6.2"
|
|
"@parcel/fs@*":
|
|
dependencies:
|
|
"@parcel/core": "2.6.2"
|
|
"@parcel/workers@*":
|
|
dependencies:
|
|
"@parcel/core": "2.6.2"
|
|
"@parcel/cache@*":
|
|
dependencies:
|
|
"@parcel/core": "2.6.2"
|
|
"@parcel/package-manager@*":
|
|
dependencies:
|
|
"@parcel/core": "2.6.2"
|
|
"select2-bootstrap-5-theme@*":
|
|
dependencies:
|
|
"@popperjs/core": "*"
|
|
|
|
plugins:
|
|
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
|
|
spec: "@yarnpkg/plugin-interactive-tools"
|
|
|
|
supportedArchitectures:
|
|
cpu:
|
|
- "x64"
|
|
- "arm64"
|
|
os:
|
|
- "darwin"
|
|
- "linux"
|
|
- "win32"
|
|
|
|
yarnPath: .yarn/releases/yarn-3.2.0.cjs
|