@kithinji/pod 1.0.6 → 1.0.7

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,7 +2881,18 @@ function stylePlugin(store) {
2881
2881
  const allRules = styleRules.flat();
2882
2882
  const uniqueRules = [...new Set(allRules)];
2883
2883
  const cssOutput = uniqueRules.join("\n");
2884
- fs4.writeFileSync("public/index.css", cssOutput);
2884
+ fs4.writeFileSync(
2885
+ "public/index.css",
2886
+ `html {
2887
+ box-sizing: border-box;
2888
+ }
2889
+
2890
+ *, *::before, *::after {
2891
+ box-sizing: inherit;
2892
+ }
2893
+ ${cssOutput}
2894
+ `
2895
+ );
2885
2896
  });
2886
2897
  }
2887
2898
  };
@@ -4491,7 +4502,7 @@ function printNextSteps(projectName, env, services) {
4491
4502
 
4492
4503
  // src/main.ts
4493
4504
  var program = new Command();
4494
- program.name("pod").description("Pod cli tool").version("1.0.6");
4505
+ program.name("pod").description("Pod cli tool").version("1.0.7");
4495
4506
  program.command("new <name>").description("Start a new Pod Project").action(async (name) => {
4496
4507
  await addNew(name);
4497
4508
  const appDir = path13.resolve(process.cwd(), name);