This repository was archived by the owner on Aug 14, 2021. It is now read-only.
  
  
  
  
  
Description
Various process.env references made its way in the bundle in the last release, for example when including a package via CDN and its esm bundle. we need to make sure, that all env references get replaced during build and afterwards we have to verify that said include works. So for core-components for example, this served html code (located in root of core-components):
<!DOCTYPE html>
<html lang="en">
  <head>
    <script
      type="module"
      src="./web-components/corejam-core-components/corejam-core-components.esm.js"
    ></script>
  </head>
  <body>
    <corejam-box>hallo</corejam-box>
  </body>
</html>should not throw a js error.