@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
|
@@ -868,11 +868,8 @@ async function _doBuild(appDirRel: string): Promise<BuildOutput> {
|
|
|
868
868
|
return _doBuildInner(fs, path, cwd, appDirRel);
|
|
869
869
|
}
|
|
870
870
|
|
|
871
|
-
//
|
|
872
|
-
//
|
|
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
|
/**
|