Skip to content

Commit 3df1a17

Browse files
committed
Fixes issues with project setup related to storybook and lerna
- Adds configFile and baseUrl config to tsconfig-paths-webpack-plugin in .storybook/main.js - Sets yarn as npmClient in lerna.json - Fixes invalid yarn.lock files - Adds yarn bootstrap instruction to local develop instructions in readme
1 parent 7d7a976 commit 3df1a17

File tree

7 files changed

+3058
-4235
lines changed

7 files changed

+3058
-4235
lines changed

.storybook/main.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ const babelOptions = {
8484
],
8585
}
8686

87+
8788
module.exports = {
8889
reactOptions: {
8990
fastRefresh: true,
@@ -127,7 +128,10 @@ module.exports = {
127128

128129
config.resolve.plugins = [
129130
...(config.resolve.plugins || []),
130-
new TsconfigPathsPlugin(),
131+
new TsconfigPathsPlugin({
132+
configFile: path.resolve(__dirname, '../tsconfig.json'),
133+
baseUrl: path.resolve(__dirname, '.'),
134+
}),
131135
]
132136

133137
config.resolve.extensions = [

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Fork original repo at <https://github.com/JustFly1984/react-google-maps-api>. Cl
4242
- `cd react-google-maps-api` - move to newly created folder
4343
- `cp .storybook/example.maps.config.ts .storybook/maps.config.ts` - create file with API Key
4444
- `yarn install` - install dependencies
45+
- `yarn bootstrap` - setup workspace
4546
- `yarn storybook` - run storybook server
4647

4748
Any changes you make to src folders of contained packages should reflect on the storybook server.

lerna.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
"packages": [
33
"packages/*"
44
],
5-
"version": "independent"
5+
"version": "independent",
6+
"npmClient": "yarn"
67
}

packages/react-google-maps-api-gatsby-example/yarn.lock

+1,468-2,002
Large diffs are not rendered by default.

packages/react-google-maps-api-infobox/yarn.lock

+761-1,043
Large diffs are not rendered by default.

packages/react-google-maps-api-marker-clusterer/yarn.lock

+818-1,185
Large diffs are not rendered by default.

packages/react-google-maps-api/yarn.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -624,9 +624,9 @@
624624
fast-deep-equal "^3.1.3"
625625

626626
"@googlemaps/[email protected]":
627-
version "2.0.13"
628-
resolved "https://registry.yarnpkg.com/@googlemaps/markerclusterer/-/markerclusterer-2.0.13.tgz#cb61db9be52c9d8b061dfad77dca33b2965e7b2a"
629-
integrity sha512-302GjQ9gsHOK/ef6hif+rJDv+AB3THst02iDCbXH2PS9GFwb/5yuytaLpuzJiqGNG+k2zvTAWTsGY/fQN5DZ7w==
627+
version "2.0.15"
628+
resolved "https://registry.yarnpkg.com/@googlemaps/markerclusterer/-/markerclusterer-2.0.15.tgz#72052a23a061789c6055a13713b8852359cc03a9"
629+
integrity sha512-/I6Esi5FtyeVHsezN9Kut8zRJoqe7KkTIJXGVqpKFf6BjC7qQ1xRajLMkOz0s8XKgLevbr+KdYjuvmj+LohOGg==
630630
dependencies:
631631
fast-deep-equal "^3.1.3"
632632
supercluster "^7.1.3"

0 commit comments

Comments
 (0)