Skip to content

Commit 665b705

Browse files
committed
chore: force do not install missing commands
See `https://www.npmjs.com/package/npx` `--no-install` and `https://docs.npmjs.com/cli/v7/commands/npx` `--no`.
1 parent 22c12c1 commit 665b705

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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+
npx --no tsc
77

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

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

0 commit comments

Comments
 (0)