diff --git a/package.json b/package.json index ac67945..12bb37e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@matt-block/react-native-in-app-browser", - "version": "1.4.1-rc.0", + "version": "1.4.1", "description": "React Native in-app browser", "keywords": [ "in-app", @@ -76,4 +76,4 @@ "dependencies": { "tinycolor2": "^1.4.1" } -} +} \ No newline at end of file diff --git a/scripts/publishCI.ts b/scripts/publishCI.ts index 8d7a0b4..7873207 100644 --- a/scripts/publishCI.ts +++ b/scripts/publishCI.ts @@ -12,12 +12,11 @@ const tag = getPublishingTag(process.env.CIRCLE_BRANCH!); // Continue with publish process. createTarball(); -const tarballName = getTarballName(); setupNpm(); -publish(tarballName, getCurrentVersion(), tag); +publish(getTarballName(), getCurrentVersion(), tag); function createTarball() { - sh.exec("yarn pack"); + sh.exec(`yarn pack --filename ${getTarballName()}`); } function publish(tarball: string, version: string, tag: string) {