@pylonsync/functions 0.3.295 → 0.3.297

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": "@pylonsync/functions",
3
- "version": "0.3.295",
3
+ "version": "0.3.297",
4
4
  "description": "TypeScript function runtime for pylon — defines server-side queries, mutations, and actions.",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -868,11 +868,8 @@ async function _doBuild(appDirRel: string): Promise<BuildOutput> {
868
868
  return _doBuildInner(fs, path, cwd, appDirRel);
869
869
  }
870
870
 
871
- // Monotonic per-process counter for the Tailwind temp filename. `pylon dev`
872
- // warms the SSR bundle in one runner process while incoming requests can drive
873
- // their own rebuild in another, so two `buildTailwind` calls may run against the
874
- // same outdir at once. Combined with the pid it gives every compile a unique
875
- // temp path, so concurrent builds never rename each other's file away.
871
+ // Per-process counter for the Tailwind temp filename with the pid it gives
872
+ // every concurrent compile a unique temp path (see buildTailwind below).
876
873
  let _styleBuildSeq = 0;
877
874
 
878
875
  /**