chore: import upstream snapshot with attribution
This commit is contained in:
Executable
+76
@@ -0,0 +1,76 @@
|
||||
#!/usr/bin/env -S pnpm tsx
|
||||
import 'zx/globals';
|
||||
import cpy from 'cpy';
|
||||
|
||||
async function updateAndCopyPackageJson() {
|
||||
const pkg = await fs.readJSON('package.json');
|
||||
|
||||
const entries = await glob('src/**/*.ts');
|
||||
|
||||
pkg.exports = entries.reduce<
|
||||
Record<string, {
|
||||
import: {
|
||||
types?: string;
|
||||
default: string;
|
||||
};
|
||||
require: {
|
||||
types: string;
|
||||
default: string;
|
||||
};
|
||||
default: string;
|
||||
types: string;
|
||||
}>
|
||||
>(
|
||||
(acc, rawEntry) => {
|
||||
const entry = rawEntry.match(/src\/(.*)\.ts/)![1]!;
|
||||
const exportsEntry = entry === 'index' ? '.' : './' + entry.replace(/\/index$/, '');
|
||||
const importEntry = `./${entry}.js`;
|
||||
const requireEntry = `./${entry}.cjs`;
|
||||
acc[exportsEntry] = {
|
||||
import: {
|
||||
types: `./${entry}.d.ts`,
|
||||
default: importEntry,
|
||||
},
|
||||
require: {
|
||||
types: `./${entry}.d.cts`,
|
||||
default: requireEntry,
|
||||
},
|
||||
types: `./${entry}.d.ts`,
|
||||
default: importEntry,
|
||||
};
|
||||
return acc;
|
||||
},
|
||||
{},
|
||||
);
|
||||
|
||||
await fs.writeJSON('dist.new/package.json', pkg, { spaces: 2 });
|
||||
}
|
||||
|
||||
await fs.remove('dist.new');
|
||||
|
||||
await Promise.all([
|
||||
(async () => {
|
||||
await $`tsup`.stdio('pipe', 'pipe', 'pipe');
|
||||
})(),
|
||||
(async () => {
|
||||
await $`tsc -p tsconfig.dts.json`.stdio('pipe', 'pipe', 'pipe');
|
||||
await cpy('dist-dts/**/*.d.ts', 'dist.new', {
|
||||
rename: (basename) => basename.replace(/\.d\.ts$/, '.d.cts'),
|
||||
});
|
||||
await cpy('dist-dts/**/*.d.ts', 'dist.new', {
|
||||
rename: (basename) => basename.replace(/\.d\.ts$/, '.d.ts'),
|
||||
});
|
||||
})(),
|
||||
]);
|
||||
|
||||
await Promise.all([
|
||||
$`tsup src/version.ts --no-config --dts --format esm --outDir dist.new`.stdio('pipe', 'pipe', 'pipe'),
|
||||
$`tsup src/version.ts --no-config --dts --format cjs --outDir dist.new`.stdio('pipe', 'pipe', 'pipe'),
|
||||
]);
|
||||
|
||||
await $`scripts/fix-imports.ts`;
|
||||
|
||||
await fs.copy('../README.md', 'dist.new/README.md');
|
||||
await updateAndCopyPackageJson();
|
||||
await fs.remove('dist');
|
||||
await fs.rename('dist.new', 'dist');
|
||||
Executable
+101
@@ -0,0 +1,101 @@
|
||||
#!/usr/bin/env -S pnpm tsx
|
||||
import 'zx/globals';
|
||||
|
||||
import path from 'node:path';
|
||||
import { parse, print, visit } from 'recast';
|
||||
import parser from 'recast/parsers/typescript';
|
||||
|
||||
function resolvePathAlias(importPath: string, file: string) {
|
||||
if (importPath.startsWith('~/')) {
|
||||
const relativePath = path.relative(path.dirname(file), path.resolve('dist.new', importPath.slice(2)));
|
||||
importPath = relativePath.startsWith('.') ? relativePath : './' + relativePath;
|
||||
}
|
||||
|
||||
return importPath;
|
||||
}
|
||||
|
||||
function fixImportPath(importPath: string, file: string, ext: string) {
|
||||
importPath = resolvePathAlias(importPath, file);
|
||||
|
||||
if (!/\..*\.(js|ts)$/.test(importPath)) {
|
||||
return importPath;
|
||||
}
|
||||
|
||||
return importPath.replace(/\.(js|ts)$/, ext);
|
||||
}
|
||||
|
||||
const cjsFiles = await glob('dist.new/**/*.{cjs,d.cts}');
|
||||
|
||||
await Promise.all(cjsFiles.map(async (file) => {
|
||||
const code = parse(await fs.readFile(file, 'utf8'), { parser });
|
||||
|
||||
visit(code, {
|
||||
visitImportDeclaration(path) {
|
||||
path.value.source.value = fixImportPath(path.value.source.value, file, '.cjs');
|
||||
this.traverse(path);
|
||||
},
|
||||
visitExportAllDeclaration(path) {
|
||||
path.value.source.value = fixImportPath(path.value.source.value, file, '.cjs');
|
||||
this.traverse(path);
|
||||
},
|
||||
visitExportNamedDeclaration(path) {
|
||||
if (path.value.source) {
|
||||
path.value.source.value = fixImportPath(path.value.source.value, file, '.cjs');
|
||||
}
|
||||
this.traverse(path);
|
||||
},
|
||||
visitCallExpression(path) {
|
||||
if (path.value.callee.type === 'Identifier' && path.value.callee.name === 'require') {
|
||||
path.value.arguments[0].value = fixImportPath(path.value.arguments[0].value, file, '.cjs');
|
||||
}
|
||||
this.traverse(path);
|
||||
},
|
||||
visitTSImportType(path) {
|
||||
path.value.argument.value = resolvePathAlias(path.value.argument.value, file);
|
||||
this.traverse(path);
|
||||
},
|
||||
visitAwaitExpression(path) {
|
||||
if (print(path.value).code.startsWith(`await import("./`)) {
|
||||
path.value.argument.arguments[0].value = fixImportPath(path.value.argument.arguments[0].value, file, '.cjs');
|
||||
}
|
||||
this.traverse(path);
|
||||
},
|
||||
});
|
||||
|
||||
await fs.writeFile(file, print(code).code);
|
||||
}));
|
||||
|
||||
const esmFiles = await glob('dist.new/**/*.{js,d.ts}');
|
||||
|
||||
await Promise.all(esmFiles.map(async (file) => {
|
||||
const code = parse(await fs.readFile(file, 'utf8'), { parser });
|
||||
|
||||
visit(code, {
|
||||
visitImportDeclaration(path) {
|
||||
path.value.source.value = fixImportPath(path.value.source.value, file, '.js');
|
||||
this.traverse(path);
|
||||
},
|
||||
visitExportAllDeclaration(path) {
|
||||
path.value.source.value = fixImportPath(path.value.source.value, file, '.js');
|
||||
this.traverse(path);
|
||||
},
|
||||
visitExportNamedDeclaration(path) {
|
||||
if (path.value.source) {
|
||||
path.value.source.value = fixImportPath(path.value.source.value, file, '.js');
|
||||
}
|
||||
this.traverse(path);
|
||||
},
|
||||
visitTSImportType(path) {
|
||||
path.value.argument.value = fixImportPath(path.value.argument.value, file, '.js');
|
||||
this.traverse(path);
|
||||
},
|
||||
visitAwaitExpression(path) {
|
||||
if (print(path.value).code.startsWith(`await import("./`)) {
|
||||
path.value.argument.arguments[0].value = fixImportPath(path.value.argument.arguments[0].value, file, '.js');
|
||||
}
|
||||
this.traverse(path);
|
||||
},
|
||||
});
|
||||
|
||||
await fs.writeFile(file, print(code).code);
|
||||
}));
|
||||
Reference in New Issue
Block a user