Skip to content

Commit 5c729f1

Browse files
committed
update docs
1 parent e31546a commit 5c729f1

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This project is initialized with [Create React App](https://github.com/facebook/
88

99
- TypeScript
1010
- React (v16.8.0+, *tested up to v16.13.1*)
11-
- react-scripts (react-scripts v3.1.0, *tested up to v3.1.0, from createReactApp)
11+
- react-scripts (react-scripts v3+, *tested up to v3.1.2, from createReactApp)
1212
- react-testing-library (not Enzyme)
1313
- Yarn Workspaces (multiple packages architecture)
1414
- Lerna (tool for managing the monorepo packages)
@@ -20,7 +20,7 @@ This project is initialized with [Create React App](https://github.com/facebook/
2020

2121
The project now consists of 3 packages.
2222

23-
- **www**: create-react-app with TypeScript (react v16.13.1+, react-scripts v3.1.0)
23+
- **www**: create-react-app with TypeScript (react v16.13.1+, react-scripts v3.1.2)
2424
- **shared**: react components with TypeScript (react v16.13.1+)
2525
- **utils**: shared functions with TypeScript
2626

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
"typecheck": "lerna run typecheck --parallel",
1414
"lint": "lerna run lint --parallel",
1515
"lint:fix": "lerna run lint:fix --parallel",
16-
"start:www": "lerna run start --scope=\"@web/shared\" --scope=\"@web/utils\" --scope=\"@web/www\" --stream",
17-
"build:www": "lerna run build --scope=\"@web/shared\" --scope=\"@web/utils\" --scope=\"@web/www\" --stream",
18-
"test:www": "lerna run test --scope=\"@web/shared\" --scope=\"@web/utils\" --scope=\"@web/www\" --stream",
19-
"lint:www": "lerna run lint --scope=\"@web/shared\" --scope=\"@web/utils\" --scope=\"@web/www\" --stream",
20-
"lint:fix:www": "lerna run lint:fix --scope=\"@web/shared\" --scope=\"@web/utils\" --scope=\"@web/www\" --stream",
16+
"start:www": "lerna run start --scope=\"@web/shared\" --scope=\"@web/utils\" --scope=\"@web/www\" --parallel",
17+
"build:www": "lerna run build --scope=\"@web/shared\" --scope=\"@web/utils\" --scope=\"@web/www\" --parallel",
18+
"test:www": "lerna run test --scope=\"@web/shared\" --scope=\"@web/utils\" --scope=\"@web/www\" --parallel",
19+
"lint:www": "lerna run lint --scope=\"@web/shared\" --scope=\"@web/utils\" --scope=\"@web/www\" --parallel",
20+
"lint:fix:www": "lerna run lint:fix --scope=\"@web/shared\" --scope=\"@web/utils\" --scope=\"@web/www\" --parallel",
2121
"clean": "lerna clean",
2222
"clean:update": "lerna clean && lerna bootstrap"
2323
},

0 commit comments

Comments
 (0)