@imfelixyeung/git-swarm 0.1.0 → 0.1.1
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/dist/cli.js +4 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -6256,7 +6256,7 @@ var program = new Command;
|
|
|
6256
6256
|
var package_default = {
|
|
6257
6257
|
name: "@imfelixyeung/git-swarm",
|
|
6258
6258
|
description: "Manage multiple Git repositories with ease.",
|
|
6259
|
-
version: "0.1.
|
|
6259
|
+
version: "0.1.1",
|
|
6260
6260
|
repository: {
|
|
6261
6261
|
type: "git",
|
|
6262
6262
|
url: "https://github.com/imfelixyeung/git-swarm"
|
|
@@ -16909,12 +16909,14 @@ function superRefine(fn, params) {
|
|
|
16909
16909
|
// src/config/index.ts
|
|
16910
16910
|
var CONFIG_FILE_NAME = "git-swarm.config.yaml";
|
|
16911
16911
|
var defaults = {
|
|
16912
|
+
$schema: `https://raw.githubusercontent.com/imfelixyeung/git-swarm/v${package_default.version}/src/config/schema.json`,
|
|
16912
16913
|
options: {
|
|
16913
16914
|
parallel: 1,
|
|
16914
16915
|
where: ""
|
|
16915
16916
|
}
|
|
16916
16917
|
};
|
|
16917
16918
|
var configSchema = object({
|
|
16919
|
+
$schema: string2().nullish(),
|
|
16918
16920
|
repositories: array(object({
|
|
16919
16921
|
path: string2()
|
|
16920
16922
|
})).nullish(),
|
|
@@ -16924,6 +16926,7 @@ var configSchema = object({
|
|
|
16924
16926
|
}).nullish()
|
|
16925
16927
|
});
|
|
16926
16928
|
var defaultConfig = {
|
|
16929
|
+
$schema: defaults.$schema,
|
|
16927
16930
|
options: {
|
|
16928
16931
|
parallel: defaults.options.parallel,
|
|
16929
16932
|
where: defaults.options.where
|