mirror of
https://github.com/toss/es-toolkit.git
synced 2024-11-28 12:05:41 +03:00
d48900fa55
* feat(snakeCase): Add caseSplitPattern RegExp const * feat(snakeCase): Add caseSplitPattern test code * feat(snakeCase): Add snakeCase function * feat(snakeCase): Add snakeCase test code * feat(snakeCase): Add snakeCase docs * feat(snakeCase): Add snakeCase benchmarks * chore: Add string export * fix(snakeCase): constants public api * Update docs/ko/reference/string/snakeCase.md * Update docs/ko/reference/string/snakeCase.md * Update docs/reference/string/snakeCase.md --------- Co-authored-by: Sojin Park <raon0211@gmail.com>
9 lines
380 B
Bash
Executable File
9 lines
380 B
Bash
Executable File
#!/bin/sh
|
|
echo "export * from './dist/array';" > array.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
|