8 lines
76 B
Bash
Executable file
8 lines
76 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ ! -e ./src ]; then
|
|
mkdir ./src
|
|
fi
|
|
|
|
npx tsc &&
|
|
npx webpack
|