h1v3 0.16.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,8 +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-
|
|
17
|
-
export * as lit from "/vendor/lit@3.3.1/dist/lit-
|
|
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";
|
|
18
18
|
|
|
19
19
|
// h1v3
|
|
20
20
|
import "./components/notification.js";
|
package/package.json
CHANGED
package/src/commands/vendor.js
CHANGED
|
@@ -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-
|
|
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
|
|
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);
|