1
0
Fork 0
mirror of https://github.com/actions/toolkit synced 2025-05-09 08:33:00 +00:00

Simplify package creation

This commit is contained in:
Jonathan Clem 2019-04-22 11:54:05 -04:00
parent 9ef78f1807
commit d3cfce8cf0
No known key found for this signature in database
GPG key ID: 48C5B22E9FD6E80F
3 changed files with 17 additions and 9 deletions

13
scripts/create-package Executable file
View file

@ -0,0 +1,13 @@
#!/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