wash-cli 0.20.1

wasmcloud Shell (wash) CLI tool
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <link rel="icon" type="image/svg+xml" href="/wasmcloud.svg" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>wasmCloud UI | Washboard 🏄</title>
    <script>
      const isDarkMode = localStorage.getItem('theme') === 'dark';
      const isSystem = localStorage.getItem('theme') === 'system' || null;
      const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
      if (isDarkMode || (isSystem && prefersDark)) {
        document.documentElement.classList.add('dark');
      } else {
        document.documentElement.classList.remove('dark');
      }
    </script>
  </head>

  <body>
    <div id="root" className=""></div>
    <script type="module" src="/src/index.tsx"></script>
  </body>
</html>