mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2025-08-03 09:20:36 +08:00
13 lines
224 B
Bash
Executable File
13 lines
224 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eo pipefail
|
|
|
|
name=$1
|
|
|
|
if [[ -z "$name" ]]; then
|
|
>&2 echo "Usage: npm run new-package [name]"
|
|
exit 1
|
|
fi
|
|
|
|
lerna create @actions/$name
|
|
cp packages/toolkit/tsconfig.json packages/$name/tsconfig.json |