From 2ce004c91be12650066d713ce8f84556c41e516a Mon Sep 17 00:00:00 2001 From: Dongkyu Kim Date: Mon, 8 Jul 2024 23:01:09 +0900 Subject: [PATCH] chore(package.json): build script (#129) * fix: build script * fix: add shebangs --- .scripts/postbuild.sh | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.scripts/postbuild.sh b/.scripts/postbuild.sh index 82329ce2e..fd1ecb232 100755 --- a/.scripts/postbuild.sh +++ b/.scripts/postbuild.sh @@ -1,3 +1,4 @@ +#!/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 diff --git a/package.json b/package.json index 9cd150703..db81e3736 100644 --- a/package.json +++ b/package.json @@ -140,4 +140,4 @@ "lint": "eslint ./src --ext .ts", "format": "prettier --write ." } -} \ No newline at end of file +}