@batijs/cli 0.0.162 → 0.0.163
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/dist/boilerplates/@batijs/react/files/$README.md.js +1 -1
- package/dist/boilerplates/@batijs/solid/files/$README.md.js +1 -1
- package/dist/boilerplates/@batijs/vue/files/$README.md.js +1 -1
- package/dist/boilerplates/@batijs/vue/files/vue-shim.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +5 -5
|
@@ -5,7 +5,7 @@ async function getReadme(props) {
|
|
|
5
5
|
const about = `
|
|
6
6
|
This app is ready to start. It's powered by [Vike](https://vike.dev) and [React](https://react.dev/learn).
|
|
7
7
|
|
|
8
|
-
### \`/pages/+config.
|
|
8
|
+
### \`/pages/+config.ts\`
|
|
9
9
|
Such files are [the interface](https://vike.dev/config) between Vike and your code. It defines:
|
|
10
10
|
- A default [\`<Layout>\` component](https://vike.dev/Layout) (that wraps your [\`<Page>\` components](https://vike.dev/Page)).
|
|
11
11
|
- A default [\`title\`](https://vike.dev/head).
|
|
@@ -5,7 +5,7 @@ async function getReadme(props) {
|
|
|
5
5
|
const about = `
|
|
6
6
|
This app is ready to start. It's powered by [Vike](https://vike.dev) and [SolidJS](https://www.solidjs.com/guides/getting-started).
|
|
7
7
|
|
|
8
|
-
### \`/pages/+config.
|
|
8
|
+
### \`/pages/+config.ts\`
|
|
9
9
|
Such files are [the interface](https://vike.dev/config) between Vike and your code. It defines:
|
|
10
10
|
- A default [\`<Layout>\` component](https://vike.dev/Layout) (that wraps your [\`<Page>\` components](https://vike.dev/Page)).
|
|
11
11
|
- A default [\`title\`](https://vike.dev/head).
|
|
@@ -5,7 +5,7 @@ async function getReadme(props) {
|
|
|
5
5
|
const about = `
|
|
6
6
|
This app is ready to start. It's powered by [Vike](https://vike.dev) and [Vue](https://vuejs.org/guide/quick-start.html).
|
|
7
7
|
|
|
8
|
-
### \`/pages/+config.
|
|
8
|
+
### \`/pages/+config.ts\`
|
|
9
9
|
Such files are [the interface](https://vike.dev/config) between Vike and your code. It defines:
|
|
10
10
|
- A default [\`<Layout>\` component](https://vike.dev/Layout) (that wraps your [\`<Page>\` components](https://vike.dev/Page)).
|
|
11
11
|
- A default [\`title\`](https://vike.dev/head).
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// Without this file, `tsc` will fail with such errors:
|
|
2
|
-
// pages/+config.
|
|
2
|
+
// pages/+config.ts:2:20 - error TS2307: Cannot find module '../layouts/LayoutDefault.vue' or its corresponding type declarations.
|
|
3
3
|
// import Layout from "../layouts/LayoutDefault.vue";
|
|
4
4
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
5
5
|
//
|
package/dist/index.js
CHANGED
|
@@ -589,7 +589,7 @@ Please report this issue to https://github.com/magne4000/bati`
|
|
|
589
589
|
// package.json
|
|
590
590
|
var package_default = {
|
|
591
591
|
name: "@batijs/cli",
|
|
592
|
-
version: "0.0.
|
|
592
|
+
version: "0.0.163",
|
|
593
593
|
type: "module",
|
|
594
594
|
scripts: {
|
|
595
595
|
"check-types": "tsc --noEmit",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@batijs/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.163",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"description": "Next-gen scaffolder. Get started with fully-functional apps, and choose any tool you want",
|
|
@@ -19,12 +19,12 @@
|
|
|
19
19
|
"tsup": "^8.0.2",
|
|
20
20
|
"typescript": "^5.3.3",
|
|
21
21
|
"vite": "^5.1.4",
|
|
22
|
-
"@batijs/build": "0.0.
|
|
23
|
-
"@batijs/compile": "0.0.
|
|
22
|
+
"@batijs/build": "0.0.163",
|
|
23
|
+
"@batijs/compile": "0.0.163"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@batijs/
|
|
27
|
-
"@batijs/
|
|
26
|
+
"@batijs/features": "0.0.163",
|
|
27
|
+
"@batijs/core": "0.0.163"
|
|
28
28
|
},
|
|
29
29
|
"bin": "./dist/index.js",
|
|
30
30
|
"exports": {
|