es-toolkit/.scripts/postbuild.sh
2024-07-18 23:09:48 +09:00

10 lines
432 B
Bash
Executable File

#!/bin/sh
echo "export * from './dist/array';" > array.d.ts
echo "export * from './dist/compat';" > compat.d.ts
echo "export * from './dist/function';" > function.d.ts
echo "export * from './dist/math';" > math.d.ts
echo "export * from './dist/object';" > object.d.ts
echo "export * from './dist/predicate';" > predicate.d.ts
echo "export * from './dist/promise';" > promise.d.ts
echo "export * from './dist/string';" > string.d.ts