create-caspian-app 0.2.0-beta.50 → 0.2.0-beta.51

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.
@@ -6,7 +6,7 @@ import process from "node:process";
6
6
 
7
7
  const mode: "watch" | "build" =
8
8
  process.argv[2] === "watch" ? "watch" : "build";
9
- const watcherPidFile = join(process.cwd(), ".pp", "postcss-watch.pid");
9
+ const watcherPidFile = join(process.cwd(), ".casp", "postcss-watch.pid");
10
10
  const mkdirAsync = promisify(mkdir);
11
11
  const readFileAsync = promisify(readFile);
12
12
  const rmAsync = promisify(rm);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-caspian-app",
3
- "version": "0.2.0-beta.50",
3
+ "version": "0.2.0-beta.51",
4
4
  "description": "Scaffold a new Caspian project (FastAPI-powered reactive Python framework).",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",