@storm-software/git-tools 1.31.0 → 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 CHANGED
@@ -1,3 +1,17 @@
1
+ ## 1.31.2 (2024-01-26)
2
+
3
+
4
+ ### 🩹 Fixes
5
+
6
+ - **git-tools:** Added code to set providence on publish process ([06439ff3](https://github.com/storm-software/storm-ops/commit/06439ff3))
7
+
8
+
9
+ ### ❤️ Thank You
10
+
11
+ - Patrick Sullivan
12
+
13
+
14
+
1
15
 
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/git-tools",
3
- "version": "1.31.0",
3
+ "version": "1.31.2",
4
4
  "private": false,
5
5
  "description": "⚡ A package containing various git tools used in Storm workspaces.",
6
6
  "keywords": [
@@ -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 ? "canary" : undefined,
54
+ preid: config.preMajor ? "next" : undefined,
54
55
  stageChanges: true,
55
56
  gitCommit: false
56
57
  });