mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-03-19 15:01:06 +08:00
Merge pull request #1087 from lowdefy/fix-build
Fix build by updating yarn lock.
This commit is contained in:
commit
b7bbef571e
32527
.pnp.cjs
generated
Executable file
32527
.pnp.cjs
generated
Executable file
File diff suppressed because one or more lines are too long
249
.pnp.loader.mjs
generated
Normal file
249
.pnp.loader.mjs
generated
Normal file
@ -0,0 +1,249 @@
|
||||
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;
|
||||
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.replace(/\\/g, `/`);
|
||||
}
|
||||
|
||||
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) {
|
||||
try {
|
||||
return new URL(str);
|
||||
} catch {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
function getFileFormat(filepath) {
|
||||
var _a;
|
||||
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 (_a = pkg.data.type) != null ? _a : `commonjs`;
|
||||
}
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
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:)?(?:@[^/]+\/)?[^/]+)\/*(.*|)$/;
|
||||
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);
|
||||
if (url) {
|
||||
if (url.protocol !== `file:`)
|
||||
return defaultResolver(originalSpecifier, context, defaultResolver);
|
||||
specifier = fileURLToPath(specifier);
|
||||
}
|
||||
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`);
|
||||
return {
|
||||
url: pathToFileURL(result).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 };
|
BIN
.yarn/cache/@next-swc-darwin-x64-npm-12.0.10-4a8143783e-8.zip
vendored
Normal file
BIN
.yarn/cache/@next-swc-darwin-x64-npm-12.0.10-4a8143783e-8.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@next-swc-linux-x64-gnu-npm-12.0.10-6de70157be-8.zip
vendored
Normal file
BIN
.yarn/cache/@next-swc-linux-x64-gnu-npm-12.0.10-6de70157be-8.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@next-swc-linux-x64-musl-npm-12.0.10-dcc86673b4-8.zip
vendored
Normal file
BIN
.yarn/cache/@next-swc-linux-x64-musl-npm-12.0.10-dcc86673b4-8.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@next-swc-win32-x64-msvc-npm-12.0.10-c34c9ce81b-8.zip
vendored
Normal file
BIN
.yarn/cache/@next-swc-win32-x64-msvc-npm-12.0.10-c34c9ce81b-8.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@swc-core-darwin-x64-npm-1.2.135-050e799c16-8.zip
vendored
Normal file
BIN
.yarn/cache/@swc-core-darwin-x64-npm-1.2.135-050e799c16-8.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@swc-core-linux-x64-gnu-npm-1.2.135-751dc94862-8.zip
vendored
Normal file
BIN
.yarn/cache/@swc-core-linux-x64-gnu-npm-1.2.135-751dc94862-8.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@swc-core-linux-x64-musl-npm-1.2.135-1338b9e7b3-8.zip
vendored
Normal file
BIN
.yarn/cache/@swc-core-linux-x64-musl-npm-1.2.135-1338b9e7b3-8.zip
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@swc-core-win32-x64-msvc-npm-1.2.135-93dc280888-8.zip
vendored
Normal file
BIN
.yarn/cache/@swc-core-win32-x64-msvc-npm-1.2.135-93dc280888-8.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/babel-plugin-polyfill-corejs3-npm-0.5.2-b8b8ecbf76-2f3184c73f.zip
vendored
Normal file
BIN
.yarn/cache/babel-plugin-polyfill-corejs3-npm-0.5.2-b8b8ecbf76-2f3184c73f.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/caniuse-lite-npm-1.0.30001305-1e48d5bc52-dc27fb43e0.zip
vendored
Normal file
BIN
.yarn/cache/caniuse-lite-npm-1.0.30001305-1e48d5bc52-dc27fb43e0.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/core-js-compat-npm-3.21.0-d8d630fe01-7914d2f8a2.zip
vendored
Normal file
BIN
.yarn/cache/core-js-compat-npm-3.21.0-d8d630fe01-7914d2f8a2.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/detect-libc-npm-2.0.0-725ffd9c90-cb96738a4a.zip
vendored
Normal file
BIN
.yarn/cache/detect-libc-npm-2.0.0-725ffd9c90-cb96738a4a.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/electron-to-chromium-npm-1.4.61-93eef01292-b07d232ef1.zip
vendored
Normal file
BIN
.yarn/cache/electron-to-chromium-npm-1.4.61-93eef01292-b07d232ef1.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/keyv-npm-4.0.5-9087738a8c-968ec062e6.zip
vendored
BIN
.yarn/cache/keyv-npm-4.0.5-9087738a8c-968ec062e6.zip
vendored
Binary file not shown.
BIN
.yarn/cache/keyv-npm-4.1.0-9486160bdd-3f2f15b3e4.zip
vendored
Normal file
BIN
.yarn/cache/keyv-npm-4.1.0-9486160bdd-3f2f15b3e4.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/node-abi-npm-3.7.0-e2e71238f0-292bf509e6.zip
vendored
Normal file
BIN
.yarn/cache/node-abi-npm-3.7.0-e2e71238f0-292bf509e6.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/prebuild-install-npm-7.0.1-f63021d62e-117c8966f2.zip
vendored
Normal file
BIN
.yarn/cache/prebuild-install-npm-7.0.1-f63021d62e-117c8966f2.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/scroll-into-view-if-needed-npm-2.2.29-9b25631f96-6b888404cc.zip
vendored
Normal file
BIN
.yarn/cache/scroll-into-view-if-needed-npm-2.2.29-9b25631f96-6b888404cc.zip
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/simple-get-npm-4.0.1-fa2a97645d-e4132fd27c.zip
vendored
Normal file
BIN
.yarn/cache/simple-get-npm-4.0.1-fa2a97645d-e4132fd27c.zip
vendored
Normal file
Binary file not shown.
@ -19,6 +19,9 @@ packageExtensions:
|
||||
dependencies:
|
||||
react: "*"
|
||||
react-dom: "*"
|
||||
rc-dropdown@*:
|
||||
dependencies:
|
||||
rc-util: "*"
|
||||
rc-input-number@*:
|
||||
dependencies:
|
||||
react: "*"
|
||||
|
@ -16,7 +16,26 @@
|
||||
|
||||
import { type } from '@lowdefy/helpers';
|
||||
import mingo from 'mingo';
|
||||
import 'mingo/init/system';
|
||||
|
||||
// TODO: fix build to work with:
|
||||
// import 'mingo/init/system';
|
||||
|
||||
import { useOperators, OperatorType } from 'mingo/core.js';
|
||||
import * as accumulatorOperators from 'mingo/operators/accumulator/index.js';
|
||||
import * as expressionOperators from 'mingo/operators/expression/index.js';
|
||||
import * as pipelineOperators from 'mingo/operators/pipeline/index.js';
|
||||
import * as queryOperators from 'mingo/operators/query/index.js';
|
||||
import * as projectionOperators from 'mingo/operators/projection/index.js';
|
||||
|
||||
// "import * as" is returning different object structures when the connection is being
|
||||
// imported in the build or when running the tests.
|
||||
// So we check for the a default object with all the named exports, otherwise the
|
||||
// returned object has all the named exports.
|
||||
useOperators(OperatorType.ACCUMULATOR, accumulatorOperators.default || accumulatorOperators);
|
||||
useOperators(OperatorType.EXPRESSION, expressionOperators.default || expressionOperators);
|
||||
useOperators(OperatorType.PIPELINE, pipelineOperators.default || pipelineOperators);
|
||||
useOperators(OperatorType.QUERY, queryOperators.default || queryOperators);
|
||||
useOperators(OperatorType.PROJECTION, projectionOperators.default || projectionOperators);
|
||||
|
||||
function mingoAggregation({ input = [], pipeline = [] }) {
|
||||
if (!type.isArray(input)) {
|
||||
|
131
yarn.lock
131
yarn.lock
@ -5445,14 +5445,14 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"babel-plugin-polyfill-corejs3@npm:^0.5.0":
|
||||
version: 0.5.1
|
||||
resolution: "babel-plugin-polyfill-corejs3@npm:0.5.1"
|
||||
version: 0.5.2
|
||||
resolution: "babel-plugin-polyfill-corejs3@npm:0.5.2"
|
||||
dependencies:
|
||||
"@babel/helper-define-polyfill-provider": ^0.3.1
|
||||
core-js-compat: ^3.20.0
|
||||
core-js-compat: ^3.21.0
|
||||
peerDependencies:
|
||||
"@babel/core": ^7.0.0-0
|
||||
checksum: a8945755a1c718c0a18d3137efd962b0555caab4f9186f257e47e95ea077262dfedc4ab6bbbc5d8c09e0455a49fc1d3a97cc24a49d33ca8a093344b9f1ae73e8
|
||||
checksum: 2f3184c73f80f00ac876a5ebcad945fd8d2ae70e5f85b7ab6cc3bc69bc74025f4f7070de7abbb2a7274c78e130bd34fc13f4c85342da28205930364a1ef0aa21
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@ -5870,9 +5870,9 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"caniuse-lite@npm:^1.0.30001283, caniuse-lite@npm:^1.0.30001286":
|
||||
version: 1.0.30001304
|
||||
resolution: "caniuse-lite@npm:1.0.30001304"
|
||||
checksum: 63092ec6c65346f57026d9c7bee0548b77fd606819ca205ee3d99c948e4701b8820c365c00b79d4a4b96f3f0045bc0be767149b8edb74f7223d16cb30630f81e
|
||||
version: 1.0.30001305
|
||||
resolution: "caniuse-lite@npm:1.0.30001305"
|
||||
checksum: dc27fb43e0f4af157d561dcb2ab83b732c59b58b14bfcfa5136ff7fa0c76ad200b5d9bdadb6737982812387d3f247eb5e7afb87cbdd331ccf717da6b544c3f5c
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@ -6546,20 +6546,20 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"core-js-compat@npm:^3.20.0, core-js-compat@npm:^3.20.2":
|
||||
version: 3.20.3
|
||||
resolution: "core-js-compat@npm:3.20.3"
|
||||
"core-js-compat@npm:^3.20.2, core-js-compat@npm:^3.21.0":
|
||||
version: 3.21.0
|
||||
resolution: "core-js-compat@npm:3.21.0"
|
||||
dependencies:
|
||||
browserslist: ^4.19.1
|
||||
semver: 7.0.0
|
||||
checksum: ebb7af23e798e87b9a5fc00cb304089160b5e259db7002a1026d81d928a74a32cd9c4adda4959526fa75382f074e635fedd6590d16bda60df751734d033988e6
|
||||
checksum: 7914d2f8a2f7c1b400e1c04c7560f4c96028bf23cec3cea6063ba594e38023cccbd38ad88af41c5d6b65450e97a989eb37598f609e3f7fbc6ebc1856d4195cbb
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"core-js-pure@npm:^3.20.2":
|
||||
version: 3.20.3
|
||||
resolution: "core-js-pure@npm:3.20.3"
|
||||
checksum: a8ec44390849bcf0502f20e6349fa087944bb88ac83d796d7fd5ace837d242308aae54b247a6a56bec463e5ab9be08dfad48d389673c34e8e31cc0a661a17a95
|
||||
version: 3.21.0
|
||||
resolution: "core-js-pure@npm:3.21.0"
|
||||
checksum: 0b9b72fb241b106997a14fe8099bf62d38f9e5e0e6b46f8ae71f3b05822508a27f34e629f3d7766042a33ae3438938aa401aa1a5d2dbc296affaefed5fe06d68
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@ -6795,15 +6795,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"decompress-response@npm:^4.2.0":
|
||||
version: 4.2.1
|
||||
resolution: "decompress-response@npm:4.2.1"
|
||||
dependencies:
|
||||
mimic-response: ^2.0.0
|
||||
checksum: 4e783ca4dfe9417354d61349750fe05236f565a4415a6ca20983a311be2371debaedd9104c0b0e7b36e5f167aeaae04f84f1a0b3f8be4162f1d7d15598b8fdba
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"decompress-response@npm:^6.0.0":
|
||||
version: 6.0.0
|
||||
resolution: "decompress-response@npm:6.0.0"
|
||||
@ -6992,12 +6983,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"detect-libc@npm:^1.0.3":
|
||||
version: 1.0.3
|
||||
resolution: "detect-libc@npm:1.0.3"
|
||||
bin:
|
||||
detect-libc: ./bin/detect-libc.js
|
||||
checksum: daaaed925ffa7889bd91d56e9624e6c8033911bb60f3a50a74a87500680652969dbaab9526d1e200a4c94acf80fc862a22131841145a0a8482d60a99c24f4a3e
|
||||
"detect-libc@npm:^2.0.0":
|
||||
version: 2.0.0
|
||||
resolution: "detect-libc@npm:2.0.0"
|
||||
checksum: cb96738a4a6fd2cc7b2e2c86624d0fc4a1f6e2b9502175b8d04e71a1075d65bcf9c3489b2f9a459e4caccc46fefa96a3c8f3182ddc876d850f639c956f7c5610
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@ -7233,9 +7222,9 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"electron-to-chromium@npm:^1.4.17":
|
||||
version: 1.4.59
|
||||
resolution: "electron-to-chromium@npm:1.4.59"
|
||||
checksum: f058ae0197f2eda65698956467935a3b79470a9264e95a4a549cdfce85c8ad9fc07152ec409e9c51c1ad699558ff50c1b3785966272df0e4e0edd1e51d758768
|
||||
version: 1.4.61
|
||||
resolution: "electron-to-chromium@npm:1.4.61"
|
||||
checksum: b07d232ef1721bd30a3825f1443e237d1a7ffc88c1ae09feb5f2ce281b4832216638453614b0786c26cfeee52d0c0a2a633a556c4b3059234f2230a590e09be3
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@ -10409,22 +10398,22 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"keytar@npm:^7.3.0":
|
||||
version: 7.7.0
|
||||
resolution: "keytar@npm:7.7.0"
|
||||
version: 7.8.0
|
||||
resolution: "keytar@npm:7.8.0"
|
||||
dependencies:
|
||||
node-addon-api: ^3.0.0
|
||||
node-addon-api: ^4.3.0
|
||||
node-gyp: latest
|
||||
prebuild-install: ^6.0.0
|
||||
checksum: ea180b713a15e7baa52323d38940255d2df809ed5c2f91d132bf1c44c93515ad28e41119a4589786c28b1c2728010e2b259b8083c032484df1ced61655ea3d6e
|
||||
prebuild-install: ^7.0.1
|
||||
checksum: 4a81f4394aea3c76fe1c4103a3cb8e447302e89306a281dcac257d9435d43b5e2eb541997e18e1f094e6136fef44951d43dedc593a6aa190982845b382a7d4cc
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"keyv@npm:^4.0.0":
|
||||
version: 4.0.5
|
||||
resolution: "keyv@npm:4.0.5"
|
||||
version: 4.1.0
|
||||
resolution: "keyv@npm:4.1.0"
|
||||
dependencies:
|
||||
json-buffer: 3.0.1
|
||||
checksum: 968ec062e66a660bd1c403b2932f602948ea76b17f8419bb04166491c1f186da1c3b39db4ccd1fdb6a19a4dcb374334455dd3ac31e13a70000c81e2daa866117
|
||||
checksum: 3f2f15b3e47fb2ac4bcf0323c814db18f92596d0cd7ec938dbe89947e54ce64ab4fac87ec87404213a410b50493648613c30afcf313acf98bcd47f052b8ea831
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@ -11600,13 +11589,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"mimic-response@npm:^2.0.0":
|
||||
version: 2.1.0
|
||||
resolution: "mimic-response@npm:2.1.0"
|
||||
checksum: 014fad6ab936657e5f2f48bd87af62a8e928ebe84472aaf9e14fec4fcb31257a5edff77324d8ac13ddc6685ba5135cf16e381efac324e5f174fb4ddbf902bf07
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"mimic-response@npm:^3.1.0":
|
||||
version: 3.1.0
|
||||
resolution: "mimic-response@npm:3.1.0"
|
||||
@ -12140,12 +12122,12 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"node-abi@npm:^2.21.0":
|
||||
version: 2.30.1
|
||||
resolution: "node-abi@npm:2.30.1"
|
||||
"node-abi@npm:^3.3.0":
|
||||
version: 3.7.0
|
||||
resolution: "node-abi@npm:3.7.0"
|
||||
dependencies:
|
||||
semver: ^5.4.1
|
||||
checksum: 3f4b0c912ce4befcd7ceab4493ba90b51d60dfcc90f567c93f731d897ef8691add601cb64c181683b800f21d479d68f9a6e15d8ab8acd16a5706333b9e30a881
|
||||
semver: ^7.3.5
|
||||
checksum: 292bf509e6f93361d9f0dc4883241dbd59460ed4c78af3a15dcb3418381e58068f8c0c6ea9914f8b527c0a2a50d75210798acf245801f0e2e24bfb88629db6c3
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@ -12156,16 +12138,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"node-addon-api@npm:^3.0.0":
|
||||
version: 3.2.1
|
||||
resolution: "node-addon-api@npm:3.2.1"
|
||||
dependencies:
|
||||
node-gyp: latest
|
||||
checksum: 2369986bb0881ccd9ef6bacdf39550e07e089a9c8ede1cbc5fc7712d8e2faa4d50da0e487e333d4125f8c7a616c730131d1091676c9d499af1d74560756b4a18
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"node-addon-api@npm:^4.2.0":
|
||||
"node-addon-api@npm:^4.2.0, node-addon-api@npm:^4.3.0":
|
||||
version: 4.3.0
|
||||
resolution: "node-addon-api@npm:4.3.0"
|
||||
dependencies:
|
||||
@ -13323,26 +13296,26 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"prebuild-install@npm:^6.0.0":
|
||||
version: 6.1.4
|
||||
resolution: "prebuild-install@npm:6.1.4"
|
||||
"prebuild-install@npm:^7.0.1":
|
||||
version: 7.0.1
|
||||
resolution: "prebuild-install@npm:7.0.1"
|
||||
dependencies:
|
||||
detect-libc: ^1.0.3
|
||||
detect-libc: ^2.0.0
|
||||
expand-template: ^2.0.3
|
||||
github-from-package: 0.0.0
|
||||
minimist: ^1.2.3
|
||||
mkdirp-classic: ^0.5.3
|
||||
napi-build-utils: ^1.0.1
|
||||
node-abi: ^2.21.0
|
||||
node-abi: ^3.3.0
|
||||
npmlog: ^4.0.1
|
||||
pump: ^3.0.0
|
||||
rc: ^1.2.7
|
||||
simple-get: ^3.0.3
|
||||
simple-get: ^4.0.0
|
||||
tar-fs: ^2.0.0
|
||||
tunnel-agent: ^0.6.0
|
||||
bin:
|
||||
prebuild-install: bin.js
|
||||
checksum: de4313eda821305912af922700a2db04bb8e77fe8aa9c2788550f1000c026cbefc82da468ec0c0a37764c5417bd8169dbd540928535fb38d00bb9bbd673dd217
|
||||
checksum: 117c8966f221242633bbf245755fb469dabc7085909f5e3db83359d6281a88dedbdada7e839315805a192c74b7cce3ed1a86c1382a8d950c1ea60a9d5d8e7bf0
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@ -14169,7 +14142,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"rc-util@npm:^5.0.0, rc-util@npm:^5.0.1, rc-util@npm:^5.0.6, rc-util@npm:^5.0.7, rc-util@npm:^5.12.0, rc-util@npm:^5.14.0, rc-util@npm:^5.15.0, rc-util@npm:^5.16.1, rc-util@npm:^5.2.0, rc-util@npm:^5.2.1, rc-util@npm:^5.3.0, rc-util@npm:^5.4.0, rc-util@npm:^5.5.0, rc-util@npm:^5.5.1, rc-util@npm:^5.6.1, rc-util@npm:^5.7.0, rc-util@npm:^5.8.0, rc-util@npm:^5.9.4, rc-util@npm:^5.9.8":
|
||||
"rc-util@npm:*, rc-util@npm:^5.0.0, rc-util@npm:^5.0.1, rc-util@npm:^5.0.6, rc-util@npm:^5.0.7, rc-util@npm:^5.12.0, rc-util@npm:^5.14.0, rc-util@npm:^5.15.0, rc-util@npm:^5.16.1, rc-util@npm:^5.2.0, rc-util@npm:^5.2.1, rc-util@npm:^5.3.0, rc-util@npm:^5.4.0, rc-util@npm:^5.5.0, rc-util@npm:^5.5.1, rc-util@npm:^5.6.1, rc-util@npm:^5.7.0, rc-util@npm:^5.8.0, rc-util@npm:^5.9.4, rc-util@npm:^5.9.8":
|
||||
version: 5.17.0
|
||||
resolution: "rc-util@npm:5.17.0"
|
||||
dependencies:
|
||||
@ -15035,11 +15008,11 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"scroll-into-view-if-needed@npm:^2.2.25":
|
||||
version: 2.2.28
|
||||
resolution: "scroll-into-view-if-needed@npm:2.2.28"
|
||||
version: 2.2.29
|
||||
resolution: "scroll-into-view-if-needed@npm:2.2.29"
|
||||
dependencies:
|
||||
compute-scroll-into-view: ^1.0.17
|
||||
checksum: 0b18d33118091ae0b5b1bd67913042b6903d2ad11d777e7763530317feee46d867e6367f9eec7213a15b62c464a008cfd79bcabb16490fe097e0e5448bee2277
|
||||
checksum: 6b888404ccf68fe2f2f1da8977e1a8a0a64a7139352e02e98621a0e8be3b3db393519ee3dcfb7c32aff3c4790a36829f1be1cccc0cfb2b90a60a61caa669eee2
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@ -15062,7 +15035,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"semver@npm:2 || 3 || 4 || 5, semver@npm:^5.4.1, semver@npm:^5.6.0, semver@npm:^5.7.1":
|
||||
"semver@npm:2 || 3 || 4 || 5, semver@npm:^5.6.0, semver@npm:^5.7.1":
|
||||
version: 5.7.1
|
||||
resolution: "semver@npm:5.7.1"
|
||||
bin:
|
||||
@ -15175,14 +15148,14 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"simple-get@npm:^3.0.3":
|
||||
version: 3.1.0
|
||||
resolution: "simple-get@npm:3.1.0"
|
||||
"simple-get@npm:^4.0.0":
|
||||
version: 4.0.1
|
||||
resolution: "simple-get@npm:4.0.1"
|
||||
dependencies:
|
||||
decompress-response: ^4.2.0
|
||||
decompress-response: ^6.0.0
|
||||
once: ^1.3.1
|
||||
simple-concat: ^1.0.0
|
||||
checksum: cca91a9ab2b532fa8d367757c196b54e2dfe3325aab0298d66a3e2a45a29a9d335d1a3fb41f036dad14000f78baddd4170fbf9621d72869791d2912baf9469aa
|
||||
checksum: e4132fd27cf7af230d853fa45c1b8ce900cb430dd0a3c6d3829649fe4f2b26574c803698076c4006450efb0fad2ba8c5455fbb5755d4b0a5ec42d4f12b31d27e
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user