vag_tools 0.0.6 → 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/dist/vag_cli.js CHANGED
@@ -15,9 +15,10 @@ import { simpleGit } from "simple-git";
15
15
  // package.json
16
16
  var package_default = {
17
17
  name: "vag_tools",
18
- version: "0.0.6",
18
+ version: "0.0.7",
19
19
  description: "api and cli for managing sub-git-repositories",
20
20
  type: "module",
21
+ private: false,
21
22
  main: "./dist/vag_core.js",
22
23
  types: "./dist/vag_core.d.ts",
23
24
  bin: {
@@ -85,22 +86,22 @@ var package_default = {
85
86
  homepage: "https://github.com/charlyoleg2/vag#readme",
86
87
  dependencies: {
87
88
  "fs-extra": "^11.2.0",
88
- "simple-git": "^3.22.0",
89
- yaml: "^2.3.4",
89
+ "simple-git": "^3.25.0",
90
+ yaml: "^2.5.0",
90
91
  yargs: "^17.7.2"
91
92
  },
92
93
  devDependencies: {
93
94
  "@types/fs-extra": "^11.0.4",
94
- "@types/node": "^20.11.19",
95
+ "@types/node": "^22.1.0",
95
96
  "@types/yargs": "^17.0.32",
96
- eslint: "^8.56.0",
97
+ eslint: "^9.8.0",
97
98
  "npm-run-all": "^4.1.5",
98
- prettier: "^3.2.5",
99
+ prettier: "^3.3.3",
99
100
  shx: "^0.3.4",
100
- tsup: "^8.0.2",
101
- typescript: "^5.3.3",
102
- "typescript-eslint": "^7.0.1",
103
- vitest: "^1.2.2"
101
+ tsup: "^8.2.4",
102
+ typescript: "^5.5.4",
103
+ "typescript-eslint": "^8.0.0",
104
+ vitest: "^2.0.5"
104
105
  },
105
106
  prettier: {
106
107
  useTabs: true,
@@ -133,6 +134,7 @@ async function isGitRepo(pathDir2) {
133
134
  isRepo = true;
134
135
  }
135
136
  } catch (err) {
137
+ console.log(err);
136
138
  }
137
139
  if (!isRepo) {
138
140
  console.log(
@@ -307,8 +309,7 @@ async function validate_yaml_external(yamlPath) {
307
309
  return -1;
308
310
  }
309
311
  try {
310
- if (!Object.hasOwn(fyaml, "repositories"))
311
- throw 'The property "repositories" is missing!';
312
+ if (!Object.hasOwn(fyaml, "repositories")) throw 'The property "repositories" is missing!';
312
313
  for (const repo in fyaml.repositories) {
313
314
  if (!Object.hasOwn(fyaml.repositories[repo], "url"))
314
315
  throw `The property "url" is missing for repo ${repo} !`;
package/dist/vag_core.js CHANGED
@@ -9,9 +9,10 @@ import { simpleGit } from "simple-git";
9
9
  // package.json
10
10
  var package_default = {
11
11
  name: "vag_tools",
12
- version: "0.0.6",
12
+ version: "0.0.7",
13
13
  description: "api and cli for managing sub-git-repositories",
14
14
  type: "module",
15
+ private: false,
15
16
  main: "./dist/vag_core.js",
16
17
  types: "./dist/vag_core.d.ts",
17
18
  bin: {
@@ -79,22 +80,22 @@ var package_default = {
79
80
  homepage: "https://github.com/charlyoleg2/vag#readme",
80
81
  dependencies: {
81
82
  "fs-extra": "^11.2.0",
82
- "simple-git": "^3.22.0",
83
- yaml: "^2.3.4",
83
+ "simple-git": "^3.25.0",
84
+ yaml: "^2.5.0",
84
85
  yargs: "^17.7.2"
85
86
  },
86
87
  devDependencies: {
87
88
  "@types/fs-extra": "^11.0.4",
88
- "@types/node": "^20.11.19",
89
+ "@types/node": "^22.1.0",
89
90
  "@types/yargs": "^17.0.32",
90
- eslint: "^8.56.0",
91
+ eslint: "^9.8.0",
91
92
  "npm-run-all": "^4.1.5",
92
- prettier: "^3.2.5",
93
+ prettier: "^3.3.3",
93
94
  shx: "^0.3.4",
94
- tsup: "^8.0.2",
95
- typescript: "^5.3.3",
96
- "typescript-eslint": "^7.0.1",
97
- vitest: "^1.2.2"
95
+ tsup: "^8.2.4",
96
+ typescript: "^5.5.4",
97
+ "typescript-eslint": "^8.0.0",
98
+ vitest: "^2.0.5"
98
99
  },
99
100
  prettier: {
100
101
  useTabs: true,
@@ -127,6 +128,7 @@ async function isGitRepo(pathDir2) {
127
128
  isRepo = true;
128
129
  }
129
130
  } catch (err) {
131
+ console.log(err);
130
132
  }
131
133
  if (!isRepo) {
132
134
  console.log(
@@ -301,8 +303,7 @@ async function validate_yaml_external(yamlPath) {
301
303
  return -1;
302
304
  }
303
305
  try {
304
- if (!Object.hasOwn(fyaml, "repositories"))
305
- throw 'The property "repositories" is missing!';
306
+ if (!Object.hasOwn(fyaml, "repositories")) throw 'The property "repositories" is missing!';
306
307
  for (const repo in fyaml.repositories) {
307
308
  if (!Object.hasOwn(fyaml.repositories[repo], "url"))
308
309
  throw `The property "url" is missing for repo ${repo} !`;
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "vag_tools",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "api and cli for managing sub-git-repositories",
5
5
  "type": "module",
6
+ "private": false,
6
7
  "main": "./dist/vag_core.js",
7
8
  "types": "./dist/vag_core.d.ts",
8
9
  "bin": {
@@ -70,22 +71,22 @@
70
71
  "homepage": "https://github.com/charlyoleg2/vag#readme",
71
72
  "dependencies": {
72
73
  "fs-extra": "^11.2.0",
73
- "simple-git": "^3.22.0",
74
- "yaml": "^2.3.4",
74
+ "simple-git": "^3.25.0",
75
+ "yaml": "^2.5.0",
75
76
  "yargs": "^17.7.2"
76
77
  },
77
78
  "devDependencies": {
78
79
  "@types/fs-extra": "^11.0.4",
79
- "@types/node": "^20.11.19",
80
+ "@types/node": "^22.1.0",
80
81
  "@types/yargs": "^17.0.32",
81
- "eslint": "^8.56.0",
82
+ "eslint": "^9.8.0",
82
83
  "npm-run-all": "^4.1.5",
83
- "prettier": "^3.2.5",
84
+ "prettier": "^3.3.3",
84
85
  "shx": "^0.3.4",
85
- "tsup": "^8.0.2",
86
- "typescript": "^5.3.3",
87
- "typescript-eslint": "^7.0.1",
88
- "vitest": "^1.2.2"
86
+ "tsup": "^8.2.4",
87
+ "typescript": "^5.5.4",
88
+ "typescript-eslint": "^8.0.0",
89
+ "vitest": "^2.0.5"
89
90
  },
90
91
  "prettier": {
91
92
  "useTabs": true,