h1v3 0.15.0 → 0.17.0

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.
@@ -13,7 +13,8 @@ import "/vendor/webawesome-pro/components/dialog/dialog.js";
13
13
  import "/vendor/webawesome-pro/components/callout/callout.js";
14
14
 
15
15
  // vendor: lit
16
- export { html, LitElement, css, render } from "/vendor/lit@3.3.1/dist/lit-core.min.js";
16
+ export { html, LitElement, css, render } from "/vendor/lit@3.3.1/dist/lit-all.min.js";
17
+ export * as lit from "/vendor/lit@3.3.1/dist/lit-all.min.js";
17
18
 
18
19
  // h1v3
19
20
  import "./components/notification.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "h1v3",
3
- "version": "0.15.0",
3
+ "version": "0.17.0",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "author": "",
@@ -31,14 +31,14 @@ export async function deps(_argv) {
31
31
 
32
32
  // lit
33
33
  const dest = join(destVendorPath(), "lit@3.3.1", "dist");
34
- const destFile = join(dest, "lit-core.min.js");
34
+ const destFile = join(dest, "lit-all.min.js");
35
35
  if (existsSync(destFile)) {
36
36
 
37
37
  console.log("Skipping", destFile);
38
38
 
39
39
  } else {
40
40
 
41
- const resp = await fetch("https://cdn.jsdelivr.net/gh/lit/dist@3.3.1/core/lit-core.min.js")
41
+ const resp = await fetch("https://cdn.jsdelivr.net/gh/lit/dist@3/all/lit-all.min.js");
42
42
  const lit = await resp.text();
43
43
  await fs.mkdir(dest, { recursive: true });
44
44
  await fs.writeFile(destFile, lit);