Skip to content

Commit 5ef9b73

Browse files
committed
chore: force to use bin shipped with the project itself
1 parent 22c12c1 commit 5ef9b73

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ rm -rf ./lib
33
rm -rf ./dist
44

55
# 2. tsc compile
6-
npx tsc
6+
./node_modules/.bin/tsc
77

88
# 3. copy source file
9-
npx copyup 'src/**/*.html' lib/
10-
npx copyup 'src/**/*.less' lib/
9+
./node_modules/.bin/copyup 'src/**/*.html' lib/
10+
./node_modules/.bin/copyup 'src/**/*.less' lib/
1111

1212
# 4. webpack build
1313
npm run build:web

0 commit comments

Comments
 (0)