diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 5ba79c4..cdc3191 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -33,8 +33,6 @@ jobs: - name: Dry Run Publish # omit npm-token token to perform dry run publish uses: MetaMask/action-npm-publish@v2 - env: - SKIP_PREPACK: true publish-npm: environment: npm-publish @@ -50,5 +48,3 @@ jobs: # This `NPM_TOKEN` needs to be manually set per-repository. # Look in the repository settings under "Environments", and set this token in the `npm-publish` environment. npm-token: ${{ secrets.NPM_TOKEN }} - env: - SKIP_PREPACK: true diff --git a/package.json b/package.json index 19857ec..48dff8b 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,6 @@ "lint:eslint": "eslint . --cache --ext js,ts", "lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write", "lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' '**/*.yml' '!.yarnrc.yml' --ignore-path .gitignore --no-error-on-unmatched-pattern", - "prepack": "./scripts/prepack.sh", "test": "jest" }, "dependencies": { diff --git a/scripts/prepack.sh b/scripts/prepack.sh deleted file mode 100755 index 8ff87b6..0000000 --- a/scripts/prepack.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env bash - -set -x -set -e -set -o pipefail - -if [[ -n $SKIP_PREPACK ]]; then - echo "Notice: skipping prepack." - exit 0 -fi \ No newline at end of file