Skip to content

Commit c1821c9

Browse files
committed
Refactor dependency installation script and update package.json
- Replaced TypeScript-based install-dependencies script with a Bash script for improved simplicity and performance. - Updated package.json to call the new shell script for installing dependencies. - Reformatted lint-staged configuration for better readability.
1 parent c7f82f5 commit c1821c9

File tree

3 files changed

+9
-17
lines changed

3 files changed

+9
-17
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"typescript": "^5.7.3"
1717
},
1818
"scripts": {
19-
"install-dependencies": "npx ts-node ./scripts/install-dependencies.ts",
19+
"install-dependencies": "./scripts/install-dependencies.sh",
2020
"format": "biome check --write .",
2121
"prepare": "husky",
2222
"e2e-tests": "./scripts/e2e-tests.sh",

scripts/install-dependencies.sh

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/bash
2+
3+
for dir in examples/*; do
4+
if [ -d "$dir" ]; then
5+
echo "Running e2e tests in $dir"
6+
(cd "$dir" && npm install)
7+
fi
8+
done

scripts/install-dependencies.ts

-16
This file was deleted.

0 commit comments

Comments
 (0)