Skip to content

Commit f9b84a7

Browse files
committed
Release 3.0.0
1 parent 279bd9f commit f9b84a7

4 files changed

Lines changed: 1690 additions & 996 deletions

File tree

build.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ mkdir -p dist/web
5151

5252
# Step 1: Compile TypeScript to JavaScript
5353
echo -e "${GREEN}Compiling TypeScript...${NC}"
54-
npx tsc
54+
cd lib && npx tsc
55+
cd ..
5556

5657
# # Step 2: Create npm version (CommonJS module)
5758
# echo -e "${GREEN}Creating npm version...${NC}"

tsconfig.json renamed to lib/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"target": "ES2020",
44
"module": "commonjs",
55
"declaration": true,
6-
"outDir": "./dist/npm",
6+
"outDir": "../dist/npm",
77
"noImplicitAny": true,
88
"alwaysStrict": true,
99
"noImplicitReturns": true,

0 commit comments

Comments
 (0)