-
Notifications
You must be signed in to change notification settings - Fork 56
/
copy-types.cjs
33 lines (25 loc) · 1003 Bytes
/
copy-types.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
const fs = require("fs");
const path = require("path");
// Get the directory path of the current module
const currentDir = path.dirname(require.main.filename);
// Resolve the paths to the types and dist directories
const typesDir = path.resolve(currentDir, "types");
const distDir = path.resolve(currentDir, "dist");
// Create dist directory if it doesn't exist
if (!fs.existsSync(distDir)) {
fs.mkdirSync(distDir);
}
// Resolve the path to the dist/types directory
const distTypesDir = path.join(distDir, "types");
// Create dist/types directory if it doesn't exist
if (!fs.existsSync(distTypesDir)) {
fs.mkdirSync(distTypesDir);
}
// Copy .d.ts files from types directory to dist/types directory
fs.readdirSync(typesDir).forEach((file) => {
const srcFile = path.join(typesDir, file);
const distFile = path.join(distTypesDir, file);
fs.copyFileSync(srcFile, distFile);
fs.copyFileSync(srcFile, distFile.replace(/\.d\.ts$/, ".d.cts"));
});
console.log("Types copied successfully.");