mirror of
https://github.com/msojocs/wx-compiler.git
synced 2025-07-19 00:00:04 +08:00
14 lines
250 B
Bash
Executable File
14 lines
250 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
test_dir=$(cd `dirname $0`/../.. && pwd -P)
|
|
project_dir="$test_dir/projects/${0##*/}"
|
|
|
|
cd "$project_dir"
|
|
|
|
echo "exec pnpm install"
|
|
pnpm install
|
|
|
|
echo "build miniprogram_npm"
|
|
node "$test_dir/spec/build-npm-mini.js" "$project_dir"
|