mirror of
https://github.com/DeterminateSystems/magic-nix-cache-action.git
synced 2024-12-26 09:20:35 +01:00
Update detsys-ts dependency
This commit is contained in:
parent
f9ba2c25aa
commit
a273ea17a6
2 changed files with 189 additions and 229 deletions
310
dist/index.js
generated
vendored
310
dist/index.js
generated
vendored
|
@ -44765,165 +44765,6 @@ class Keyv extends EventEmitter {
|
|||
module.exports = Keyv;
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 6017:
|
||||
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
||||
|
||||
var __webpack_unused_export__;
|
||||
|
||||
/*!
|
||||
* linux-release-info
|
||||
* Get Linux release info (distribution name, version, arch, release, etc.)
|
||||
* from '/etc/os-release' or '/usr/lib/os-release' files and from native os
|
||||
* module. On Windows and Darwin platforms it only returns common node os module
|
||||
* info (platform, hostname, release, and arch)
|
||||
*
|
||||
* Licensed under MIT
|
||||
* Copyright (c) 2018-2020 [Samuel Carreira]
|
||||
*/
|
||||
__webpack_unused_export__ = ({ value: true });
|
||||
const fs = __nccwpck_require__(7147);
|
||||
const os = __nccwpck_require__(2037);
|
||||
const util_1 = __nccwpck_require__(3837);
|
||||
const readFileAsync = util_1.promisify(fs.readFile);
|
||||
const linuxReleaseInfoOptionsDefaults = {
|
||||
mode: 'async',
|
||||
custom_file: null,
|
||||
debug: false
|
||||
};
|
||||
/**
|
||||
* Get OS release info from 'os-release' file and from native os module
|
||||
* on Windows or Darwin it only returns common os module info
|
||||
* (uses native fs module)
|
||||
* @returns {object} info from the current os
|
||||
*/
|
||||
function releaseInfo(options) {
|
||||
options = { ...linuxReleaseInfoOptionsDefaults, ...options };
|
||||
const searchOsreleaseFileList = osreleaseFileList(options.custom_file);
|
||||
async function readAsyncOsreleaseFile(searchOsreleaseFileList, options) {
|
||||
let fileData = null;
|
||||
for (let os_release_file of searchOsreleaseFileList) {
|
||||
try {
|
||||
if (options.debug) {
|
||||
console.log(`Trying to read '${os_release_file}'...`);
|
||||
}
|
||||
fileData = await readFileAsync(os_release_file, 'binary');
|
||||
if (options.debug) {
|
||||
console.log('Read data:\n' + fileData);
|
||||
}
|
||||
break;
|
||||
}
|
||||
catch (error) {
|
||||
if (options.debug) {
|
||||
console.error(error);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (fileData === null) {
|
||||
throw new Error('Cannot read os-release file!');
|
||||
//return getOsInfo();
|
||||
}
|
||||
return formatFileData(getOsInfo(), fileData);
|
||||
}
|
||||
function readSyncOsreleaseFile(searchOsreleaseFileList, options) {
|
||||
let fileData = null;
|
||||
for (let os_release_file of searchOsreleaseFileList) {
|
||||
try {
|
||||
if (options.debug) {
|
||||
console.log(`Trying to read '${os_release_file}'...`);
|
||||
}
|
||||
fileData = fs.readFileSync(os_release_file, 'binary');
|
||||
if (options.debug) {
|
||||
console.log('Read data:\n' + fileData);
|
||||
}
|
||||
break;
|
||||
}
|
||||
catch (error) {
|
||||
if (options.debug) {
|
||||
console.error(error);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (fileData === null) {
|
||||
throw new Error('Cannot read os-release file!');
|
||||
//return getOsInfo();
|
||||
}
|
||||
return formatFileData(getOsInfo(), fileData);
|
||||
}
|
||||
if (os.type() !== 'Linux') {
|
||||
if (options.mode === 'sync') {
|
||||
return getOsInfo();
|
||||
}
|
||||
else {
|
||||
return Promise.resolve(getOsInfo());
|
||||
}
|
||||
}
|
||||
if (options.mode === 'sync') {
|
||||
return readSyncOsreleaseFile(searchOsreleaseFileList, options);
|
||||
}
|
||||
else {
|
||||
return Promise.resolve(readAsyncOsreleaseFile(searchOsreleaseFileList, options));
|
||||
}
|
||||
}
|
||||
exports.o = releaseInfo;
|
||||
/**
|
||||
* Format file data: convert data to object keys/values
|
||||
*
|
||||
* @param {object} sourceData Source object to be appended
|
||||
* @param {string} srcParseData Input file data to be parsed
|
||||
* @returns {object} Formated object
|
||||
*/
|
||||
function formatFileData(sourceData, srcParseData) {
|
||||
const lines = srcParseData.split('\n');
|
||||
// @ts-ignore
|
||||
lines.forEach(element => {
|
||||
const linedata = element.split('=');
|
||||
if (linedata.length === 2) {
|
||||
linedata[1] = linedata[1].replace(/["'\r]/gi, ''); // remove quotes and return character
|
||||
Object.defineProperty(sourceData, linedata[0].toLowerCase(), {
|
||||
value: linedata[1],
|
||||
writable: true,
|
||||
enumerable: true,
|
||||
configurable: true
|
||||
});
|
||||
}
|
||||
});
|
||||
return sourceData;
|
||||
}
|
||||
/**
|
||||
* Export a list of os-release files
|
||||
*
|
||||
* @param {string} customFile optional custom complete filepath
|
||||
* @returns {array} list of os-release files
|
||||
*/
|
||||
function osreleaseFileList(customFile) {
|
||||
const DEFAULT_OS_RELEASE_FILES = ['/etc/os-release', '/usr/lib/os-release'];
|
||||
if (!customFile) {
|
||||
return DEFAULT_OS_RELEASE_FILES;
|
||||
}
|
||||
else {
|
||||
return Array(customFile);
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Get OS Basic Info
|
||||
* (uses node 'os' native module)
|
||||
*
|
||||
* @returns {object} os basic info
|
||||
*/
|
||||
function getOsInfo() {
|
||||
const osInfo = {
|
||||
type: os.type(),
|
||||
platform: os.platform(),
|
||||
hostname: os.hostname(),
|
||||
arch: os.arch(),
|
||||
release: os.release()
|
||||
};
|
||||
return osInfo;
|
||||
}
|
||||
//# sourceMappingURL=index.js.map
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 4015:
|
||||
|
@ -78917,7 +78758,7 @@ module.exports.implForWrapper = function (wrapper) {
|
|||
|
||||
/***/ }),
|
||||
|
||||
/***/ 1625:
|
||||
/***/ 6017:
|
||||
/***/ (function(module, __unused_webpack_exports, __nccwpck_require__) {
|
||||
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
@ -79194,7 +79035,7 @@ module.exports.implForWrapper = function (wrapper) {
|
|||
|
||||
XMLDTDEntity = __nccwpck_require__(7969);
|
||||
|
||||
XMLDTDElement = __nccwpck_require__(1625);
|
||||
XMLDTDElement = __nccwpck_require__(6017);
|
||||
|
||||
XMLDTDNotation = __nccwpck_require__(7944);
|
||||
|
||||
|
@ -79651,7 +79492,7 @@ module.exports.implForWrapper = function (wrapper) {
|
|||
|
||||
XMLDTDEntity = __nccwpck_require__(7969);
|
||||
|
||||
XMLDTDElement = __nccwpck_require__(1625);
|
||||
XMLDTDElement = __nccwpck_require__(6017);
|
||||
|
||||
XMLDTDNotation = __nccwpck_require__(7944);
|
||||
|
||||
|
@ -82065,7 +81906,7 @@ module.exports.implForWrapper = function (wrapper) {
|
|||
|
||||
XMLDTDAttList = __nccwpck_require__(1325);
|
||||
|
||||
XMLDTDElement = __nccwpck_require__(1625);
|
||||
XMLDTDElement = __nccwpck_require__(6017);
|
||||
|
||||
XMLDTDEntity = __nccwpck_require__(7969);
|
||||
|
||||
|
@ -93907,15 +93748,13 @@ const got = source_create(defaults);
|
|||
|
||||
// EXTERNAL MODULE: ./node_modules/.pnpm/@actions+exec@1.1.1/node_modules/@actions/exec/lib/exec.js
|
||||
var exec = __nccwpck_require__(7775);
|
||||
// EXTERNAL MODULE: ./node_modules/.pnpm/linux-release-info@3.0.0/node_modules/linux-release-info/dist/index.js
|
||||
var linux_release_info_dist = __nccwpck_require__(6017);
|
||||
// EXTERNAL MODULE: external "os"
|
||||
var external_os_ = __nccwpck_require__(2037);
|
||||
// EXTERNAL MODULE: ./node_modules/.pnpm/@actions+cache@3.2.4/node_modules/@actions/cache/lib/cache.js
|
||||
var cache = __nccwpck_require__(6878);
|
||||
;// CONCATENATED MODULE: external "node:stream/promises"
|
||||
const external_node_stream_promises_namespaceObject = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("node:stream/promises");
|
||||
;// CONCATENATED MODULE: ./node_modules/.pnpm/github.com+DeterminateSystems+detsys-ts@ea7ff7d4a2488e08b5397cda1a0c56e7f431f43c_3setax7rh56ntlp3ugygwj3gvy/node_modules/detsys-ts/dist/index.js
|
||||
;// CONCATENATED MODULE: ./node_modules/.pnpm/github.com+DeterminateSystems+detsys-ts@56a244c061429692b1c7d80fc068d684db3ae4d2_nqhbjyaof246q4gvygpbo6m4na/node_modules/detsys-ts/dist/index.js
|
||||
var __defProp = Object.defineProperty;
|
||||
var __export = (target, all) => {
|
||||
for (var name in all)
|
||||
|
@ -93925,10 +93764,121 @@ var __export = (target, all) => {
|
|||
// package.json
|
||||
var version = "1.0.0";
|
||||
|
||||
// src/actions-core-platform.ts
|
||||
// src/linux-release-info.ts
|
||||
|
||||
|
||||
|
||||
var readFileAsync = (0,external_node_util_.promisify)(external_node_fs_namespaceObject.readFile);
|
||||
var linuxReleaseInfoOptionsDefaults = {
|
||||
mode: "async",
|
||||
customFile: null,
|
||||
debug: false
|
||||
};
|
||||
function releaseInfo(infoOptions) {
|
||||
const options = { ...linuxReleaseInfoOptionsDefaults, ...infoOptions };
|
||||
const searchOsReleaseFileList = osReleaseFileList(
|
||||
options.customFile
|
||||
);
|
||||
if (external_node_os_.type() !== "Linux") {
|
||||
if (options.mode === "sync") {
|
||||
return getOsInfo();
|
||||
} else {
|
||||
return Promise.resolve(getOsInfo());
|
||||
}
|
||||
}
|
||||
if (options.mode === "sync") {
|
||||
return readSyncOsreleaseFile(searchOsReleaseFileList, options);
|
||||
} else {
|
||||
return Promise.resolve(
|
||||
readAsyncOsReleaseFile(searchOsReleaseFileList, options)
|
||||
);
|
||||
}
|
||||
}
|
||||
function formatFileData(sourceData, srcParseData) {
|
||||
const lines = srcParseData.split("\n");
|
||||
for (const line of lines) {
|
||||
const lineData = line.split("=");
|
||||
if (lineData.length === 2) {
|
||||
lineData[1] = lineData[1].replace(/["'\r]/gi, "");
|
||||
Object.defineProperty(sourceData, lineData[0].toLowerCase(), {
|
||||
value: lineData[1],
|
||||
writable: true,
|
||||
enumerable: true,
|
||||
configurable: true
|
||||
});
|
||||
}
|
||||
}
|
||||
return sourceData;
|
||||
}
|
||||
function osReleaseFileList(customFile) {
|
||||
const DEFAULT_OS_RELEASE_FILES = ["/etc/os-release", "/usr/lib/os-release"];
|
||||
if (!customFile) {
|
||||
return DEFAULT_OS_RELEASE_FILES;
|
||||
} else {
|
||||
return Array(customFile);
|
||||
}
|
||||
}
|
||||
function getOsInfo() {
|
||||
return {
|
||||
type: external_node_os_.type(),
|
||||
platform: external_node_os_.platform(),
|
||||
hostname: external_node_os_.hostname(),
|
||||
arch: external_node_os_.arch(),
|
||||
release: external_node_os_.release()
|
||||
};
|
||||
}
|
||||
async function readAsyncOsReleaseFile(fileList, options) {
|
||||
let fileData = null;
|
||||
for (const osReleaseFile of fileList) {
|
||||
try {
|
||||
if (options.debug) {
|
||||
console.log(`Trying to read '${osReleaseFile}'...`);
|
||||
}
|
||||
fileData = await readFileAsync(osReleaseFile, "binary");
|
||||
if (options.debug) {
|
||||
console.log(`Read data:
|
||||
${fileData}`);
|
||||
}
|
||||
break;
|
||||
} catch (error2) {
|
||||
if (options.debug) {
|
||||
console.error(error2);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (fileData === null) {
|
||||
throw new Error("Cannot read os-release file!");
|
||||
}
|
||||
return formatFileData(getOsInfo(), fileData);
|
||||
}
|
||||
function readSyncOsreleaseFile(releaseFileList, options) {
|
||||
let fileData = null;
|
||||
for (const osReleaseFile of releaseFileList) {
|
||||
try {
|
||||
if (options.debug) {
|
||||
console.log(`Trying to read '${osReleaseFile}'...`);
|
||||
}
|
||||
fileData = external_node_fs_namespaceObject.readFileSync(osReleaseFile, "binary");
|
||||
if (options.debug) {
|
||||
console.log(`Read data:
|
||||
${fileData}`);
|
||||
}
|
||||
break;
|
||||
} catch (error2) {
|
||||
if (options.debug) {
|
||||
console.error(error2);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (fileData === null) {
|
||||
throw new Error("Cannot read os-release file!");
|
||||
}
|
||||
return formatFileData(getOsInfo(), fileData);
|
||||
}
|
||||
|
||||
// src/actions-core-platform.ts
|
||||
|
||||
|
||||
|
||||
var getWindowsInfo = async () => {
|
||||
const { stdout: version2 } = await exec.getExecOutput(
|
||||
|
@ -93964,7 +93914,7 @@ var getMacOsInfo = async () => {
|
|||
var getLinuxInfo = async () => {
|
||||
let data = {};
|
||||
try {
|
||||
data = (0,linux_release_info_dist/* releaseInfo */.o)({ mode: "sync" });
|
||||
data = releaseInfo({ mode: "sync" });
|
||||
console.log(data);
|
||||
} catch (e) {
|
||||
core.debug(`Error collecting release info: ${e}`);
|
||||
|
@ -94001,16 +93951,16 @@ function getPropertyWithDefault(data, name, defaultValue) {
|
|||
}
|
||||
return value;
|
||||
}
|
||||
var platform = external_os_.platform();
|
||||
var arch = external_os_.arch();
|
||||
var isWindows = platform === "win32";
|
||||
var isMacOS = platform === "darwin";
|
||||
var isLinux = platform === "linux";
|
||||
var platform2 = external_os_.platform();
|
||||
var arch2 = external_os_.arch();
|
||||
var isWindows = platform2 === "win32";
|
||||
var isMacOS = platform2 === "darwin";
|
||||
var isLinux = platform2 === "linux";
|
||||
async function getDetails() {
|
||||
return {
|
||||
...await (isWindows ? getWindowsInfo() : isMacOS ? getMacOsInfo() : getLinuxInfo()),
|
||||
platform,
|
||||
arch,
|
||||
platform: platform2,
|
||||
arch: arch2,
|
||||
isWindows,
|
||||
isMacOS,
|
||||
isLinux
|
||||
|
@ -94658,6 +94608,16 @@ function mungeDiagnosticEndpoint(inputUrl) {
|
|||
return inputUrl;
|
||||
}
|
||||
|
||||
/*!
|
||||
* linux-release-info
|
||||
* Get Linux release info (distribution name, version, arch, release, etc.)
|
||||
* from '/etc/os-release' or '/usr/lib/os-release' files and from native os
|
||||
* module. On Windows and Darwin platforms it only returns common node os module
|
||||
* info (platform, hostname, release, and arch)
|
||||
*
|
||||
* Licensed under MIT
|
||||
* Copyright (c) 2018-2020 [Samuel Carreira]
|
||||
*/
|
||||
//# sourceMappingURL=index.js.map
|
||||
;// CONCATENATED MODULE: ./dist/main.js
|
||||
// src/main.ts
|
||||
|
|
108
pnpm-lock.yaml
108
pnpm-lock.yaml
|
@ -19,7 +19,7 @@ dependencies:
|
|||
version: 2.0.1
|
||||
detsys-ts:
|
||||
specifier: github:DeterminateSystems/detsys-ts
|
||||
version: github.com/DeterminateSystems/detsys-ts/ea7ff7d4a2488e08b5397cda1a0c56e7f431f43c
|
||||
version: github.com/DeterminateSystems/detsys-ts/56a244c061429692b1c7d80fc068d684db3ae4d2
|
||||
fetch-retry:
|
||||
specifier: ^5.0.6
|
||||
version: 5.0.6
|
||||
|
@ -844,128 +844,128 @@ packages:
|
|||
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
|
||||
dev: true
|
||||
|
||||
/@rollup/rollup-android-arm-eabi@4.15.0:
|
||||
resolution: {integrity: sha512-O63bJ7p909pRRQfOJ0k/Jp8gNFMud+ZzLLG5EBWquylHxmRT2k18M2ifg8WyjCgFVdpA7+rI0YZ8EkAtg6dSUw==}
|
||||
/@rollup/rollup-android-arm-eabi@4.16.0:
|
||||
resolution: {integrity: sha512-4fDVBAfWYlw2CtYgHEWarAYSozTx5OYLsSM/cdGW7H51FwI10DaGnjKgdqWyWXY/VjugelzriCiKf1UdM20Bxg==}
|
||||
cpu: [arm]
|
||||
os: [android]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@rollup/rollup-android-arm64@4.15.0:
|
||||
resolution: {integrity: sha512-5UywPdmC9jiVOShjQx4uuIcnTQOf85iA4jgg8bkFoH5NYWFfAfrJpv5eeokmTdSmYwUTT5IrcrBCJNkowhrZDA==}
|
||||
/@rollup/rollup-android-arm64@4.16.0:
|
||||
resolution: {integrity: sha512-JltUBgsKgN108NO4/hj0B/dJYNrqqmdRCtUet5tFDi/w+0tvQP0FToyWBV4HKBcSX4cvFChrCyt5Rh4FX6M6QQ==}
|
||||
cpu: [arm64]
|
||||
os: [android]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@rollup/rollup-darwin-arm64@4.15.0:
|
||||
resolution: {integrity: sha512-hNkt75uFfWpRxHItCBmbS0ba70WnibJh6yz60WShSWITLlVRbkvAu1E/c7RlliPY4ajhqJd0UPZz//gNalTd4g==}
|
||||
/@rollup/rollup-darwin-arm64@4.16.0:
|
||||
resolution: {integrity: sha512-UwF7tkWf0roggMRv7Vrkof7VgX9tEZIc4vbaQl0/HNX3loWlcum+0ODp1Qsd8s7XvQGT+Zboxx1qxav3vq8YDw==}
|
||||
cpu: [arm64]
|
||||
os: [darwin]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@rollup/rollup-darwin-x64@4.15.0:
|
||||
resolution: {integrity: sha512-HnC5bTP7qdfO9nUw/mBhNcjOEZfbS8NwV+nFegiMhYOn1ATAGZF4kfAxR9BuZevBrebWCxMmxm8NCU1CUoz+wQ==}
|
||||
/@rollup/rollup-darwin-x64@4.16.0:
|
||||
resolution: {integrity: sha512-RIY42wn6+Yb0qD29T7Dvm9/AhxrkGDf7X5dgI6rUFXR19+vCLh3u45yLcKOayu2ZQEba9rf/+BX3EggVwckiIw==}
|
||||
cpu: [x64]
|
||||
os: [darwin]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@rollup/rollup-linux-arm-gnueabihf@4.15.0:
|
||||
resolution: {integrity: sha512-QGOIQIJZeIIqMsc4BUGe8TnV4dkXhSW2EhaQ1G4LqMUNpkyeLztvlDlOoNHn7SR7a4dBANdcEbPkkEzz3rzjzA==}
|
||||
/@rollup/rollup-linux-arm-gnueabihf@4.16.0:
|
||||
resolution: {integrity: sha512-r2TGCIKzqk8VwjOvW7sveledh6aPao131ejUfZNIyFlWBCruF4HOu51KtLArDa7LL6qKd0vkgxGX3/2NmYpWig==}
|
||||
cpu: [arm]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@rollup/rollup-linux-arm-musleabihf@4.15.0:
|
||||
resolution: {integrity: sha512-PS/Cp8CinYgoysQ8i4UXYH/TZl06fXszvY/RDkyBYgUB1+tKyOMS925/4FZhfrhkl3XQEKjMc3BKtsxpB9Tz9Q==}
|
||||
/@rollup/rollup-linux-arm-musleabihf@4.16.0:
|
||||
resolution: {integrity: sha512-/QwaDp0RXQTtm25wQFSl02zEm9oveRXr9qAHbdxWCm9YG9dR8esqpyqzS/3GgHDm7jHktPNz9gTENfoUKRCcXQ==}
|
||||
cpu: [arm]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@rollup/rollup-linux-arm64-gnu@4.15.0:
|
||||
resolution: {integrity: sha512-XzOsnD6lGDP+k+vGgTYAryVGu8N89qpjMN5BVFUj75dGVFP3FzIVAufJAraxirpDwEQZA7Gjs0Vo5p4UmnnjsA==}
|
||||
/@rollup/rollup-linux-arm64-gnu@4.16.0:
|
||||
resolution: {integrity: sha512-iypHsz7YEfoyNL0iHbQ7B7pY6hpymvvMgFXXaMd5+WCtvJ9zqWPZKFmo78UeWzWNmTP9JtPiNIQt6efRxx/MNA==}
|
||||
cpu: [arm64]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@rollup/rollup-linux-arm64-musl@4.15.0:
|
||||
resolution: {integrity: sha512-+ScJA4Epbx/ZQGjDnbvTAcb8ZD06b+TlIka2UkujbKf1I/A+yrvEcJwG3/27zMmvcWMQyeCJhbL9TlSjzL0B7Q==}
|
||||
/@rollup/rollup-linux-arm64-musl@4.16.0:
|
||||
resolution: {integrity: sha512-7UpYcO0uVeomnoL5MpQhrS0FT7xZUJrEXtKVLmps5bRA7x5AiA1PDuPnMbxcOBWjIM2HHIG1t3ndnRTVMIbk5A==}
|
||||
cpu: [arm64]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@rollup/rollup-linux-powerpc64le-gnu@4.15.0:
|
||||
resolution: {integrity: sha512-1cUSvYgnyTakM4FDyf/GxUCDcqmj/hUh1NOizEOJU7+D5xEfFGCxgcNOs3hYBeRMUCcGmGkt01EhD3ILgKpGHQ==}
|
||||
/@rollup/rollup-linux-powerpc64le-gnu@4.16.0:
|
||||
resolution: {integrity: sha512-FSuFy4/hOQy0lH135ifnElP/6dKoHcZGHovsaRY0jrfNRR2yjMnVYaqNHKGKy0b/1I8DkD/JtclgJfq7SPti1w==}
|
||||
cpu: [ppc64]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@rollup/rollup-linux-riscv64-gnu@4.15.0:
|
||||
resolution: {integrity: sha512-3A1FbHDbBUvpJXFAZwVsiROIcstVHP9AX/cwnyIhAp+xyQ1cBCxywKtuzmw0Av1MDNNg/y/9dDHtNypfRa8bdw==}
|
||||
/@rollup/rollup-linux-riscv64-gnu@4.16.0:
|
||||
resolution: {integrity: sha512-qxAB8MiHuDI8jU0D+WI9Gym3fvUJHA/AjKRXxbEH921SB3AeKQStq1FKFA59dAoqqCArjJ1voXM/gMvgEc1q4Q==}
|
||||
cpu: [riscv64]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@rollup/rollup-linux-s390x-gnu@4.15.0:
|
||||
resolution: {integrity: sha512-hYPbhg9ow6/mXIkojc8LOeiip2sCTuw1taWyoOXTOWk9vawIXz8x7B4KkgWUAtvAElssxhSyEXr2EZycH/FGzQ==}
|
||||
/@rollup/rollup-linux-s390x-gnu@4.16.0:
|
||||
resolution: {integrity: sha512-j/9yBgWFlNFBfG/S1M2zkBNLeLkNVG59T5c4tlmlrxU+XITWJ3aMVWdpcZ/+mu7auGZftAXueAgAE9mb4lAlag==}
|
||||
cpu: [s390x]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@rollup/rollup-linux-x64-gnu@4.15.0:
|
||||
resolution: {integrity: sha512-511qln5mPSUKwv7HI28S1jCD1FK+2WbX5THM9A9annr3c1kzmfnf8Oe3ZakubEjob3IV6OPnNNcesfy+adIrmw==}
|
||||
/@rollup/rollup-linux-x64-gnu@4.16.0:
|
||||
resolution: {integrity: sha512-SjsBA1a9wrEleNneGEsR40HdxKdwCatyHC547o/XINqwPW4cqTYiNy/lL1WTJYWU/KgWIb8HH4SgmFStbWoBzw==}
|
||||
cpu: [x64]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@rollup/rollup-linux-x64-musl@4.15.0:
|
||||
resolution: {integrity: sha512-4qKKGTDIv2bQZ+afhPWqPL+94+dLtk4lw1iwbcylKlLNqQ/Yyjof2CFYBxf6npiDzPV+zf4EWRiHb26/4Vsm9w==}
|
||||
/@rollup/rollup-linux-x64-musl@4.16.0:
|
||||
resolution: {integrity: sha512-YKCs7ghJZ5po6/qgfONiXyFKOKcTK4Kerzk/Kc89QK0JT94Qg4NurL+3Y3rZh5am2tu1OlvHPpBHQNBE8cFgJQ==}
|
||||
cpu: [x64]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@rollup/rollup-win32-arm64-msvc@4.15.0:
|
||||
resolution: {integrity: sha512-nEtaFBHp1OnbOf+tz66DtID579sNRHGgMC23to8HUyVuOCpCMD0CvRNqiDGLErLNnwApWIUtUl1VvuovCWUxwg==}
|
||||
/@rollup/rollup-win32-arm64-msvc@4.16.0:
|
||||
resolution: {integrity: sha512-+wtkF+z2nw0ZwwHji01wOW0loxFl24lBNxPtVAXtnPPDL9Ew0EhiCMOegXe/EAH3Zlr8Iw9tyPJXB3DltQLEyw==}
|
||||
cpu: [arm64]
|
||||
os: [win32]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@rollup/rollup-win32-ia32-msvc@4.15.0:
|
||||
resolution: {integrity: sha512-5O49NykwSgX6iT2HgZ6cAoGHt6T/FqNMB5OqFOGxU/y1GyFSHquox1sK2OqApQc0ANxiHFQEMNDLNVCL7AUDnQ==}
|
||||
/@rollup/rollup-win32-ia32-msvc@4.16.0:
|
||||
resolution: {integrity: sha512-7qLyKTL7Lf2g0B8bduETVAEI3WVUVwBRVcECojVevPNVAmi19IW1P2X+uMSwhmWNy36Q/qEvxXsfts1I8wpawg==}
|
||||
cpu: [ia32]
|
||||
os: [win32]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@rollup/rollup-win32-x64-msvc@4.15.0:
|
||||
resolution: {integrity: sha512-YA0hTwCunmKNeTOFWdJuKhdXse9jBqgo34FDo+9aS0spfCkp+wj0o1bCcOOTu+0P48O95GTfkLTAaVonwNuIdQ==}
|
||||
/@rollup/rollup-win32-x64-msvc@4.16.0:
|
||||
resolution: {integrity: sha512-tkfxXt+7c3Ecgn7ln9NJPdBM+QKwQdmFFpgAP+FYhAuRS5y3tY8xeza82gFjbPpytkHmaQnVdMtuzbToCz2tuw==}
|
||||
cpu: [x64]
|
||||
os: [win32]
|
||||
requiresBuild: true
|
||||
|
@ -3346,29 +3346,29 @@ packages:
|
|||
glob: 7.2.3
|
||||
dev: true
|
||||
|
||||
/rollup@4.15.0:
|
||||
resolution: {integrity: sha512-i0ir57IMF5o7YvNYyUNeIGG+IZaaucnGZAOsSctO2tPLXlCEaZzyBa+QhpHNSgtpyLMoDev2DyN6a7J1dQA8Tw==}
|
||||
/rollup@4.16.0:
|
||||
resolution: {integrity: sha512-joxy/Hd4Ee289394//Q1aoebcxXyHasDieCTk8YtP4G4al4TUlx85EnuCLrfrdtLzrna9kNjH++Sx063wxSgmA==}
|
||||
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
'@types/estree': 1.0.5
|
||||
optionalDependencies:
|
||||
'@rollup/rollup-android-arm-eabi': 4.15.0
|
||||
'@rollup/rollup-android-arm64': 4.15.0
|
||||
'@rollup/rollup-darwin-arm64': 4.15.0
|
||||
'@rollup/rollup-darwin-x64': 4.15.0
|
||||
'@rollup/rollup-linux-arm-gnueabihf': 4.15.0
|
||||
'@rollup/rollup-linux-arm-musleabihf': 4.15.0
|
||||
'@rollup/rollup-linux-arm64-gnu': 4.15.0
|
||||
'@rollup/rollup-linux-arm64-musl': 4.15.0
|
||||
'@rollup/rollup-linux-powerpc64le-gnu': 4.15.0
|
||||
'@rollup/rollup-linux-riscv64-gnu': 4.15.0
|
||||
'@rollup/rollup-linux-s390x-gnu': 4.15.0
|
||||
'@rollup/rollup-linux-x64-gnu': 4.15.0
|
||||
'@rollup/rollup-linux-x64-musl': 4.15.0
|
||||
'@rollup/rollup-win32-arm64-msvc': 4.15.0
|
||||
'@rollup/rollup-win32-ia32-msvc': 4.15.0
|
||||
'@rollup/rollup-win32-x64-msvc': 4.15.0
|
||||
'@rollup/rollup-android-arm-eabi': 4.16.0
|
||||
'@rollup/rollup-android-arm64': 4.16.0
|
||||
'@rollup/rollup-darwin-arm64': 4.16.0
|
||||
'@rollup/rollup-darwin-x64': 4.16.0
|
||||
'@rollup/rollup-linux-arm-gnueabihf': 4.16.0
|
||||
'@rollup/rollup-linux-arm-musleabihf': 4.16.0
|
||||
'@rollup/rollup-linux-arm64-gnu': 4.16.0
|
||||
'@rollup/rollup-linux-arm64-musl': 4.16.0
|
||||
'@rollup/rollup-linux-powerpc64le-gnu': 4.16.0
|
||||
'@rollup/rollup-linux-riscv64-gnu': 4.16.0
|
||||
'@rollup/rollup-linux-s390x-gnu': 4.16.0
|
||||
'@rollup/rollup-linux-x64-gnu': 4.16.0
|
||||
'@rollup/rollup-linux-x64-musl': 4.16.0
|
||||
'@rollup/rollup-win32-arm64-msvc': 4.16.0
|
||||
'@rollup/rollup-win32-ia32-msvc': 4.16.0
|
||||
'@rollup/rollup-win32-x64-msvc': 4.16.0
|
||||
fsevents: 2.3.3
|
||||
dev: true
|
||||
|
||||
|
@ -3719,7 +3719,7 @@ packages:
|
|||
joycon: 3.1.1
|
||||
postcss-load-config: 4.0.2
|
||||
resolve-from: 5.0.0
|
||||
rollup: 4.15.0
|
||||
rollup: 4.16.0
|
||||
source-map: 0.8.0-beta.0
|
||||
sucrase: 3.35.0
|
||||
tree-kill: 1.2.2
|
||||
|
@ -3976,8 +3976,8 @@ packages:
|
|||
engines: {node: '>=10'}
|
||||
dev: true
|
||||
|
||||
github.com/DeterminateSystems/detsys-ts/ea7ff7d4a2488e08b5397cda1a0c56e7f431f43c:
|
||||
resolution: {tarball: https://codeload.github.com/DeterminateSystems/detsys-ts/tar.gz/ea7ff7d4a2488e08b5397cda1a0c56e7f431f43c}
|
||||
github.com/DeterminateSystems/detsys-ts/56a244c061429692b1c7d80fc068d684db3ae4d2:
|
||||
resolution: {tarball: https://codeload.github.com/DeterminateSystems/detsys-ts/tar.gz/56a244c061429692b1c7d80fc068d684db3ae4d2}
|
||||
name: detsys-ts
|
||||
version: 1.0.0
|
||||
dependencies:
|
||||
|
|
Loading…
Reference in a new issue