Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class App extends Component {
}
```

## Doc
## Documentation

#### Properties

Expand Down Expand Up @@ -140,6 +140,14 @@ class App extends Component {

## ChangeLog:

### 1.11.1

- Bump dependencies version

### 1.11.0

- Bump dependencies version

### 1.10.0

- Bump dependencies version
Expand Down Expand Up @@ -191,13 +199,16 @@ class App extends Component {
- Adding the key `REACT_APP_MAPBOX_GL_TOKEN` into the `.env` file
- Starting the server by: `yarn start`

## Upgrading dependencies
## Upgrading dependencies checklist
- Pull the latest code
- Create a new branch
- Upgrading the dependencies
```
yarn upgrade-interactive --latest
```
- Test if the app works after upgrading: `yarn start`
- Build the package: `yarn build`
- Increasing the package version in the `package.json`
- Adding the release note in the `README`
- Push the change into Github
- Publish the package into npmjs: `npm publish`
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-mapbox-gl-spiderifier",
"version": "1.11.0",
"version": "1.11.1",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
Expand All @@ -12,10 +12,10 @@
"url": "https://github.com/thuanmb/react-mapbox-gl-spiderifier"
},
"dependencies": {
"classnames": "2.3.1",
"classnames": "2.3.2",
"lodash": "4.17.21",
"mapbox-gl": "2.9.2",
"node-sass": "7.0.1",
"mapbox-gl": "2.12.1",
"node-sass": "8.0.0",
"prop-types": "15.8.1",
"react-mapbox-gl": "5.1.1"
},
Expand All @@ -33,7 +33,7 @@
"not ie 11"
],
"devDependencies": {
"@babel/cli": "7.18.10",
"@babel/cli": "7.20.7",
"babel-preset-react-app": "10.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
Expand Down
Loading