Skip to content

Commit bbf33a9

Browse files
Changes
1 parent 5ca14b4 commit bbf33a9

File tree

4 files changed

+26
-2
lines changed

4 files changed

+26
-2
lines changed

.env.example

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
GITHUB_TOKEN=f941e0...

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,5 @@ android/keystores/debug.keystore
5858

5959
# generated by bob
6060
lib/
61+
62+
.env

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"typescript": "tsc --noEmit",
2525
"lint": "eslint \"**/*.{js,ts,tsx}\"",
2626
"build": "bob build",
27-
"release": "release-it",
27+
"release": "dotenv release-it --",
2828
"example": "yarn --cwd example",
2929
"pods": "cd example && pod-install --quiet",
3030
"bootstrap": "yarn example && yarn && yarn pods"
@@ -55,6 +55,7 @@
5555
"@types/react-window": "^1.8.2",
5656
"color": "^3.1.2",
5757
"commitlint": "^8.3.5",
58+
"dotenv-cli": "^4.0.0",
5859
"eslint": "^7.2.0",
5960
"eslint-config-prettier": "^6.11.0",
6061
"eslint-plugin-prettier": "^3.1.3",

yarn.lock

+21-1
Original file line numberDiff line numberDiff line change
@@ -3491,7 +3491,7 @@ cross-spawn@^6.0.0:
34913491
shebang-command "^1.2.0"
34923492
which "^1.2.9"
34933493

3494-
cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3:
3494+
cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.2, cross-spawn@^7.0.3:
34953495
version "7.0.3"
34963496
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
34973497
integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
@@ -3815,6 +3815,26 @@ dot-prop@^5.1.0, dot-prop@^5.2.0:
38153815
dependencies:
38163816
is-obj "^2.0.0"
38173817

3818+
dotenv-cli@^4.0.0:
3819+
version "4.0.0"
3820+
resolved "https://registry.yarnpkg.com/dotenv-cli/-/dotenv-cli-4.0.0.tgz#3cdd68b87ccd63c78dbfa72aab2f639bbeba5f4b"
3821+
integrity sha512-ByKEec+ashePEXthZaA1fif9XDtcaRnkN7eGdBDx3HHRjwZ/rA1go83Cbs4yRrx3JshsCf96FjAyIA2M672+CQ==
3822+
dependencies:
3823+
cross-spawn "^7.0.1"
3824+
dotenv "^8.1.0"
3825+
dotenv-expand "^5.1.0"
3826+
minimist "^1.1.3"
3827+
3828+
dotenv-expand@^5.1.0:
3829+
version "5.1.0"
3830+
resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-5.1.0.tgz#3fbaf020bfd794884072ea26b1e9791d45a629f0"
3831+
integrity sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==
3832+
3833+
dotenv@^8.1.0:
3834+
version "8.2.0"
3835+
resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a"
3836+
integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==
3837+
38183838
duplexer3@^0.1.4:
38193839
version "0.1.4"
38203840
resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2"

0 commit comments

Comments
 (0)