GenSpectrum / dashboard-components

https://genspectrum.github.io/dashboard-components/
GNU Affero General Public License v3.0
2 stars 0 forks source link

Build standalone bundle #399

Closed chaoran-chen closed 4 months ago

chaoran-chen commented 4 months ago

It would be great to have a standalone bundle that can be easily used without any other dependencies. It should be made available on NPM so that people can use it like this:

<html>
  <head>
    <script type="module" src="https://unpkg.com/@genspectrum/dashboard-components@...."></script>
    <link rel="stylesheet" href="https://unpkg.com/@genspectrum/dashboard-components@...." />
  </head>
  <body>
    <gs-app...
  </body>
</html>

(unpkg.com automatically deploys everything that is on NPM. Our current dashboard-components.js is available at https://unpkg.com/@genspectrum/dashboard-components@0.6.8/dist/dashboard-components.js.)