@storm-software/git-tools 2.122.6 → 2.122.8
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/README.md +1 -1
- package/bin/{chunk-CIJVSMK2.cjs → chunk-L64XVBGM.cjs} +2 -1
- package/bin/{chunk-54Q5U5WW.js → chunk-S5PS23TL.js} +2 -1
- package/bin/git.cjs +2 -2
- package/bin/git.js +1 -1
- package/bin/post-checkout.cjs +3 -3
- package/bin/post-checkout.js +1 -1
- package/bin/post-commit.cjs +3 -3
- package/bin/post-commit.js +1 -1
- package/bin/post-merge.cjs +3 -3
- package/bin/post-merge.js +1 -1
- package/bin/pre-install.cjs +2 -2
- package/bin/pre-install.js +1 -1
- package/bin/pre-push.cjs +4 -4
- package/bin/pre-push.js +1 -1
- package/bin/prepare.cjs +2 -2
- package/bin/prepare.js +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/bin/git.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var chunkL64XVBGM_cjs = require('./chunk-L64XVBGM.cjs');
|
|
5
5
|
var chunkU33ERNJG_cjs = require('./chunk-U33ERNJG.cjs');
|
|
6
6
|
var TOML = require('@ltd/j-toml');
|
|
7
7
|
var commander = require('commander');
|
|
@@ -1342,7 +1342,7 @@ async function runCommit(commitizenFile, dryRun = false) {
|
|
|
1342
1342
|
chunkU33ERNJG_cjs.writeDebug(`Message [dry-run]: ${message}`, workspaceConfig);
|
|
1343
1343
|
} else {
|
|
1344
1344
|
await fs__default.default.writeFile(commitMsgFile, message);
|
|
1345
|
-
|
|
1345
|
+
chunkL64XVBGM_cjs.run(workspaceConfig, command);
|
|
1346
1346
|
}
|
|
1347
1347
|
}
|
|
1348
1348
|
async function askQuestions(state) {
|
package/bin/git.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { run } from './chunk-
|
|
2
|
+
import { run } from './chunk-S5PS23TL.js';
|
|
3
3
|
import { getConfig, handleProcess, writeSuccess, exitWithSuccess, exitWithError, writeInfo, findWorkspaceRootSafe, writeFatal, getWorkspaceConfig, joinPaths, writeDebug, defu, isVerbose, writeWarning, writeTrace, STORM_DEFAULT_RELEASE_BANNER, __require } from './chunk-CPA5SGWF.js';
|
|
4
4
|
import TOML from '@ltd/j-toml';
|
|
5
5
|
import { Command, Option } from 'commander';
|
package/bin/post-checkout.cjs
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
var chunkSWXHQXUT_cjs = require('./chunk-SWXHQXUT.cjs');
|
|
5
|
-
var
|
|
5
|
+
var chunkL64XVBGM_cjs = require('./chunk-L64XVBGM.cjs');
|
|
6
6
|
var chunkU33ERNJG_cjs = require('./chunk-U33ERNJG.cjs');
|
|
7
7
|
|
|
8
8
|
// bin/post-checkout.ts
|
|
@@ -13,7 +13,7 @@ void (async () => {
|
|
|
13
13
|
chunkU33ERNJG_cjs.writeInfo("Running post-checkout hook...", config);
|
|
14
14
|
chunkSWXHQXUT_cjs.checkPackageVersion(process.argv?.slice(1));
|
|
15
15
|
try {
|
|
16
|
-
|
|
16
|
+
chunkL64XVBGM_cjs.run(config, "git-lfs version");
|
|
17
17
|
} catch (error) {
|
|
18
18
|
chunkU33ERNJG_cjs.writeError(
|
|
19
19
|
`This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-checkout.
|
|
@@ -22,7 +22,7 @@ Error: ${error?.message}`,
|
|
|
22
22
|
);
|
|
23
23
|
chunkU33ERNJG_cjs.exitWithError(config);
|
|
24
24
|
}
|
|
25
|
-
|
|
25
|
+
chunkL64XVBGM_cjs.run(config, "git lfs post-checkout");
|
|
26
26
|
chunkU33ERNJG_cjs.exitWithSuccess(config);
|
|
27
27
|
} catch (error) {
|
|
28
28
|
chunkU33ERNJG_cjs.writeFatal(
|
package/bin/post-checkout.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { checkPackageVersion } from './chunk-AMSZ7DVW.js';
|
|
3
|
-
import { run } from './chunk-
|
|
3
|
+
import { run } from './chunk-S5PS23TL.js';
|
|
4
4
|
import { getConfig, handleProcess, writeInfo, writeError, exitWithError, exitWithSuccess, writeFatal } from './chunk-CPA5SGWF.js';
|
|
5
5
|
|
|
6
6
|
// bin/post-checkout.ts
|
package/bin/post-commit.cjs
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
var chunkSWXHQXUT_cjs = require('./chunk-SWXHQXUT.cjs');
|
|
5
|
-
var
|
|
5
|
+
var chunkL64XVBGM_cjs = require('./chunk-L64XVBGM.cjs');
|
|
6
6
|
var chunkU33ERNJG_cjs = require('./chunk-U33ERNJG.cjs');
|
|
7
7
|
|
|
8
8
|
// bin/post-commit.ts
|
|
@@ -13,7 +13,7 @@ void (async () => {
|
|
|
13
13
|
chunkU33ERNJG_cjs.writeInfo("Running post-commit hook...", config);
|
|
14
14
|
chunkSWXHQXUT_cjs.checkPackageVersion(process.argv?.slice(1));
|
|
15
15
|
try {
|
|
16
|
-
|
|
16
|
+
chunkL64XVBGM_cjs.run(config, "git-lfs version");
|
|
17
17
|
} catch (error) {
|
|
18
18
|
chunkU33ERNJG_cjs.writeError(
|
|
19
19
|
`This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-commit.
|
|
@@ -22,7 +22,7 @@ Error: ${error?.message}`,
|
|
|
22
22
|
);
|
|
23
23
|
chunkU33ERNJG_cjs.exitWithError(config);
|
|
24
24
|
}
|
|
25
|
-
|
|
25
|
+
chunkL64XVBGM_cjs.run(config, "git lfs post-commit");
|
|
26
26
|
chunkU33ERNJG_cjs.exitWithSuccess(config);
|
|
27
27
|
} catch (error) {
|
|
28
28
|
chunkU33ERNJG_cjs.writeFatal(
|
package/bin/post-commit.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { checkPackageVersion } from './chunk-AMSZ7DVW.js';
|
|
3
|
-
import { run } from './chunk-
|
|
3
|
+
import { run } from './chunk-S5PS23TL.js';
|
|
4
4
|
import { getConfig, handleProcess, writeInfo, writeError, exitWithError, exitWithSuccess, writeFatal } from './chunk-CPA5SGWF.js';
|
|
5
5
|
|
|
6
6
|
// bin/post-commit.ts
|
package/bin/post-merge.cjs
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
var chunkSWXHQXUT_cjs = require('./chunk-SWXHQXUT.cjs');
|
|
5
|
-
var
|
|
5
|
+
var chunkL64XVBGM_cjs = require('./chunk-L64XVBGM.cjs');
|
|
6
6
|
var chunkU33ERNJG_cjs = require('./chunk-U33ERNJG.cjs');
|
|
7
7
|
|
|
8
8
|
// bin/post-merge.ts
|
|
@@ -13,7 +13,7 @@ void (async () => {
|
|
|
13
13
|
chunkU33ERNJG_cjs.writeInfo("Running post-merge hook...", config);
|
|
14
14
|
chunkSWXHQXUT_cjs.checkPackageVersion(process.argv?.slice(1));
|
|
15
15
|
try {
|
|
16
|
-
|
|
16
|
+
chunkL64XVBGM_cjs.run(config, "git-lfs version");
|
|
17
17
|
} catch (error) {
|
|
18
18
|
chunkU33ERNJG_cjs.writeError(
|
|
19
19
|
`This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-merge.
|
|
@@ -22,7 +22,7 @@ Error: ${error?.message}`,
|
|
|
22
22
|
);
|
|
23
23
|
chunkU33ERNJG_cjs.exitWithError(config);
|
|
24
24
|
}
|
|
25
|
-
|
|
25
|
+
chunkL64XVBGM_cjs.run(config, "git lfs post-merge");
|
|
26
26
|
chunkU33ERNJG_cjs.exitWithSuccess(config);
|
|
27
27
|
} catch (error) {
|
|
28
28
|
chunkU33ERNJG_cjs.writeFatal(
|
package/bin/post-merge.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { checkPackageVersion } from './chunk-AMSZ7DVW.js';
|
|
3
|
-
import { run } from './chunk-
|
|
3
|
+
import { run } from './chunk-S5PS23TL.js';
|
|
4
4
|
import { getConfig, handleProcess, writeInfo, writeError, exitWithError, exitWithSuccess, writeFatal } from './chunk-CPA5SGWF.js';
|
|
5
5
|
|
|
6
6
|
// bin/post-merge.ts
|
package/bin/pre-install.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var chunkL64XVBGM_cjs = require('./chunk-L64XVBGM.cjs');
|
|
5
5
|
var chunkU33ERNJG_cjs = require('./chunk-U33ERNJG.cjs');
|
|
6
6
|
|
|
7
7
|
// bin/pre-install.ts
|
|
@@ -14,7 +14,7 @@ void (async () => {
|
|
|
14
14
|
chunkU33ERNJG_cjs.writeInfo("Skipping pre-install for CI process...", config);
|
|
15
15
|
chunkU33ERNJG_cjs.exitWithSuccess(config);
|
|
16
16
|
}
|
|
17
|
-
|
|
17
|
+
chunkL64XVBGM_cjs.run(config, "npx -y only-allow pnpm");
|
|
18
18
|
chunkU33ERNJG_cjs.exitWithSuccess(config);
|
|
19
19
|
} catch (error) {
|
|
20
20
|
chunkU33ERNJG_cjs.writeFatal(
|
package/bin/pre-install.js
CHANGED
package/bin/pre-push.cjs
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
var chunkSWXHQXUT_cjs = require('./chunk-SWXHQXUT.cjs');
|
|
5
|
-
var
|
|
5
|
+
var chunkL64XVBGM_cjs = require('./chunk-L64XVBGM.cjs');
|
|
6
6
|
var chunkU33ERNJG_cjs = require('./chunk-U33ERNJG.cjs');
|
|
7
7
|
var fs = require('fs');
|
|
8
8
|
var promises = require('fs/promises');
|
|
@@ -61,9 +61,9 @@ void (async () => {
|
|
|
61
61
|
chunkU33ERNJG_cjs.exitWithError(config);
|
|
62
62
|
}
|
|
63
63
|
chunkU33ERNJG_cjs.writeSuccess("Lock file is valid \u2705", config);
|
|
64
|
-
|
|
64
|
+
chunkL64XVBGM_cjs.run(config, "git lfs pre-push origin");
|
|
65
65
|
try {
|
|
66
|
-
|
|
66
|
+
chunkL64XVBGM_cjs.run(config, "git-lfs version");
|
|
67
67
|
} catch (error) {
|
|
68
68
|
chunkU33ERNJG_cjs.writeError(
|
|
69
69
|
`This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/pre-push.
|
|
@@ -72,7 +72,7 @@ Error: ${error?.message}`,
|
|
|
72
72
|
);
|
|
73
73
|
chunkU33ERNJG_cjs.exitWithError(config);
|
|
74
74
|
}
|
|
75
|
-
|
|
75
|
+
chunkL64XVBGM_cjs.run(config, "git lfs pre-push origin");
|
|
76
76
|
chunkU33ERNJG_cjs.exitWithSuccess(config);
|
|
77
77
|
} catch (error) {
|
|
78
78
|
chunkU33ERNJG_cjs.writeFatal(
|
package/bin/pre-push.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { checkPackageVersion } from './chunk-AMSZ7DVW.js';
|
|
3
|
-
import { run } from './chunk-
|
|
3
|
+
import { run } from './chunk-S5PS23TL.js';
|
|
4
4
|
import { getConfig, handleProcess, writeInfo, writeError, exitWithError, writeSuccess, exitWithSuccess, writeFatal } from './chunk-CPA5SGWF.js';
|
|
5
5
|
import fs from 'node:fs';
|
|
6
6
|
import { readFile } from 'node:fs/promises';
|
package/bin/prepare.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var chunkL64XVBGM_cjs = require('./chunk-L64XVBGM.cjs');
|
|
5
5
|
var chunkU33ERNJG_cjs = require('./chunk-U33ERNJG.cjs');
|
|
6
6
|
|
|
7
7
|
// bin/prepare.ts
|
|
@@ -11,7 +11,7 @@ void (async () => {
|
|
|
11
11
|
chunkU33ERNJG_cjs.handleProcess(config);
|
|
12
12
|
chunkU33ERNJG_cjs.writeInfo("Running prepare hook...", config);
|
|
13
13
|
if (!process.env.CI && !process.env.STORM_CI) {
|
|
14
|
-
|
|
14
|
+
chunkL64XVBGM_cjs.run(config, "lefthook install");
|
|
15
15
|
}
|
|
16
16
|
chunkU33ERNJG_cjs.exitWithSuccess(config);
|
|
17
17
|
} catch (error) {
|
package/bin/prepare.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/git-tools",
|
|
3
|
-
"version": "2.122.
|
|
3
|
+
"version": "2.122.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Tools for managing Git repositories within a Nx workspace.",
|
|
6
6
|
"repository": {
|
|
@@ -185,8 +185,8 @@
|
|
|
185
185
|
"@inquirer/prompts": "7.2.1",
|
|
186
186
|
"@nx/devkit": "^21.4.1",
|
|
187
187
|
"@nx/js": "^21.4.1",
|
|
188
|
-
"@storm-software/config": "^1.133.
|
|
189
|
-
"@storm-software/config-tools": "^1.187.
|
|
188
|
+
"@storm-software/config": "^1.133.1",
|
|
189
|
+
"@storm-software/config-tools": "^1.187.3",
|
|
190
190
|
"@textlint/ast-node-types": "14.4.2",
|
|
191
191
|
"@textlint/markdown-to-ast": "14.4.2",
|
|
192
192
|
"anchor-markdown-header": "0.7.0",
|
|
@@ -194,7 +194,7 @@
|
|
|
194
194
|
"axios": "1.8.2",
|
|
195
195
|
"chalk": "^4.1.2",
|
|
196
196
|
"chalk-template": "1.1.0",
|
|
197
|
-
"conventional-changelog-storm-software": "^0.2.
|
|
197
|
+
"conventional-changelog-storm-software": "^0.2.8",
|
|
198
198
|
"htmlparser2": "10.0.0",
|
|
199
199
|
"jsonc-parser": "3.2.1",
|
|
200
200
|
"nx": "^21.4.1",
|
|
@@ -216,5 +216,5 @@
|
|
|
216
216
|
"tsup": "8.4.0"
|
|
217
217
|
},
|
|
218
218
|
"publishConfig": { "access": "public" },
|
|
219
|
-
"gitHead": "
|
|
219
|
+
"gitHead": "0c4750390a9eff41a44b6326d0d4beeda4ce92e5"
|
|
220
220
|
}
|