chore: migrate git dependencies to Gitea mirror (git.pezkuwichain.io)

This commit is contained in:
2026-04-21 18:53:18 +03:00
parent 4539abb66e
commit 4db0839e91
5 changed files with 34 additions and 25 deletions
+3 -3
View File
@@ -1,16 +1,16 @@
{
"author": "Pezkuwi Team <team@pezkuwichain.app>",
"bugs": "https://github.com/pezkuwichain/pezkuwi-dev/issues",
"bugs": "https://git.pezkuwichain.io/pezkuwichain/pezkuwi-dev/issues",
"engines": {
"node": ">=18.14"
},
"homepage": "https://github.com/pezkuwichain/pezkuwi-dev#readme",
"homepage": "https://git.pezkuwichain.io/pezkuwichain/pezkuwi-dev#readme",
"license": "Apache-2.0",
"packageManager": "yarn@4.6.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/pezkuwichain/pezkuwi-dev.git"
"url": "https://git.pezkuwichain.io/pezkuwichain/pezkuwi-dev.git"
},
"sideEffects": false,
"type": "module",
+3 -3
View File
@@ -1,17 +1,17 @@
{
"author": "Pezkuwi Team <team@pezkuwichain.app>",
"bugs": "https://github.com/pezkuwichain/pezkuwi-dev/issues",
"bugs": "https://git.pezkuwichain.io/pezkuwichain/pezkuwi-dev/issues",
"description": "A basic test-functions-as-global library on top of node:test",
"engines": {
"node": ">=18.14"
},
"homepage": "https://github.com/pezkuwichain/pezkuwi-dev/tree/master/packages/dev-test#readme",
"homepage": "https://git.pezkuwichain.io/pezkuwichain/pezkuwi-dev/tree/master/packages/dev-test#readme",
"license": "Apache-2.0",
"name": "@pezkuwi/dev-test",
"repository": {
"directory": "packages/dev-test",
"type": "git",
"url": "https://github.com/pezkuwichain/pezkuwi-dev.git"
"url": "https://git.pezkuwichain.io/pezkuwichain/pezkuwi-dev.git"
},
"sideEffects": false,
"type": "module",
+3 -3
View File
@@ -1,17 +1,17 @@
{
"author": "Pezkuwi Team <team@pezkuwichain.app>",
"bugs": "https://github.com/pezkuwichain/pezkuwi-dev/issues",
"bugs": "https://git.pezkuwichain.io/pezkuwichain/pezkuwi-dev/issues",
"description": "An TS -> ESM loader for Node >= 16.12",
"engines": {
"node": ">=18"
},
"homepage": "https://github.com/pezkuwichain/pezkuwi-dev/tree/master/packages/dev-ts#readme",
"homepage": "https://git.pezkuwichain.io/pezkuwichain/pezkuwi-dev/tree/master/packages/dev-ts#readme",
"license": "Apache-2.0",
"name": "@pezkuwi/dev-ts",
"repository": {
"directory": "packages/dev-ts",
"type": "git",
"url": "https://github.com/pezkuwichain/pezkuwi-dev.git"
"url": "https://git.pezkuwichain.io/pezkuwichain/pezkuwi-dev.git"
},
"sideEffects": false,
"type": "module",
+4 -4
View File
@@ -1,22 +1,22 @@
{
"author": "Pezkuwi Team <team@pezkuwichain.app>",
"bugs": "https://github.com/pezkuwichain/pezkuwi-dev/issues",
"bugs": "https://git.pezkuwichain.io/pezkuwichain/pezkuwi-dev/issues",
"description": "A collection of shared CI scripts and development environment used by @pezkuwi projects",
"engines": {
"node": ">=18"
},
"homepage": "https://github.com/pezkuwichain/pezkuwi-dev/tree/master/packages/dev#readme",
"homepage": "https://git.pezkuwichain.io/pezkuwichain/pezkuwi-dev/tree/master/packages/dev#readme",
"license": "Apache-2.0",
"name": "@pezkuwi/dev",
"repository": {
"directory": "packages/dev",
"type": "git",
"url": "https://github.com/pezkuwichain/pezkuwi-dev.git"
"url": "https://git.pezkuwichain.io/pezkuwichain/pezkuwi-dev.git"
},
"sideEffects": false,
"type": "module",
"types": "./index.d.ts",
"version": "0.85.5",
"version": "0.85.11",
"main": "./cjs/index.js",
"module": "./index.js",
"bin": {
+21 -12
View File
@@ -363,24 +363,24 @@ function rewriteImports (dir, pkgCwd, pkgJson, replacer) {
.filter((line) => !line.startsWith('//'))
.map((line) =>
line
// handle import/export
.replace(/(import|export) (.*) from '(.*)'/g, (o, t, a, f) => {
// handle import/export (use [^']* to avoid capturing 'json' from with { type: 'json' })
.replace(/(import|export) (.*) from '([^']*)'/g, (o, t, a, f) => {
const adjusted = replacer(pkgCwd, pkgJson, dir, f);
return adjusted
? `${t} ${a} from '${adjusted}'`
: o;
})
// handle augmented inputs
.replace(/(import|declare module) '(.*)'/g, (o, t, f) => {
// handle augmented inputs (use [^']* to avoid capturing quotes from import attributes)
.replace(/(import|declare module) '([^']*)'/g, (o, t, f) => {
const adjusted = replacer(pkgCwd, pkgJson, dir, f, t !== 'import');
return adjusted
? `${t} '${adjusted}'`
: o;
})
// handle dynamic imports
.replace(/( import|^import)\('(.*)'\)/g, (o, t, f) => {
// handle dynamic imports (use [^']* for consistency)
.replace(/( import|^import)\('([^']*)'\)/g, (o, t, f) => {
const adjusted = replacer(pkgCwd, pkgJson, dir, f);
return adjusted
@@ -445,7 +445,10 @@ function buildDeno () {
* @returns {string}
*/
function relativePath (value) {
return `${value && value.startsWith('.') ? value : './'}${value}`.replace(/\/\//g, '/');
if (!value || typeof value !== 'string') {
return '';
}
return value.startsWith('.') ? value : `./${value}`;
}
/**
@@ -643,7 +646,7 @@ function findFiles (buildDir, extra = '', exclude = []) {
.readdirSync(currDir)
.filter((f) => !exclude.includes(f))
.reduce((/** @type {[string, Record<String, unknown> | string][]} */ all, jsName) => {
const jsPath = `${extra}/${jsName}`;
const jsPath = extra ? `${extra}/${jsName}` : jsName;
const fullPathEsm = path.join(buildDir, jsPath);
if (fs.statSync(fullPathEsm).isDirectory()) {
@@ -788,11 +791,14 @@ function buildExports () {
}
if (pkg.main) {
const main = pkg.main.startsWith('./')
let main = pkg.main.startsWith('./')
? pkg.main
: `./${pkg.main}`;
// Only add ./cjs/ prefix if main doesn't already start with ./cjs/
// Strip ./build/ prefix if present (source package.json may have ./build/cjs/index.js)
main = main.replace(/^\.\/build\//, './');
// Add ./cjs/ prefix if not already present (for CJS entry point)
pkg.main = main.startsWith('./cjs/') ? main : main.replace(/^\.\//, './cjs/');
pkg.module = main;
pkg.types = main.replace('.js', '.d.ts');
@@ -803,11 +809,14 @@ function buildExports () {
const value = pkg[k];
if (typeof value === 'string') {
const entry = value.startsWith('./')
let entry = value.startsWith('./')
? value
: `./${value}`;
// Only add ./cjs/ prefix if entry doesn't already start with ./cjs/
// Strip ./build/ prefix if present
entry = entry.replace(/^\.\/build\//, './');
// Add ./cjs/ prefix if not already present
pkg[k] = entry.startsWith('./cjs/') ? entry : entry.replace(/^\.\//, './cjs/');
}
});