chore: switch to Yarn 3 (#3819)
* refactor: switch to yarn 3 * chore: add other os+cpu to yarn supported architectures * chore: add gitattributes * chore: add missing yarn native modules rebuild step * chore: replace npx with yarn in test_runner + update readme * chore: remove bootstrap-datepicker github dependency, use local instead
This commit is contained in:
parent
cd9a2ee229
commit
8ea883cb7e
|
@ -65,21 +65,23 @@
|
|||
|
||||
// Add the IDs of extensions you want installed when the container is created.
|
||||
"extensions": [
|
||||
"arcanis.vscode-zipfs",
|
||||
"batisteo.vscode-django",
|
||||
"dbaeumer.vscode-eslint",
|
||||
"eamodio.gitlens",
|
||||
"editorconfig.editorconfig",
|
||||
"johnsoncodehk.volar",
|
||||
"mrmlnc.vscode-duplicate",
|
||||
"ms-azuretools.vscode-docker",
|
||||
"ms-python.python",
|
||||
"ms-python.vscode-pylance",
|
||||
"ms-azuretools.vscode-docker",
|
||||
"editorconfig.editorconfig",
|
||||
"redhat.vscode-yaml",
|
||||
"visualstudioexptteam.vscodeintellicode",
|
||||
"batisteo.vscode-django",
|
||||
"mutantdino.resourcemonitor",
|
||||
"spmeesseman.vscode-taskexplorer",
|
||||
"mtxr.sqltools",
|
||||
"mtxr.sqltools-driver-mysql",
|
||||
"mrmlnc.vscode-duplicate",
|
||||
"eamodio.gitlens",
|
||||
"mtxr.sqltools",
|
||||
"mutantdino.resourcemonitor",
|
||||
"oderwat.indent-rainbow",
|
||||
"johnsoncodehk.volar"
|
||||
"redhat.vscode-yaml",
|
||||
"spmeesseman.vscode-taskexplorer",
|
||||
"visualstudioexptteam.vscodeintellicode"
|
||||
],
|
||||
|
||||
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
||||
|
|
|
@ -6,7 +6,6 @@ services:
|
|||
EDITOR_VSCODE: 1
|
||||
volumes:
|
||||
- .:/workspace
|
||||
- /workspace/node_modules
|
||||
- /workspace/.parcel-cache
|
||||
- /workspace/__pycache__
|
||||
- datatracker-vscode-ext:/root/.vscode-server/extensions
|
||||
|
|
2
.gitattributes
vendored
Normal file
2
.gitattributes
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
/.yarn/releases/** binary
|
||||
/.yarn/plugins/** binary
|
9
.gitignore
vendored
9
.gitignore
vendored
|
@ -28,6 +28,7 @@ datatracker.sublime-workspace
|
|||
/.tmp
|
||||
/attic
|
||||
/bin
|
||||
/bootstrap/node_modules
|
||||
/data
|
||||
/docker/docker-compose.extend-custom.yml
|
||||
/env
|
||||
|
@ -60,4 +61,10 @@ datatracker.sublime-workspace
|
|||
/unix.tag
|
||||
*.pyc
|
||||
__pycache__
|
||||
node_modules
|
||||
.yarn/*
|
||||
!.yarn/cache
|
||||
!.yarn/patches
|
||||
!.yarn/plugins
|
||||
!.yarn/releases
|
||||
!.yarn/sdks
|
||||
!.yarn/versions
|
||||
|
|
14950
.pnp.cjs
generated
Normal file
14950
.pnp.cjs
generated
Normal file
File diff suppressed because one or more lines are too long
266
.pnp.loader.mjs
generated
Normal file
266
.pnp.loader.mjs
generated
Normal file
|
@ -0,0 +1,266 @@
|
|||
import { URL, fileURLToPath, pathToFileURL } from 'url';
|
||||
import fs from 'fs';
|
||||
import path from 'path';
|
||||
import moduleExports, { Module } from 'module';
|
||||
|
||||
var PathType;
|
||||
(function(PathType2) {
|
||||
PathType2[PathType2["File"] = 0] = "File";
|
||||
PathType2[PathType2["Portable"] = 1] = "Portable";
|
||||
PathType2[PathType2["Native"] = 2] = "Native";
|
||||
})(PathType || (PathType = {}));
|
||||
const npath = Object.create(path);
|
||||
const ppath = Object.create(path.posix);
|
||||
npath.cwd = () => process.cwd();
|
||||
ppath.cwd = () => toPortablePath(process.cwd());
|
||||
ppath.resolve = (...segments) => {
|
||||
if (segments.length > 0 && ppath.isAbsolute(segments[0])) {
|
||||
return path.posix.resolve(...segments);
|
||||
} else {
|
||||
return path.posix.resolve(ppath.cwd(), ...segments);
|
||||
}
|
||||
};
|
||||
const contains = function(pathUtils, from, to) {
|
||||
from = pathUtils.normalize(from);
|
||||
to = pathUtils.normalize(to);
|
||||
if (from === to)
|
||||
return `.`;
|
||||
if (!from.endsWith(pathUtils.sep))
|
||||
from = from + pathUtils.sep;
|
||||
if (to.startsWith(from)) {
|
||||
return to.slice(from.length);
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
};
|
||||
npath.fromPortablePath = fromPortablePath;
|
||||
npath.toPortablePath = toPortablePath;
|
||||
npath.contains = (from, to) => contains(npath, from, to);
|
||||
ppath.contains = (from, to) => contains(ppath, from, to);
|
||||
const WINDOWS_PATH_REGEXP = /^([a-zA-Z]:.*)$/;
|
||||
const UNC_WINDOWS_PATH_REGEXP = /^\/\/(\.\/)?(.*)$/;
|
||||
const PORTABLE_PATH_REGEXP = /^\/([a-zA-Z]:.*)$/;
|
||||
const UNC_PORTABLE_PATH_REGEXP = /^\/unc\/(\.dot\/)?(.*)$/;
|
||||
function fromPortablePath(p) {
|
||||
if (process.platform !== `win32`)
|
||||
return p;
|
||||
let portablePathMatch, uncPortablePathMatch;
|
||||
if (portablePathMatch = p.match(PORTABLE_PATH_REGEXP))
|
||||
p = portablePathMatch[1];
|
||||
else if (uncPortablePathMatch = p.match(UNC_PORTABLE_PATH_REGEXP))
|
||||
p = `\\\\${uncPortablePathMatch[1] ? `.\\` : ``}${uncPortablePathMatch[2]}`;
|
||||
else
|
||||
return p;
|
||||
return p.replace(/\//g, `\\`);
|
||||
}
|
||||
function toPortablePath(p) {
|
||||
if (process.platform !== `win32`)
|
||||
return p;
|
||||
p = p.replace(/\\/g, `/`);
|
||||
let windowsPathMatch, uncWindowsPathMatch;
|
||||
if (windowsPathMatch = p.match(WINDOWS_PATH_REGEXP))
|
||||
p = `/${windowsPathMatch[1]}`;
|
||||
else if (uncWindowsPathMatch = p.match(UNC_WINDOWS_PATH_REGEXP))
|
||||
p = `/unc/${uncWindowsPathMatch[1] ? `.dot/` : ``}${uncWindowsPathMatch[2]}`;
|
||||
return p;
|
||||
}
|
||||
|
||||
const builtinModules = new Set(Module.builtinModules || Object.keys(process.binding(`natives`)));
|
||||
const isBuiltinModule = (request) => request.startsWith(`node:`) || builtinModules.has(request);
|
||||
function readPackageScope(checkPath) {
|
||||
const rootSeparatorIndex = checkPath.indexOf(npath.sep);
|
||||
let separatorIndex;
|
||||
do {
|
||||
separatorIndex = checkPath.lastIndexOf(npath.sep);
|
||||
checkPath = checkPath.slice(0, separatorIndex);
|
||||
if (checkPath.endsWith(`${npath.sep}node_modules`))
|
||||
return false;
|
||||
const pjson = readPackage(checkPath + npath.sep);
|
||||
if (pjson) {
|
||||
return {
|
||||
data: pjson,
|
||||
path: checkPath
|
||||
};
|
||||
}
|
||||
} while (separatorIndex > rootSeparatorIndex);
|
||||
return false;
|
||||
}
|
||||
function readPackage(requestPath) {
|
||||
const jsonPath = npath.resolve(requestPath, `package.json`);
|
||||
if (!fs.existsSync(jsonPath))
|
||||
return null;
|
||||
return JSON.parse(fs.readFileSync(jsonPath, `utf8`));
|
||||
}
|
||||
|
||||
async function tryReadFile(path2) {
|
||||
try {
|
||||
return await fs.promises.readFile(path2, `utf8`);
|
||||
} catch (error) {
|
||||
if (error.code === `ENOENT`)
|
||||
return null;
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
function tryParseURL(str, base) {
|
||||
try {
|
||||
return new URL(str, base);
|
||||
} catch {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
function getFileFormat(filepath) {
|
||||
var _a, _b;
|
||||
const ext = path.extname(filepath);
|
||||
switch (ext) {
|
||||
case `.mjs`: {
|
||||
return `module`;
|
||||
}
|
||||
case `.cjs`: {
|
||||
return `commonjs`;
|
||||
}
|
||||
case `.wasm`: {
|
||||
throw new Error(`Unknown file extension ".wasm" for ${filepath}`);
|
||||
}
|
||||
case `.json`: {
|
||||
throw new Error(`Unknown file extension ".json" for ${filepath}`);
|
||||
}
|
||||
case `.js`: {
|
||||
const pkg = readPackageScope(filepath);
|
||||
if (!pkg)
|
||||
return `commonjs`;
|
||||
return (_a = pkg.data.type) != null ? _a : `commonjs`;
|
||||
}
|
||||
default: {
|
||||
const isMain = process.argv[1] === filepath;
|
||||
if (!isMain)
|
||||
return null;
|
||||
const pkg = readPackageScope(filepath);
|
||||
if (!pkg)
|
||||
return `commonjs`;
|
||||
if (pkg.data.type === `module`)
|
||||
return null;
|
||||
return (_b = pkg.data.type) != null ? _b : `commonjs`;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
async function getFormat$1(resolved, context, defaultGetFormat) {
|
||||
const url = tryParseURL(resolved);
|
||||
if ((url == null ? void 0 : url.protocol) !== `file:`)
|
||||
return defaultGetFormat(resolved, context, defaultGetFormat);
|
||||
const format = getFileFormat(fileURLToPath(url));
|
||||
if (format) {
|
||||
return {
|
||||
format
|
||||
};
|
||||
}
|
||||
return defaultGetFormat(resolved, context, defaultGetFormat);
|
||||
}
|
||||
|
||||
async function getSource$1(urlString, context, defaultGetSource) {
|
||||
const url = tryParseURL(urlString);
|
||||
if ((url == null ? void 0 : url.protocol) !== `file:`)
|
||||
return defaultGetSource(urlString, context, defaultGetSource);
|
||||
return {
|
||||
source: await fs.promises.readFile(fileURLToPath(url), `utf8`)
|
||||
};
|
||||
}
|
||||
|
||||
async function load$1(urlString, context, defaultLoad) {
|
||||
const url = tryParseURL(urlString);
|
||||
if ((url == null ? void 0 : url.protocol) !== `file:`)
|
||||
return defaultLoad(urlString, context, defaultLoad);
|
||||
const filePath = fileURLToPath(url);
|
||||
const format = getFileFormat(filePath);
|
||||
if (!format)
|
||||
return defaultLoad(urlString, context, defaultLoad);
|
||||
return {
|
||||
format,
|
||||
source: await fs.promises.readFile(filePath, `utf8`)
|
||||
};
|
||||
}
|
||||
|
||||
const pathRegExp = /^(?![a-zA-Z]:[\\/]|\\\\|\.{0,2}(?:\/|$))((?:node:)?(?:@[^/]+\/)?[^/]+)\/*(.*|)$/;
|
||||
const isRelativeRegexp = /^\.{0,2}\//;
|
||||
async function resolve$1(originalSpecifier, context, defaultResolver) {
|
||||
var _a;
|
||||
const {findPnpApi} = moduleExports;
|
||||
if (!findPnpApi || isBuiltinModule(originalSpecifier))
|
||||
return defaultResolver(originalSpecifier, context, defaultResolver);
|
||||
let specifier = originalSpecifier;
|
||||
const url = tryParseURL(specifier, isRelativeRegexp.test(specifier) ? context.parentURL : void 0);
|
||||
if (url) {
|
||||
if (url.protocol !== `file:`)
|
||||
return defaultResolver(originalSpecifier, context, defaultResolver);
|
||||
specifier = fileURLToPath(url);
|
||||
}
|
||||
const {parentURL, conditions = []} = context;
|
||||
const issuer = parentURL ? fileURLToPath(parentURL) : process.cwd();
|
||||
const pnpapi = (_a = findPnpApi(issuer)) != null ? _a : url ? findPnpApi(specifier) : null;
|
||||
if (!pnpapi)
|
||||
return defaultResolver(originalSpecifier, context, defaultResolver);
|
||||
const dependencyNameMatch = specifier.match(pathRegExp);
|
||||
let allowLegacyResolve = false;
|
||||
if (dependencyNameMatch) {
|
||||
const [, dependencyName, subPath] = dependencyNameMatch;
|
||||
if (subPath === ``) {
|
||||
const resolved = pnpapi.resolveToUnqualified(`${dependencyName}/package.json`, issuer);
|
||||
if (resolved) {
|
||||
const content = await tryReadFile(resolved);
|
||||
if (content) {
|
||||
const pkg = JSON.parse(content);
|
||||
allowLegacyResolve = pkg.exports == null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
const result = pnpapi.resolveRequest(specifier, issuer, {
|
||||
conditions: new Set(conditions),
|
||||
extensions: allowLegacyResolve ? void 0 : []
|
||||
});
|
||||
if (!result)
|
||||
throw new Error(`Resolving '${specifier}' from '${issuer}' failed`);
|
||||
const resultURL = pathToFileURL(result);
|
||||
if (url) {
|
||||
resultURL.search = url.search;
|
||||
resultURL.hash = url.hash;
|
||||
}
|
||||
return {
|
||||
url: resultURL.href
|
||||
};
|
||||
}
|
||||
|
||||
const binding = process.binding(`fs`);
|
||||
const originalfstat = binding.fstat;
|
||||
const ZIP_FD = 2147483648;
|
||||
binding.fstat = function(...args) {
|
||||
const [fd, useBigint, req] = args;
|
||||
if ((fd & ZIP_FD) !== 0 && useBigint === false && req === void 0) {
|
||||
try {
|
||||
const stats = fs.fstatSync(fd);
|
||||
return new Float64Array([
|
||||
stats.dev,
|
||||
stats.mode,
|
||||
stats.nlink,
|
||||
stats.uid,
|
||||
stats.gid,
|
||||
stats.rdev,
|
||||
stats.blksize,
|
||||
stats.ino,
|
||||
stats.size,
|
||||
stats.blocks
|
||||
]);
|
||||
} catch {
|
||||
}
|
||||
}
|
||||
return originalfstat.apply(this, args);
|
||||
};
|
||||
|
||||
const [major, minor] = process.versions.node.split(`.`).map((value) => parseInt(value, 10));
|
||||
const hasConsolidatedHooks = major > 16 || major === 16 && minor >= 12;
|
||||
const resolve = resolve$1;
|
||||
const getFormat = hasConsolidatedHooks ? void 0 : getFormat$1;
|
||||
const getSource = hasConsolidatedHooks ? void 0 : getSource$1;
|
||||
const load = hasConsolidatedHooks ? load$1 : void 0;
|
||||
|
||||
export { getFormat, getSource, load, resolve };
|
6
.vscode/extensions.json
vendored
Normal file
6
.vscode/extensions.json
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"recommendations": [
|
||||
"arcanis.vscode-zipfs",
|
||||
"dbaeumer.vscode-eslint"
|
||||
]
|
||||
}
|
9
.vscode/settings.json
vendored
9
.vscode/settings.json
vendored
|
@ -41,5 +41,10 @@
|
|||
"taskExplorer.enableTsc": false,
|
||||
"taskExplorer.enableWorkspace": true,
|
||||
"taskExplorer.enableExplorerView": false,
|
||||
"taskExplorer.enableSideBar": true
|
||||
}
|
||||
"taskExplorer.enableSideBar": true,
|
||||
"search.exclude": {
|
||||
"**/.yarn": true,
|
||||
"**/.pnp.*": true
|
||||
},
|
||||
"eslint.nodePath": ".yarn/sdks"
|
||||
}
|
||||
|
|
BIN
.yarn/cache/@babel-code-frame-npm-7.16.7-093eb9e124-db2f7faa31.zip
vendored
Normal file
BIN
.yarn/cache/@babel-code-frame-npm-7.16.7-093eb9e124-db2f7faa31.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-validator-identifier-npm-7.16.7-8599fb00fc-dbb3db9d18.zip
vendored
Normal file
BIN
.yarn/cache/@babel-helper-validator-identifier-npm-7.16.7-8599fb00fc-dbb3db9d18.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-highlight-npm-7.17.9-03bef0a0eb-7bdf10228f.zip
vendored
Normal file
BIN
.yarn/cache/@babel-highlight-npm-7.17.9-03bef0a0eb-7bdf10228f.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@cypress-request-npm-2.88.10-44c588c8fc-69c3e3b332.zip
vendored
Normal file
BIN
.yarn/cache/@cypress-request-npm-2.88.10-44c588c8fc-69c3e3b332.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@cypress-xvfb-npm-1.2.4-396a3691f7-7bdcdaeb1b.zip
vendored
Normal file
BIN
.yarn/cache/@cypress-xvfb-npm-1.2.4-396a3691f7-7bdcdaeb1b.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@eslint-eslintrc-npm-1.2.1-62738e6f4a-1f797b9f94.zip
vendored
Normal file
BIN
.yarn/cache/@eslint-eslintrc-npm-1.2.1-62738e6f4a-1f797b9f94.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@fullcalendar-common-npm-5.10.1-de316fd4fd-ac5ad04c9a.zip
vendored
Normal file
BIN
.yarn/cache/@fullcalendar-common-npm-5.10.1-de316fd4fd-ac5ad04c9a.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@fullcalendar-core-npm-5.10.1-ba04f02c15-ee7decffe8.zip
vendored
Normal file
BIN
.yarn/cache/@fullcalendar-core-npm-5.10.1-ba04f02c15-ee7decffe8.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@fullcalendar-daygrid-npm-5.10.1-17bfd14d8e-005e8e829a.zip
vendored
Normal file
BIN
.yarn/cache/@fullcalendar-daygrid-npm-5.10.1-17bfd14d8e-005e8e829a.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@gar-promisify-npm-1.1.3-ac1a325862-4059f790e2.zip
vendored
Normal file
BIN
.yarn/cache/@gar-promisify-npm-1.1.3-ac1a325862-4059f790e2.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@html-validate-stylish-npm-2.0.1-7bbedc745f-82974eaba4.zip
vendored
Normal file
BIN
.yarn/cache/@html-validate-stylish-npm-2.0.1-7bbedc745f-82974eaba4.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@humanwhocodes-config-array-npm-0.6.0-da5f51e2f3-1025b07514.zip
vendored
Normal file
BIN
.yarn/cache/@humanwhocodes-config-array-npm-0.6.0-da5f51e2f3-1025b07514.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@humanwhocodes-object-schema-npm-1.2.1-eb622b5d0e-a824a1ec31.zip
vendored
Normal file
BIN
.yarn/cache/@humanwhocodes-object-schema-npm-1.2.1-eb622b5d0e-a824a1ec31.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@npmcli-fs-npm-2.1.0-3b106d08bc-6ec6d678af.zip
vendored
Normal file
BIN
.yarn/cache/@npmcli-fs-npm-2.1.0-3b106d08bc-6ec6d678af.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@npmcli-move-file-npm-2.0.0-d8bd1d35d2-1388777b50.zip
vendored
Normal file
BIN
.yarn/cache/@npmcli-move-file-npm-2.0.0-d8bd1d35d2-1388777b50.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-bundler-default-npm-2.4.1-149142f961-4fc92c2b95.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-bundler-default-npm-2.4.1-149142f961-4fc92c2b95.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-cache-npm-2.4.1-093594bfc0-c366b46f75.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-cache-npm-2.4.1-093594bfc0-c366b46f75.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-codeframe-npm-2.4.1-5a47d27883-790d70109d.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-codeframe-npm-2.4.1-5a47d27883-790d70109d.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-compressor-raw-npm-2.4.1-6d1afedac5-13ecb37f05.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-compressor-raw-npm-2.4.1-6d1afedac5-13ecb37f05.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-config-default-npm-2.4.1-8952fa4a76-9a93c64455.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-config-default-npm-2.4.1-8952fa4a76-9a93c64455.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-core-npm-2.4.1-ddf153a6e2-3021cf21ce.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-core-npm-2.4.1-ddf153a6e2-3021cf21ce.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-css-darwin-arm64-npm-1.8.1-acdf0ce66c-8.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-css-darwin-arm64-npm-1.8.1-acdf0ce66c-8.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-css-darwin-x64-npm-1.8.1-cff2138fdb-8.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-css-darwin-x64-npm-1.8.1-cff2138fdb-8.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-css-linux-arm64-gnu-npm-1.8.1-5a6def1aae-8.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-css-linux-arm64-gnu-npm-1.8.1-5a6def1aae-8.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-css-linux-arm64-musl-npm-1.8.1-abcb2ea7ee-8.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-css-linux-arm64-musl-npm-1.8.1-abcb2ea7ee-8.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-css-linux-x64-gnu-npm-1.8.1-78db4aa6e9-8.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-css-linux-x64-gnu-npm-1.8.1-78db4aa6e9-8.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-css-linux-x64-musl-npm-1.8.1-70d5d0bd8a-8.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-css-linux-x64-musl-npm-1.8.1-70d5d0bd8a-8.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-css-npm-1.8.1-7a34dd8905-fce0eced33.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-css-npm-1.8.1-7a34dd8905-fce0eced33.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-css-win32-x64-msvc-npm-1.8.1-95537e2772-8.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-css-win32-x64-msvc-npm-1.8.1-95537e2772-8.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-diagnostic-npm-2.4.1-4e66e20da9-910ff440dc.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-diagnostic-npm-2.4.1-4e66e20da9-910ff440dc.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-events-npm-2.4.1-6733201fd5-62df254aba.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-events-npm-2.4.1-6733201fd5-62df254aba.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-fs-npm-2.4.1-53e9ac1c75-3058c844b8.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-fs-npm-2.4.1-53e9ac1c75-3058c844b8.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-fs-search-npm-2.4.1-822d1b7b58-fd6f19bc1b.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-fs-search-npm-2.4.1-822d1b7b58-fd6f19bc1b.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-graph-npm-2.4.1-cb96b5fb24-b5c6c3255e.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-graph-npm-2.4.1-cb96b5fb24-b5c6c3255e.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-hash-npm-2.4.1-4327738ed8-27118048ad.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-hash-npm-2.4.1-4327738ed8-27118048ad.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-logger-npm-2.4.1-93271c6917-f399bef2ec.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-logger-npm-2.4.1-93271c6917-f399bef2ec.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-markdown-ansi-npm-2.4.1-88b7dcc81f-f94afd60a1.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-markdown-ansi-npm-2.4.1-88b7dcc81f-f94afd60a1.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-namer-default-npm-2.4.1-9298a6f672-164dd5d9b6.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-namer-default-npm-2.4.1-9298a6f672-164dd5d9b6.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-node-resolver-core-npm-2.4.1-7c2d88b596-c725300e68.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-node-resolver-core-npm-2.4.1-7c2d88b596-c725300e68.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-optimizer-css-npm-2.4.1-fe4c6615bd-3130a906de.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-optimizer-css-npm-2.4.1-fe4c6615bd-3130a906de.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-optimizer-htmlnano-npm-2.4.1-4cf2487fd4-5e129068ce.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-optimizer-htmlnano-npm-2.4.1-4cf2487fd4-5e129068ce.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-optimizer-image-npm-2.4.1-8800cf39f3-280373ce91.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-optimizer-image-npm-2.4.1-8800cf39f3-280373ce91.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-optimizer-svgo-npm-2.4.1-8eba1ec00d-03172db6e6.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-optimizer-svgo-npm-2.4.1-8eba1ec00d-03172db6e6.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-optimizer-terser-npm-2.4.1-5c162d5198-b9a969a381.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-optimizer-terser-npm-2.4.1-5c162d5198-b9a969a381.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-package-manager-npm-2.4.1-fee8a770b4-7ca98814d5.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-package-manager-npm-2.4.1-fee8a770b4-7ca98814d5.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-packager-css-npm-2.4.1-df648956b6-f052c259f1.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-packager-css-npm-2.4.1-df648956b6-f052c259f1.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-packager-html-npm-2.4.1-2de4503677-16a575de53.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-packager-html-npm-2.4.1-2de4503677-16a575de53.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-packager-js-npm-2.4.1-04a0195118-926d45219d.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-packager-js-npm-2.4.1-04a0195118-926d45219d.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-packager-raw-npm-2.4.1-d41e82e18b-e5ffe97e9e.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-packager-raw-npm-2.4.1-d41e82e18b-e5ffe97e9e.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-packager-svg-npm-2.4.1-9ea23ea683-c56bce51f2.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-packager-svg-npm-2.4.1-9ea23ea683-c56bce51f2.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-plugin-npm-2.4.1-0ce0f86e83-5fec4028bd.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-plugin-npm-2.4.1-0ce0f86e83-5fec4028bd.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-reporter-cli-npm-2.4.1-7443476889-8da114d9e6.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-reporter-cli-npm-2.4.1-7443476889-8da114d9e6.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-reporter-dev-server-npm-2.4.1-3ba5a22ffa-128cc86e8e.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-reporter-dev-server-npm-2.4.1-3ba5a22ffa-128cc86e8e.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-resolver-default-npm-2.4.1-bbfa47a80d-d8eed8b408.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-resolver-default-npm-2.4.1-bbfa47a80d-d8eed8b408.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-runtime-browser-hmr-npm-2.4.1-bcf0bd992e-3598e236b8.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-runtime-browser-hmr-npm-2.4.1-bcf0bd992e-3598e236b8.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-runtime-js-npm-2.4.1-7a0f510a64-28b31d2ef8.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-runtime-js-npm-2.4.1-7a0f510a64-28b31d2ef8.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-runtime-react-refresh-npm-2.4.1-faa0cb880e-a6aec945e2.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-runtime-react-refresh-npm-2.4.1-faa0cb880e-a6aec945e2.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-runtime-service-worker-npm-2.4.1-9359f79bef-077324606e.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-runtime-service-worker-npm-2.4.1-9359f79bef-077324606e.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-source-map-npm-2.0.2-ac47667a2e-5d684ddb9a.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-source-map-npm-2.0.2-ac47667a2e-5d684ddb9a.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-transformer-babel-npm-2.4.1-2a2831c251-33a4b860a8.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-transformer-babel-npm-2.4.1-2a2831c251-33a4b860a8.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-transformer-css-npm-2.4.1-e58f1f4c5d-6a5bc96b91.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-transformer-css-npm-2.4.1-e58f1f4c5d-6a5bc96b91.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-transformer-html-npm-2.4.1-7ee73dc2df-5c51a164d8.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-transformer-html-npm-2.4.1-7ee73dc2df-5c51a164d8.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-transformer-image-npm-2.4.1-c17fe1f31b-5add1cc256.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-transformer-image-npm-2.4.1-c17fe1f31b-5add1cc256.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-transformer-js-npm-2.4.1-5a1b877de8-bc3f90e9cf.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-transformer-js-npm-2.4.1-5a1b877de8-bc3f90e9cf.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-transformer-json-npm-2.4.1-9743664e8b-1d81615d0e.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-transformer-json-npm-2.4.1-9743664e8b-1d81615d0e.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-transformer-postcss-npm-2.4.1-edadd9c21f-e780208452.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-transformer-postcss-npm-2.4.1-edadd9c21f-e780208452.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-transformer-posthtml-npm-2.4.1-57036f9c17-1a517d3e9d.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-transformer-posthtml-npm-2.4.1-57036f9c17-1a517d3e9d.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-transformer-raw-npm-2.4.1-b814a079bc-bacb1e347c.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-transformer-raw-npm-2.4.1-b814a079bc-bacb1e347c.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-transformer-react-refresh-wrap-npm-2.4.1-73701a24ff-61d52402de.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-transformer-react-refresh-wrap-npm-2.4.1-73701a24ff-61d52402de.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-transformer-sass-npm-2.4.1-9d4ee3ae15-9282ed9152.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-transformer-sass-npm-2.4.1-9d4ee3ae15-9282ed9152.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-transformer-svg-npm-2.4.1-80b37f3c6d-f7f9a9a0db.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-transformer-svg-npm-2.4.1-80b37f3c6d-f7f9a9a0db.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-types-npm-2.4.1-c17903e7fc-e893ede1f6.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-types-npm-2.4.1-c17903e7fc-e893ede1f6.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-utils-npm-2.4.1-a8c73ed868-6545002306.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-utils-npm-2.4.1-a8c73ed868-6545002306.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-watcher-npm-2.0.5-bda35fb0f8-ddc5b073e8.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-watcher-npm-2.0.5-bda35fb0f8-ddc5b073e8.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@parcel-workers-npm-2.4.1-6f10a6c026-bc55779f8d.zip
vendored
Normal file
BIN
.yarn/cache/@parcel-workers-npm-2.4.1-6f10a6c026-bc55779f8d.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@popperjs-core-npm-2.10.2-aba0bab6b1-43c189e3eb.zip
vendored
Normal file
BIN
.yarn/cache/@popperjs-core-npm-2.10.2-aba0bab6b1-43c189e3eb.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@popperjs-core-npm-2.11.5-a338f16bd4-fd7f9dca3f.zip
vendored
Normal file
BIN
.yarn/cache/@popperjs-core-npm-2.11.5-a338f16bd4-fd7f9dca3f.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@sidvind-better-ajv-errors-npm-1.1.1-c29b3209cf-56f1ef7537.zip
vendored
Normal file
BIN
.yarn/cache/@sidvind-better-ajv-errors-npm-1.1.1-c29b3209cf-56f1ef7537.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@swc-helpers-npm-0.3.8-3ddc2f312f-105e77db77.zip
vendored
Normal file
BIN
.yarn/cache/@swc-helpers-npm-0.3.8-3ddc2f312f-105e77db77.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@tootallnate-once-npm-2.0.0-e36cf4f140-ad87447820.zip
vendored
Normal file
BIN
.yarn/cache/@tootallnate-once-npm-2.0.0-e36cf4f140-ad87447820.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@trysound-sax-npm-0.2.0-9f763d0295-11226c39b5.zip
vendored
Normal file
BIN
.yarn/cache/@trysound-sax-npm-0.2.0-9f763d0295-11226c39b5.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@types-node-npm-14.18.12-61f7082f71-8a0273caa0.zip
vendored
Normal file
BIN
.yarn/cache/@types-node-npm-14.18.12-61f7082f71-8a0273caa0.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@types-parse-json-npm-4.0.0-298522afa6-fd6bce2b67.zip
vendored
Normal file
BIN
.yarn/cache/@types-parse-json-npm-4.0.0-298522afa6-fd6bce2b67.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@types-sinonjs__fake-timers-npm-8.1.1-95ac9b59b5-ca09d54d47.zip
vendored
Normal file
BIN
.yarn/cache/@types-sinonjs__fake-timers-npm-8.1.1-95ac9b59b5-ca09d54d47.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@types-sizzle-npm-2.3.3-9403924950-586a9fb1f6.zip
vendored
Normal file
BIN
.yarn/cache/@types-sizzle-npm-2.3.3-9403924950-586a9fb1f6.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@types-yauzl-npm-2.10.0-7b242343cb-55d27ae5d3.zip
vendored
Normal file
BIN
.yarn/cache/@types-yauzl-npm-2.10.0-7b242343cb-55d27ae5d3.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/abbrev-npm-1.1.1-3659247eab-a4a97ec07d.zip
vendored
Normal file
BIN
.yarn/cache/abbrev-npm-1.1.1-3659247eab-a4a97ec07d.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/abortcontroller-polyfill-npm-1.7.3-3b01198b7a-55739d7f0c.zip
vendored
Normal file
BIN
.yarn/cache/abortcontroller-polyfill-npm-1.7.3-3b01198b7a-55739d7f0c.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/acorn-jsx-npm-5.3.2-d7594599ea-c3d3b2a89c.zip
vendored
Normal file
BIN
.yarn/cache/acorn-jsx-npm-5.3.2-d7594599ea-c3d3b2a89c.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/acorn-npm-8.7.0-ca81d350ee-e0f79409d6.zip
vendored
Normal file
BIN
.yarn/cache/acorn-npm-8.7.0-ca81d350ee-e0f79409d6.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/acorn-walk-npm-8.2.0-2f2cac3177-1715e76c01.zip
vendored
Normal file
BIN
.yarn/cache/acorn-walk-npm-8.2.0-2f2cac3177-1715e76c01.zip
vendored
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue