@kithinji/pod 1.0.9 → 1.0.11

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/main.js CHANGED
@@ -2881,24 +2881,7 @@ function stylePlugin(store) {
2881
2881
  const allRules = styleRules.flat();
2882
2882
  const uniqueRules = [...new Set(allRules)];
2883
2883
  const cssOutput = uniqueRules.join("\n");
2884
- let output = `html {
2885
- box-sizing: border-box;
2886
- }
2887
-
2888
- *, *::before, *::after {
2889
- box-sizing: inherit;
2890
- }
2891
-
2892
- body {
2893
- margin: 0;
2894
- display: flex;
2895
- place-items: center;
2896
- min-width: 320px;
2897
- min-height: 100vh;
2898
- }
2899
-
2900
- ${cssOutput}`;
2901
- fs4.writeFileSync("public/index.css", output);
2884
+ fs4.writeFileSync("public/index.css", cssOutput);
2902
2885
  });
2903
2886
  }
2904
2887
  };
@@ -4508,7 +4491,7 @@ function printNextSteps(projectName, env, services) {
4508
4491
 
4509
4492
  // src/main.ts
4510
4493
  var program = new Command();
4511
- program.name("pod").description("Pod cli tool").version("1.0.9");
4494
+ program.name("pod").description("Pod cli tool").version("1.0.11");
4512
4495
  program.command("new <name>").description("Start a new Pod Project").action(async (name) => {
4513
4496
  await addNew(name);
4514
4497
  const appDir = path13.resolve(process.cwd(), name);