@visulima/task-runner 1.0.0-alpha.8 → 1.0.0-alpha.9
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/CHANGELOG.md +31 -0
- package/README.md +3 -1
- package/dist/index.d.ts +791 -205
- package/dist/index.js +28 -20
- package/dist/packem_chunks/index.js +5593 -0
- package/dist/packem_shared/{Cache-CWaX_c8U.js → Cache-CbhoA268.js} +151 -10
- package/dist/packem_shared/{FileAccessTracker-CQ5Ot7Hd.js → FileAccessTracker-D8zIURPU.js} +1 -1
- package/dist/packem_shared/{FingerprintManager-CV7U4f4f.js → FingerprintManager-78DjwWQ4.js} +1 -1
- package/dist/packem_shared/HttpRemoteCache-BTXUBH7t.js +290 -0
- package/dist/packem_shared/INPUT_URI_SCHEMES-DRm76YI5.js +69 -0
- package/dist/packem_shared/{IncrementalFileHasher-BRS76-mb.js → IncrementalFileHasher-BBhVK491.js} +1 -1
- package/dist/packem_shared/ReapiRemoteCache-vgRxDMmu.js +1012 -0
- package/dist/packem_shared/{TaskOrchestrator-UCMHCx8c.js → TaskOrchestrator-CdRaQhTO.js} +34 -11
- package/dist/packem_shared/{TrackedTaskExecutor-CFPpQfXF.js → TrackedTaskExecutor-CWSMfHAW.js} +2 -2
- package/dist/packem_shared/V2_ROOT-DKBLxKo4.js +14 -0
- package/dist/packem_shared/actionDigestForTaskHash-BRE-9MT6.js +121 -0
- package/dist/packem_shared/archive-CnggHWb-.js +152 -0
- package/dist/packem_shared/{collectFiles-ClXHnHhg.js → collectFiles-cc1gokGU.js} +2 -1
- package/dist/packem_shared/{computeTaskHash-B5APHW7e.js → computeTaskHash-DHoBJ_-V.js} +10 -4
- package/dist/packem_shared/containsBlob-CwGB0a_q.js +125 -0
- package/dist/packem_shared/{createTaskGraph-B5YrfAMx.js → createTaskGraph-Bwl4hwAf.js} +17 -0
- package/dist/packem_shared/{defaultTaskRunner-DzR0ld8F.js → defaultTaskRunner-BaX4ZbFv.js} +24 -13
- package/dist/packem_shared/{detectFrameworks-CeFzKE6J.js → detectFrameworks-D7nyTc-o.js} +1 -1
- package/dist/packem_shared/{detectScriptShell-CR-xXKA4.js → detectScriptShell-CzxCM9-t.js} +1 -1
- package/dist/packem_shared/digestBuffer-CPdI2E1d.js +48 -0
- package/dist/packem_shared/{expandArguments-0AwD2BIA.js → expandArguments-Ba-hHYff.js} +2 -1
- package/dist/packem_shared/{expandTokensInString-C03AGAjh.js → expandTokensInString-Bb7nYehP.js} +2 -1
- package/dist/packem_shared/{extractPackageName-CbVNW-dr.js → extractPackageName-CMHjqGj_.js} +1 -1
- package/dist/packem_shared/{generateRunSummary-BE1jnQ3H.js → generateRunSummary-Bah7CFay.js} +1 -1
- package/dist/packem_shared/{getCurrentBranch-DsKPDoVj.js → getCurrentBranch-DVNikt0P.js} +11 -8
- package/dist/packem_shared/getMainWorktreeRoot-iBqToQJ4.js +114 -0
- package/dist/packem_shared/{parseCommands-CJ16ohOB.js → parseCommands-DDdIxaH5.js} +3 -3
- package/dist/packem_shared/resolveCacheMode-CsmHT_0o.js +21 -0
- package/dist/packem_shared/{runConcurrently-CmfC4r-f.js → runConcurrently-BCGQ9fJl.js} +1 -1
- package/dist/packem_shared/shell-quote-DWJJbt21.js +3 -0
- package/dist/packem_shared/{utils-zO0ZRgtf.js → utils-Bmnj-H2J.js} +4 -1
- package/index.js +52 -52
- package/package.json +23 -10
- package/dist/packem_shared/RemoteCache-DSU3lc87.js +0 -219
- package/dist/packem_shared/archive-UQHAnZUa.js +0 -102
package/dist/index.js
CHANGED
|
@@ -1,37 +1,45 @@
|
|
|
1
1
|
export { buildForwardDependencyMap, buildReverseDependencyMap, expandAffected, filterAffectedTasks, getAffectedProjects, getChangedFiles } from './packem_shared/buildForwardDependencyMap-0BJFMMPv.js';
|
|
2
|
-
export {
|
|
2
|
+
export { createRemoteCacheBackend, resolveCacheMode } from './packem_shared/resolveCacheMode-CsmHT_0o.js';
|
|
3
|
+
export { actionDigestForTaskHash, containsByTaskHash, retrieveByTaskHash, storeByTaskHash } from './packem_shared/actionDigestForTaskHash-BRE-9MT6.js';
|
|
4
|
+
export { HttpRemoteCache } from './packem_shared/HttpRemoteCache-BTXUBH7t.js';
|
|
5
|
+
export { ReapiRemoteCache } from './packem_shared/ReapiRemoteCache-vgRxDMmu.js';
|
|
6
|
+
export { Cache, DEFAULT_CACHE_DIRECTORY_NAME, formatCacheSize, parseCacheSize } from './packem_shared/Cache-CbhoA268.js';
|
|
7
|
+
export { digestBuffer, digestFile } from './packem_shared/digestBuffer-CPdI2E1d.js';
|
|
8
|
+
export { V2_AC, V2_CAS, V2_INDEX, V2_ROOT, V2_TMP, acEntryPath, casBlobPath, taskHashIndexPath } from './packem_shared/V2_ROOT-DKBLxKo4.js';
|
|
9
|
+
export { containsBlob, fetchBlobToFile, putBlobFromBytes, putBlobFromFile, touchBlob, verifyBlob } from './packem_shared/containsBlob-CwGB0a_q.js';
|
|
3
10
|
export { toChromeTrace, writeChromeTrace } from './packem_shared/toChromeTrace-B2tZoJ-7.js';
|
|
4
|
-
export { parseCommands } from './packem_shared/parseCommands-
|
|
5
|
-
export { runConcurrently } from './packem_shared/runConcurrently-
|
|
11
|
+
export { parseCommands } from './packem_shared/parseCommands-DDdIxaH5.js';
|
|
12
|
+
export { runConcurrently } from './packem_shared/runConcurrently-BCGQ9fJl.js';
|
|
6
13
|
export { runConcurrentFallback } from './packem_shared/runConcurrentFallback-BTmgGV1H.js';
|
|
7
|
-
export { defaultTaskRunner } from './packem_shared/defaultTaskRunner-
|
|
8
|
-
export { detectScriptShell } from './packem_shared/detectScriptShell-
|
|
9
|
-
export { FileAccessTracker, generatePreloadScript } from './packem_shared/FileAccessTracker-
|
|
10
|
-
export { FingerprintManager } from './packem_shared/FingerprintManager-
|
|
11
|
-
export { detectFrameworks, getFrameworkEnvVariables, inferFrameworkEnvPatterns } from './packem_shared/detectFrameworks-
|
|
14
|
+
export { defaultTaskRunner } from './packem_shared/defaultTaskRunner-BaX4ZbFv.js';
|
|
15
|
+
export { detectScriptShell } from './packem_shared/detectScriptShell-CzxCM9-t.js';
|
|
16
|
+
export { FileAccessTracker, generatePreloadScript } from './packem_shared/FileAccessTracker-D8zIURPU.js';
|
|
17
|
+
export { FingerprintManager } from './packem_shared/FingerprintManager-78DjwWQ4.js';
|
|
18
|
+
export { detectFrameworks, getFrameworkEnvVariables, inferFrameworkEnvPatterns } from './packem_shared/detectFrameworks-D7nyTc-o.js';
|
|
12
19
|
export { projectGraphToDot, toGraphAscii, toGraphHtml, toGraphJson, toGraphvizDot } from './packem_shared/projectGraphToDot-DU1lSe-c.js';
|
|
13
|
-
export { IncrementalFileHasher } from './packem_shared/IncrementalFileHasher-
|
|
20
|
+
export { IncrementalFileHasher } from './packem_shared/IncrementalFileHasher-BBhVK491.js';
|
|
14
21
|
export { CompositeLifeCycle, ConsoleLifeCycle, EmptyLifeCycle } from './packem_shared/CompositeLifeCycle-CSVbRC_5.js';
|
|
15
|
-
export { LockfileHasher, extractPackageName, parseNpmLockfile, parsePnpmLockfile, parseYarnLockfile } from './packem_shared/extractPackageName-
|
|
22
|
+
export { LockfileHasher, extractPackageName, parseNpmLockfile, parsePnpmLockfile, parseYarnLockfile } from './packem_shared/extractPackageName-CMHjqGj_.js';
|
|
16
23
|
export { LogReporter, createLogReporter } from './packem_shared/LogReporter-BDt52HLu.js';
|
|
17
24
|
export { isNativeAvailable, loadNativeBindings } from './packem_shared/isNativeAvailable-BpD28A6Z.js';
|
|
18
25
|
export { resolveOutputs } from './packem_shared/resolveOutputs-n6MCKoTe.js';
|
|
26
|
+
export { INPUT_URI_SCHEMES, InvalidInputUriError, looksLikeInputUri, parseInputUri } from './packem_shared/INPUT_URI_SCHEMES-DRm76YI5.js';
|
|
19
27
|
export { enforceProjectConstraints } from './packem_shared/enforceProjectConstraints-C5Jp_C3u.js';
|
|
20
|
-
export {
|
|
21
|
-
export {
|
|
22
|
-
export { createTaskGraph, getTaskId, parseTaskId } from './packem_shared/createTaskGraph-B5YrfAMx.js';
|
|
28
|
+
export { generateRunSummary, getLastRunSummaryPath, readLastRunSummary, writeLastRunSummary, writeRunSummary } from './packem_shared/generateRunSummary-Bah7CFay.js';
|
|
29
|
+
export { createTaskGraph, getTaskId, parseTaskId } from './packem_shared/createTaskGraph-Bwl4hwAf.js';
|
|
23
30
|
export { findCycle, findCycles, getDependentTasks, getLeafTasks, getTransitiveDependencies, makeAcyclic, reverseTaskGraph, walkTaskGraph } from './packem_shared/findCycle-DefgNYhg.js';
|
|
24
|
-
export { InProcessTaskHasher, computeTaskHash } from './packem_shared/computeTaskHash-
|
|
25
|
-
export { TaskOrchestrator } from './packem_shared/TaskOrchestrator-
|
|
31
|
+
export { InProcessTaskHasher, computeTaskHash } from './packem_shared/computeTaskHash-DHoBJ_-V.js';
|
|
32
|
+
export { TaskOrchestrator } from './packem_shared/TaskOrchestrator-CdRaQhTO.js';
|
|
26
33
|
export { TaskScheduler, parsePartition } from './packem_shared/parsePartition-BfLbHGAx.js';
|
|
27
34
|
export { TerminalBuffer } from './packem_shared/TerminalBuffer-qVJvbRQZ.js';
|
|
28
|
-
export { TrackedTaskExecutor } from './packem_shared/TrackedTaskExecutor-
|
|
29
|
-
export { c as collectFiles, a as createFailureResult, h as hashFile, b as hashStrings, r as readPackageDeps, d as resolveTaskCwd, s as sortObjectKeys, u as uniqueId } from './packem_shared/utils-
|
|
30
|
-
export { evaluateWhen, explainWhen, getCurrentBranch, resetBranchCache } from './packem_shared/getCurrentBranch-
|
|
35
|
+
export { TrackedTaskExecutor } from './packem_shared/TrackedTaskExecutor-CWSMfHAW.js';
|
|
36
|
+
export { c as collectFiles, a as createFailureResult, h as hashFile, b as hashStrings, r as readPackageDeps, d as resolveTaskCwd, s as sortObjectKeys, u as uniqueId } from './packem_shared/utils-Bmnj-H2J.js';
|
|
37
|
+
export { evaluateWhen, explainWhen, getCurrentBranch, resetBranchCache } from './packem_shared/getCurrentBranch-DVNikt0P.js';
|
|
38
|
+
export { getMainWorktreeRoot, isLinkedWorktree, resetWorktreeCache } from './packem_shared/getMainWorktreeRoot-iBqToQJ4.js';
|
|
31
39
|
export { createInputHandler } from './packem_shared/createInputHandler-DTfePcTG.js';
|
|
32
|
-
export { expandArguments } from './packem_shared/expandArguments-
|
|
40
|
+
export { expandArguments } from './packem_shared/expandArguments-Ba-hHYff.js';
|
|
33
41
|
export { expandShortcut } from './packem_shared/expandShortcut-BVG05ee4.js';
|
|
34
|
-
export { expandTokens, expandTokensInString } from './packem_shared/expandTokensInString-
|
|
42
|
+
export { expandTokens, expandTokensInString } from './packem_shared/expandTokensInString-Bb7nYehP.js';
|
|
35
43
|
export { expandWildcard } from './packem_shared/expandWildcard-B0xN_knq.js';
|
|
36
44
|
export { formatTimingTable, logTimings } from './packem_shared/formatTimingTable-3qtCM552.js';
|
|
37
45
|
export { runTeardown } from './packem_shared/runTeardown-BAezH79J.js';
|