@rcsb/rcsb-documentation 0.1.8 → 0.1.9
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 +10 -0
- package/build/bundle.js +1 -1
- package/build/index.html +1 -1
- package/package.json +3 -1
- package/build/2630a3e3eab21c607e21.svg +0 -14
- package/build/295183786cd8a1389865.woff +0 -0
- package/build/a4e97f5a2a64f0ab1323.eot +0 -0
- package/build/asset-manifest.json +0 -13
- package/build/c94f7671dcc99dce43e2.ttf +0 -0
- package/build/fb6f3c230cb846e25247.gif +0 -0
- package/build/robots.txt +0 -3
- package/build/static/css/main.926c88ab.css +0 -2
- package/build/static/css/main.926c88ab.css.map +0 -1
- package/build/static/js/main.a51206b6.js +0 -3
- package/build/static/js/main.a51206b6.js.LICENSE.txt +0 -61
- package/build/static/js/main.a51206b6.js.map +0 -1
package/README.md
CHANGED
|
@@ -33,6 +33,16 @@ Inside the project directory, you can run the following commands:
|
|
|
33
33
|
- **`webpack.config.js`**: The Webpack configuration file that manages the build and bundling process.
|
|
34
34
|
- **`.babelrc`**: Babel configuration file for JavaScript transpilation.
|
|
35
35
|
|
|
36
|
+
## Publish
|
|
37
|
+
|
|
38
|
+
### Prerelease
|
|
39
|
+
npm version prerelease # assumes the current version ends with '-dev.X'
|
|
40
|
+
npm publish --tag next
|
|
41
|
+
|
|
42
|
+
### Release
|
|
43
|
+
npm version 0.X.0 # provide valid semver string
|
|
44
|
+
npm publish
|
|
45
|
+
|
|
36
46
|
## License
|
|
37
47
|
|
|
38
48
|
This project is licensed under the [MIT License](LICENSE).
|