@beatzball/create-litro 0.1.1 → 0.1.2
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.
- package/CHANGELOG.md +6 -0
- package/dist/recipes/11ty-blog/template/app.ts +2 -2
- package/dist/recipes/11ty-blog/template/package.json +1 -1
- package/dist/recipes/fullstack/template/app.ts +2 -2
- package/dist/recipes/fullstack/template/package.json +1 -1
- package/package.json +1 -1
- package/recipes/11ty-blog/template/app.ts +2 -2
- package/recipes/11ty-blog/template/package.json +1 -1
- package/recipes/fullstack/template/app.ts +2 -2
- package/recipes/fullstack/template/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
import '@lit-labs/ssr-client/lit-element-hydrate-support.js';
|
|
3
3
|
|
|
4
4
|
// Client runtime: router outlet and link custom elements.
|
|
5
|
-
import 'litro/runtime/LitroOutlet.js';
|
|
6
|
-
import 'litro/runtime/LitroLink.js';
|
|
5
|
+
import '@beatzball/litro/runtime/LitroOutlet.js';
|
|
6
|
+
import '@beatzball/litro/runtime/LitroLink.js';
|
|
7
7
|
|
|
8
8
|
// Routes generated by the page scanner before each vite build.
|
|
9
9
|
import { routes } from './routes.generated.js';
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
import '@lit-labs/ssr-client/lit-element-hydrate-support.js';
|
|
3
3
|
|
|
4
4
|
// Client runtime: router outlet and link custom elements.
|
|
5
|
-
import 'litro/runtime/LitroOutlet.js';
|
|
6
|
-
import 'litro/runtime/LitroLink.js';
|
|
5
|
+
import '@beatzball/litro/runtime/LitroOutlet.js';
|
|
6
|
+
import '@beatzball/litro/runtime/LitroLink.js';
|
|
7
7
|
|
|
8
8
|
// Routes generated by the page scanner before each vite build.
|
|
9
9
|
// routes.generated.ts lives at the project root (not in dist/) so Vite's
|
package/package.json
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
import '@lit-labs/ssr-client/lit-element-hydrate-support.js';
|
|
3
3
|
|
|
4
4
|
// Client runtime: router outlet and link custom elements.
|
|
5
|
-
import 'litro/runtime/LitroOutlet.js';
|
|
6
|
-
import 'litro/runtime/LitroLink.js';
|
|
5
|
+
import '@beatzball/litro/runtime/LitroOutlet.js';
|
|
6
|
+
import '@beatzball/litro/runtime/LitroLink.js';
|
|
7
7
|
|
|
8
8
|
// Routes generated by the page scanner before each vite build.
|
|
9
9
|
import { routes } from './routes.generated.js';
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
import '@lit-labs/ssr-client/lit-element-hydrate-support.js';
|
|
3
3
|
|
|
4
4
|
// Client runtime: router outlet and link custom elements.
|
|
5
|
-
import 'litro/runtime/LitroOutlet.js';
|
|
6
|
-
import 'litro/runtime/LitroLink.js';
|
|
5
|
+
import '@beatzball/litro/runtime/LitroOutlet.js';
|
|
6
|
+
import '@beatzball/litro/runtime/LitroLink.js';
|
|
7
7
|
|
|
8
8
|
// Routes generated by the page scanner before each vite build.
|
|
9
9
|
// routes.generated.ts lives at the project root (not in dist/) so Vite's
|