You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 4, 2024. It is now read-only.
4. If it works, then you can publish the component to NPM and PyPI:
97
+
1. Publish on PyPI
98
+
```
99
+
$ twine upload dist/*
100
+
```
101
+
2. Cleanup the dist folder (optional)
102
+
```
103
+
$ rm -rf dist
104
+
```
105
+
3. Publish on NPM (Optional if chosen False in `publish_on_npm`)
106
+
```
107
+
$ npm publish
108
+
```
109
+
_Publishing your component to NPM will make the JavaScript bundles available on the unpkg CDN. By default, Dash servers the component library's CSS and JS from the remote unpkg CDN, so if you haven't published the component package to NPM you'll need to set the `serve_locally` flags to `True` (unless you choose `False` on `publish_on_npm`). We will eventually make `serve_locally=True` the default, [follow our progress in this issue](https://github.com/plotly/dash/issues/284)._
75
110
76
-
We use [Builder][] to centrally manage build configuration, dependencies, and
77
-
scripts. See the [dash-components-archetype][] repo for more information.
0 commit comments