Skip to content

Commit 19b1435

Browse files
committed
Fix bootstrap script.
1 parent d71d0a2 commit 19b1435

File tree

14 files changed

+14
-1
lines changed

14 files changed

+14
-1
lines changed

examples/basic-fetch/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"private": true,
55
"homepage": "https://react-async.async-library.now.sh/examples/basic-fetch",
66
"scripts": {
7+
"bootstrap": "yarn install",
78
"postinstall": "relative-deps",
89
"prestart": "relative-deps",
910
"prebuild": "relative-deps",

examples/basic-hook/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"private": true,
55
"homepage": "https://react-async.async-library.now.sh/examples/basic-hook",
66
"scripts": {
7+
"bootstrap": "yarn install",
78
"postinstall": "relative-deps",
89
"prestart": "relative-deps",
910
"prebuild": "relative-deps",

examples/custom-instance/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"private": true,
55
"homepage": "https://react-async.async-library.now.sh/examples/custom-instance",
66
"scripts": {
7+
"bootstrap": "yarn install",
78
"postinstall": "relative-deps",
89
"prestart": "relative-deps",
910
"prebuild": "relative-deps",

examples/movie-app/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"private": true,
55
"homepage": "https://react-async.async-library.now.sh/examples/movie-app",
66
"scripts": {
7+
"bootstrap": "yarn install",
78
"postinstall": "relative-deps",
89
"prestart": "relative-deps",
910
"prebuild": "relative-deps",

examples/with-abortcontroller/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"private": true,
55
"homepage": "https://react-async.async-library.now.sh/examples/with-abortcontroller",
66
"scripts": {
7+
"bootstrap": "yarn install",
78
"postinstall": "relative-deps",
89
"prestart": "relative-deps",
910
"prebuild": "relative-deps",

examples/with-graphql/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"private": true,
55
"homepage": "https://react-async.async-library.now.sh/examples/with-graphql",
66
"scripts": {
7+
"bootstrap": "yarn install",
78
"postinstall": "relative-deps",
89
"prestart": "relative-deps",
910
"prebuild": "relative-deps",

examples/with-nextjs/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"private": true,
55
"main": "index.js",
66
"scripts": {
7+
"bootstrap": "yarn install",
78
"postinstall": "relative-deps",
89
"predev": "relative-deps",
910
"prebuild": "relative-deps",

examples/with-react-native/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"private": true,
55
"main": "node_modules/expo/AppEntry.js",
66
"scripts": {
7+
"bootstrap": "yarn install",
78
"postinstall": "relative-deps",
89
"prestart": "relative-deps",
910
"preandroid": "relative-deps",

examples/with-react-router/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"private": true,
55
"main": "index.js",
66
"scripts": {
7+
"bootstrap": "yarn install",
78
"postinstall": "relative-deps",
89
"prestart": "relative-deps",
910
"prebuild": "relative-deps",

examples/with-suspense/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"private": true,
55
"homepage": "https://react-async.async-library.now.sh/examples/with-suspense",
66
"scripts": {
7+
"bootstrap": "yarn install",
78
"postinstall": "relative-deps",
89
"prestart": "relative-deps",
910
"prebuild": "relative-deps",

examples/with-typescript/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"private": true,
55
"homepage": "https://react-async.async-library.now.sh/examples/with-typescript",
66
"scripts": {
7+
"bootstrap": "yarn install",
78
"postinstall": "relative-deps",
89
"prestart": "relative-deps",
910
"prebuild": "relative-deps",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"packages/*"
1111
],
1212
"scripts": {
13-
"bootstrap": "yarn build:packages && yarn workspaces run install",
13+
"bootstrap": "yarn build:packages && yarn workspaces run bootstrap",
1414
"clean": "lerna clean",
1515
"start": "run-p start:*",
1616
"start:examples": "now dev",

packages/react-async-devtools/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
},
1818
"main": "src",
1919
"scripts": {
20+
"bootstrap": "yarn install",
2021
"build": "pika build",
2122
"postbuild": "copyfiles -f ../../LICENSE ../../README.md pkg",
2223
"publish": "npm publish pkg"

packages/react-async/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
},
2020
"main": "src",
2121
"scripts": {
22+
"bootstrap": "yarn install",
2223
"build": "pika build",
2324
"postbuild": "copyfiles -f ../../LICENSE ../../README.md pkg",
2425
"publish": "npm publish pkg"

0 commit comments

Comments
 (0)