@storm-software/git-tools 1.31.1 → 1.31.2
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 +12 -0
- package/package.json +1 -1
- package/src/lefthook/lefthook.yml +1 -1
- package/src/release/nx-release.ts +2 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -47,7 +47,7 @@ pre-commit:
|
|
|
47
47
|
glob: "**/*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}"
|
|
48
48
|
run: npx biome check --apply --no-errors-on-unmatched --files-ignore-unknown=true {staged_files} && git update-index"
|
|
49
49
|
readme-gen:
|
|
50
|
-
glob: "**/{README.md,package.json}"
|
|
50
|
+
glob: "**/{README.md,package.json,executors.json,generators.json}"
|
|
51
51
|
run: "npx storm-git readme-gen --templates=\"./docs/readme-templates\" && git update-index"
|
|
52
52
|
format:
|
|
53
53
|
glob: "**/*.*"
|
|
@@ -31,6 +31,7 @@ export const runRelease = async (
|
|
|
31
31
|
process.env.GIT_AUTHOR_EMAIL = `${authorName}@users.noreply.github.com`;
|
|
32
32
|
process.env.GIT_COMMITTER_NAME = committerName;
|
|
33
33
|
process.env.GIT_COMMITTER_EMAIL = `${committerName}@users.noreply.github.com`;
|
|
34
|
+
process.env.NPM_CONFIG_PROVENANCE = "true";
|
|
34
35
|
|
|
35
36
|
const projectGraph = await createProjectGraphAsync({ exitOnError: true });
|
|
36
37
|
const nxJson = readNxJson();
|
|
@@ -50,7 +51,7 @@ export const runRelease = async (
|
|
|
50
51
|
const { workspaceVersion, projectsVersionData } = await releaseVersion({
|
|
51
52
|
dryRun: !!options.dryRun,
|
|
52
53
|
verbose: !config.ci,
|
|
53
|
-
preid: config.preMajor ? "
|
|
54
|
+
preid: config.preMajor ? "next" : undefined,
|
|
54
55
|
stageChanges: true,
|
|
55
56
|
gitCommit: false
|
|
56
57
|
});
|