@openhistoricalmap/map-styles 0.9.11 → 0.9.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/historical/historical.json +1384 -751
- package/dist/japanese_scroll/japanese_scroll.json +88 -106
- package/dist/ohm.styles.js +1806 -1318
- package/dist/railway/railway.json +365 -474
- package/dist/woodblock/woodblock.json +93 -111
- package/historical/historical.json +721 -518
- package/index.css +53 -0
- package/index.html +103 -5
- package/japanese_scroll/japanese_scroll.json +82 -82
- package/package.json +6 -6
- package/railway/railway.json +316 -311
- package/woodblock/woodblock.json +89 -91
package/README.md
CHANGED
|
@@ -79,8 +79,8 @@ Miscellaneous notes:
|
|
|
79
79
|
|
|
80
80
|
1. ensure your local `staging` branch of `ohm-website` is current using `git pull`
|
|
81
81
|
1. create a release branch from `staging`, e.g., `git checkout -b map-styles-0.9.7`
|
|
82
|
-
1. log in to the Docker container and start a bash shell
|
|
83
|
-
1. run `yarn upgrade` and verify, using the output, that the correct version has been installed. Note that the `map-styles` version is specified with the `^` operator so that our `package.json` will need to be updated for a **major version release**, e.g., to `1.x` from `0.9.x`
|
|
82
|
+
1. log in to the `ohm-website-web-1` Docker container and start a bash shell
|
|
83
|
+
1. run `yarn upgrade @openhistoricalmap/map-styles` and verify, using the output, that the correct version has been installed. Note that the `map-styles` version is specified with the `^` operator so that our `package.json` will need to be updated for a **major version release**, e.g., to `1.x` from `0.9.x`
|
|
84
84
|
```
|
|
85
85
|
Rebuilding all packages...
|
|
86
86
|
success Saved lockfile.
|
|
@@ -97,7 +97,7 @@ Miscellaneous notes:
|
|
|
97
97
|
1. pull the updated `staging` branch to get the merge commit
|
|
98
98
|
1. ensure your local `staging` branch of `ohm-deploy` is current using `git pull`
|
|
99
99
|
1. create a release branch from `staging`, e.g., `git checkout -b map-styles-0.9.7`
|
|
100
|
-
1. in `images/web/Dockerfile` update `OPENHISTORICALMAP_WEBSITE_GITSHA`
|
|
100
|
+
1. in `images/web/Dockerfile` update `OPENHISTORICALMAP_WEBSITE_GITSHA`
|
|
101
101
|
1. commit the `Dockerfile` and push your branch to GitHub
|
|
102
102
|
1. open a pull request against `OpenHistoricalMap/ohm-deploy`'s `staging` branch
|
|
103
103
|
1. confirm your changed files & merge to staging
|