@package-pal/core 0.0.3 → 0.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/index.d.ts +17 -0
- package/index.d.ts.map +1 -0
- package/index.js +214 -192
- package/index.js.map +24 -22
- package/lib/api.d.ts +50 -0
- package/lib/api.d.ts.map +1 -0
- package/lib/configuration/functions/check-bun.d.ts +2 -0
- package/lib/configuration/functions/check-bun.d.ts.map +1 -0
- package/lib/configuration/functions/get-default-logger.d.ts +4 -0
- package/lib/configuration/functions/get-default-logger.d.ts.map +1 -0
- package/lib/configuration/functions/is-root-dir.d.ts +2 -0
- package/lib/configuration/functions/is-root-dir.d.ts.map +1 -0
- package/lib/configuration/functions/load-config.d.ts +3 -0
- package/lib/configuration/functions/load-config.d.ts.map +1 -0
- package/lib/configuration/functions/parse-config.d.ts +29 -0
- package/lib/configuration/functions/parse-config.d.ts.map +1 -0
- package/lib/configuration/functions/search-config-path.d.ts +2 -0
- package/lib/configuration/functions/search-config-path.d.ts.map +1 -0
- package/lib/configuration/functions/validate-config-path.d.ts +6 -0
- package/lib/configuration/functions/validate-config-path.d.ts.map +1 -0
- package/lib/configuration/functions/z-loose-function.d.ts +3 -0
- package/lib/configuration/functions/z-loose-function.d.ts.map +1 -0
- package/lib/configuration/functions/z-loose-object-without-index-signature.d.ts +4 -0
- package/lib/configuration/functions/z-loose-object-without-index-signature.d.ts.map +1 -0
- package/lib/configuration/schemas/config.d.ts +131 -0
- package/lib/configuration/schemas/config.d.ts.map +1 -0
- package/lib/configuration/types/activated-config.d.ts +9 -0
- package/lib/configuration/types/activated-config.d.ts.map +1 -0
- package/lib/configuration/types/config-validation-result.d.ts +10 -0
- package/lib/configuration/types/config-validation-result.d.ts.map +1 -0
- package/lib/configuration/types/config.d.ts +26 -0
- package/lib/configuration/types/config.d.ts.map +1 -0
- package/lib/configuration/types/logger.d.ts +7 -0
- package/lib/configuration/types/logger.d.ts.map +1 -0
- package/lib/configuration/types/packages-ready-callback-props.d.ts +7 -0
- package/lib/configuration/types/packages-ready-callback-props.d.ts.map +1 -0
- package/lib/configuration/types/process-package-callback-props.d.ts +10 -0
- package/lib/configuration/types/process-package-callback-props.d.ts.map +1 -0
- package/lib/configuration/types/subprocess-callback.d.ts +2 -0
- package/lib/configuration/types/subprocess-callback.d.ts.map +1 -0
- package/lib/configuration/types/supported-config-type.d.ts +11 -0
- package/lib/configuration/types/supported-config-type.d.ts.map +1 -0
- package/lib/graph/functions/dfs-traverse-graph-paths.d.ts +3 -0
- package/lib/graph/functions/dfs-traverse-graph-paths.d.ts.map +1 -0
- package/lib/graph/functions/dfs-traverse-graph.d.ts +4 -0
- package/lib/graph/functions/dfs-traverse-graph.d.ts.map +1 -0
- package/lib/graph/functions/extract-subgraph.d.ts +3 -0
- package/lib/graph/functions/extract-subgraph.d.ts.map +1 -0
- package/lib/graph/functions/generate-graphs.d.ts +8 -0
- package/lib/graph/functions/generate-graphs.d.ts.map +1 -0
- package/lib/graph/functions/generate-package-circular-dependency-paths.d.ts +5 -0
- package/lib/graph/functions/generate-package-circular-dependency-paths.d.ts.map +1 -0
- package/lib/graph/functions/generate-topological-ranking-range.d.ts +3 -0
- package/lib/graph/functions/generate-topological-ranking-range.d.ts.map +1 -0
- package/lib/graph/functions/generate-topological-ranking.d.ts +2 -0
- package/lib/graph/functions/generate-topological-ranking.d.ts.map +1 -0
- package/lib/graph/functions/generate-topological-sorted-groups.d.ts +5 -0
- package/lib/graph/functions/generate-topological-sorted-groups.d.ts.map +1 -0
- package/lib/graph/functions/is-disjoint.d.ts +3 -0
- package/lib/graph/functions/is-disjoint.d.ts.map +1 -0
- package/lib/graph/functions/is-ranked-greater-than-or-equal.d.ts +3 -0
- package/lib/graph/functions/is-ranked-greater-than-or-equal.d.ts.map +1 -0
- package/lib/graph/functions/is-subgraph.d.ts +3 -0
- package/lib/graph/functions/is-subgraph.d.ts.map +1 -0
- package/lib/graph/functions/merge-graphs.d.ts +3 -0
- package/lib/graph/functions/merge-graphs.d.ts.map +1 -0
- package/lib/graph/types/package-graph.d.ts +3 -0
- package/lib/graph/types/package-graph.d.ts.map +1 -0
- package/lib/graph/types/package-graphs.d.ts +6 -0
- package/lib/graph/types/package-graphs.d.ts.map +1 -0
- package/lib/graph/types/package-node.d.ts +6 -0
- package/lib/graph/types/package-node.d.ts.map +1 -0
- package/lib/graph/types/package-order.d.ts +14 -0
- package/lib/graph/types/package-order.d.ts.map +1 -0
- package/lib/package/functions/load-packages.d.ts +4 -0
- package/lib/package/functions/load-packages.d.ts.map +1 -0
- package/lib/package/functions/parse-package.d.ts +3 -0
- package/lib/package/functions/parse-package.d.ts.map +1 -0
- package/lib/package/functions/run-for-each-package.d.ts +6 -0
- package/lib/package/functions/run-for-each-package.d.ts.map +1 -0
- package/lib/package/functions/scan-package-paths.d.ts +2 -0
- package/lib/package/functions/scan-package-paths.d.ts.map +1 -0
- package/lib/package/functions/scan-packages.d.ts +4 -0
- package/lib/package/functions/scan-packages.d.ts.map +1 -0
- package/lib/package/functions/update-package-version.d.ts +5 -0
- package/lib/package/functions/update-package-version.d.ts.map +1 -0
- package/lib/package/types/dependencies-field.d.ts +9 -0
- package/lib/package/types/dependencies-field.d.ts.map +1 -0
- package/lib/package/types/package-data.d.ts +12 -0
- package/lib/package/types/package-data.d.ts.map +1 -0
- package/lib/process/functions/get-commands-for-shell.d.ts +2 -0
- package/lib/process/functions/get-commands-for-shell.d.ts.map +1 -0
- package/lib/process/functions/get-line-buffered-writer.d.ts +2 -0
- package/lib/process/functions/get-line-buffered-writer.d.ts.map +1 -0
- package/lib/process/functions/parse-ps-shell-flags.d.ts +9 -0
- package/lib/process/functions/parse-ps-shell-flags.d.ts.map +1 -0
- package/lib/process/functions/read-stream.d.ts +2 -0
- package/lib/process/functions/read-stream.d.ts.map +1 -0
- package/lib/process/functions/run-subprocess.d.ts +11 -0
- package/lib/process/functions/run-subprocess.d.ts.map +1 -0
- package/lib/process/types/exit-state.d.ts +8 -0
- package/lib/process/types/exit-state.d.ts.map +1 -0
- package/lib/process/types/std-type.d.ts +7 -0
- package/lib/process/types/std-type.d.ts.map +1 -0
- package/lib/types/bump-package-version-options.d.ts +11 -0
- package/lib/types/bump-package-version-options.d.ts.map +1 -0
- package/lib/types/bump-version-type.d.ts +12 -0
- package/lib/types/bump-version-type.d.ts.map +1 -0
- package/lib/types/config-options.d.ts +5 -0
- package/lib/types/config-options.d.ts.map +1 -0
- package/lib/types/for-each-command-callback.d.ts +6 -0
- package/lib/types/for-each-command-callback.d.ts.map +1 -0
- package/lib/types/for-each-package-options.d.ts +11 -0
- package/lib/types/for-each-package-options.d.ts.map +1 -0
- package/lib/types/get-config-options.d.ts +5 -0
- package/lib/types/get-config-options.d.ts.map +1 -0
- package/lib/types/get-package-circular-dependency-paths-options.d.ts +6 -0
- package/lib/types/get-package-circular-dependency-paths-options.d.ts.map +1 -0
- package/lib/types/get-package-data-options.d.ts +6 -0
- package/lib/types/get-package-data-options.d.ts.map +1 -0
- package/lib/types/get-package-graph-options.d.ts +5 -0
- package/lib/types/get-package-graph-options.d.ts.map +1 -0
- package/lib/types/get-package-order-options.d.ts +5 -0
- package/lib/types/get-package-order-options.d.ts.map +1 -0
- package/lib/types/package-data-options.d.ts +5 -0
- package/lib/types/package-data-options.d.ts.map +1 -0
- package/lib/types/package-graphs-options.d.ts +5 -0
- package/lib/types/package-graphs-options.d.ts.map +1 -0
- package/lib/types/package-name-options.d.ts +4 -0
- package/lib/types/package-name-options.d.ts.map +1 -0
- package/lib/types/package-order-options.d.ts +5 -0
- package/lib/types/package-order-options.d.ts.map +1 -0
- package/lib/types/root-dir-options.d.ts +4 -0
- package/lib/types/root-dir-options.d.ts.map +1 -0
- package/lib/types/watch-packages-options.d.ts +7 -0
- package/lib/types/watch-packages-options.d.ts.map +1 -0
- package/lib/watch/functions/filter-files-modified-since.d.ts +2 -0
- package/lib/watch/functions/filter-files-modified-since.d.ts.map +1 -0
- package/lib/watch/functions/get-change-logic.d.ts +11 -0
- package/lib/watch/functions/get-change-logic.d.ts.map +1 -0
- package/lib/watch/functions/normalise-pattern-separators.d.ts +2 -0
- package/lib/watch/functions/normalise-pattern-separators.d.ts.map +1 -0
- package/lib/watch/functions/normalise-watched-file-path.d.ts +2 -0
- package/lib/watch/functions/normalise-watched-file-path.d.ts.map +1 -0
- package/lib/watch/functions/watch-package-changes.d.ts +8 -0
- package/lib/watch/functions/watch-package-changes.d.ts.map +1 -0
- package/lib/watch/types/change-action.d.ts +8 -0
- package/lib/watch/types/change-action.d.ts.map +1 -0
- package/lib/watch/types/package-changes.d.ts +2 -0
- package/lib/watch/types/package-changes.d.ts.map +1 -0
- package/package.json +10 -8
package/index.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export type * from './lib/types/get-package-data-options.ts';
|
|
2
|
+
export type * from './lib/types/get-package-graph-options.ts';
|
|
3
|
+
export type * from './lib/types/get-package-order-options.ts';
|
|
4
|
+
export type * from './lib/types/get-package-circular-dependency-paths-options.ts';
|
|
5
|
+
export type * from './lib/types/bump-package-version-options.ts';
|
|
6
|
+
export type * from './lib/types/watch-packages-options.ts';
|
|
7
|
+
export * from './lib/types/bump-version-type.ts';
|
|
8
|
+
export type * from './lib/configuration/types/logger.ts';
|
|
9
|
+
export type { Config, SchemaLogLevel as LogLevel, } from './lib/configuration/types/config.ts';
|
|
10
|
+
export type * from './lib/configuration/types/process-package-callback-props.ts';
|
|
11
|
+
export type * from './lib/graph/types/package-graph.ts';
|
|
12
|
+
export type * from './lib/graph/types/package-node.ts';
|
|
13
|
+
export type * from './lib/graph/types/package-order.ts';
|
|
14
|
+
export type * from './lib/package/types/package-data.ts';
|
|
15
|
+
export type * from './lib/watch/types/package-changes.ts';
|
|
16
|
+
export * from './lib/api.ts';
|
|
17
|
+
//# sourceMappingURL=index.d.ts.map
|
package/index.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../packages/core/src/index.ts"],"names":[],"mappings":"AAAA,mBAAmB,yCAAyC,CAAC;AAC7D,mBAAmB,0CAA0C,CAAC;AAC9D,mBAAmB,0CAA0C,CAAC;AAC9D,mBAAmB,8DAA8D,CAAC;AAClF,mBAAmB,6CAA6C,CAAC;AACjE,mBAAmB,uCAAuC,CAAC;AAC3D,cAAc,kCAAkC,CAAC;AAEjD,mBAAmB,qCAAqC,CAAC;AACzD,YAAY,EACX,MAAM,EAAE,cAAc,IAAI,QAAQ,GAClC,MAAM,qCAAqC,CAAC;AAC7C,mBAAmB,6DAA6D,CAAC;AAEjF,mBAAmB,oCAAoC,CAAC;AACxD,mBAAmB,mCAAmC,CAAC;AACvD,mBAAmB,oCAAoC,CAAC;AAExD,mBAAmB,qCAAqC,CAAC;AAEzD,mBAAmB,sCAAsC,CAAC;AAE1D,cAAc,cAAc,CAAC"}
|