@cloudwerk/create-app 0.2.0 → 0.2.1
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/index.js +3 -3
- package/package.json +1 -1
- package/template-hono-jsx/app/layout.tsx +13 -14
package/dist/index.js
CHANGED
|
@@ -178,9 +178,9 @@ function printSuccessBanner(projectName, projectPath, pm) {
|
|
|
178
178
|
}
|
|
179
179
|
|
|
180
180
|
// src/versions.ts
|
|
181
|
-
var CORE_VERSION = "0.
|
|
182
|
-
var CLI_VERSION = "0.
|
|
183
|
-
var UI_VERSION = "0.
|
|
181
|
+
var CORE_VERSION = "0.15.1";
|
|
182
|
+
var CLI_VERSION = "0.15.0";
|
|
183
|
+
var UI_VERSION = "0.15.1";
|
|
184
184
|
|
|
185
185
|
// src/scaffold.ts
|
|
186
186
|
function getTemplateDir(renderer) {
|
package/package.json
CHANGED
|
@@ -1,18 +1,17 @@
|
|
|
1
1
|
import type { LayoutProps } from '@cloudwerk/core'
|
|
2
|
-
import
|
|
2
|
+
import './globals.css'
|
|
3
3
|
|
|
4
4
|
export default function RootLayout({ children }: LayoutProps) {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
)
|
|
5
|
+
return (
|
|
6
|
+
<html lang="en">
|
|
7
|
+
<head>
|
|
8
|
+
<meta charset="utf-8" />
|
|
9
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
10
|
+
<title>Cloudwerk App</title>
|
|
11
|
+
</head>
|
|
12
|
+
<body class="bg-gray-50 dark:bg-gray-900 text-gray-900 dark:text-gray-100 min-h-screen">
|
|
13
|
+
{children}
|
|
14
|
+
</body>
|
|
15
|
+
</html>
|
|
16
|
+
)
|
|
18
17
|
}
|