elegance-js 1.1.3 → 1.1.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elegance-js",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "Web-Framework",
5
5
  "type": "module",
6
6
  "bin": {
@@ -19,7 +19,7 @@ const tsconfigPath = "tsconfig.json";
19
19
 
20
20
  const pageTsContent = `
21
21
  export const page = body({
22
- class: "bg-black text-white flex items-center justify-center",
22
+ class: "bg-black text-white flex items-center justify-center p-48",
23
23
  },
24
24
  h1({
25
25
  class: "text-4xl",
@@ -61,4 +61,5 @@ fs.writeFileSync(indexCssPath, "", "utf8");
61
61
  fs.writeFileSync(envDtsPath, envDtsContent, "utf8");
62
62
  fs.writeFileSync(tsconfigPath, tsconfigContent, "utf8");
63
63
 
64
- console.log("Bootstrapped new project! Open ./pages/page.ts to get started.");
64
+ console.log("Bootstrapped new project!");
65
+ console.log("Run this project with: npx dev")