We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4481553 commit 389b006Copy full SHA for 389b006
.gitignore
@@ -8,4 +8,3 @@ _site
8
build/
9
dist/
10
node_modules/
11
-publish-files.txt
script/postpublish
@@ -7,7 +7,7 @@ npx action-status --context="$PUBLISH_STATUS_CONTEXT" \
7
--description="published $version" \
--url="https://unpkg.com/$slug/"
-file=publish-files.txt
+file=publish-files.log
if [[ -f $file ]]; then
12
echo "deleting all files listed in $file..."
13
cat $file | xargs rm -rfv
script/prepublish
@@ -9,7 +9,7 @@ npx action-status --context="$PUBLISH_STATUS_CONTEXT" \
npm run dist
files=$(git ls-files src | sed -e 's#^src/##' | sed -e 's#/.*$##' | sort -u)
-echo $files > publish-files.txt
+echo $files > publish-files.log
cd src
14
cp -rv $files ..
15
cd -
0 commit comments