mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-17 05:02:23 +08:00
9 lines
149 B
Bash
Executable File
9 lines
149 B
Bash
Executable File
#!/bin/bash -
|
|
|
|
# run in package directory
|
|
|
|
PACK_DIR=$1
|
|
FILE=$(npm pack | tail -n 1)
|
|
|
|
mv "$FILE" "$PACK_DIR/${FILE%-[0-9]*\.[0-9]*\.[0-9]*\.tgz}.tgz"
|