@storm-software/git-tools 1.2.13 → 1.2.14

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,10 @@
1
+ ## [1.2.13](https://github.com/storm-software/storm-ops/compare/git-tools-v1.2.12...git-tools-v1.2.13) (2023-11-10)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **workspace-tools:** Resolved issue with node-library generator ([c0f2d26](https://github.com/storm-software/storm-ops/commit/c0f2d26849f0f16ca4e6da30c953152be3113906))
7
+
1
8
  ## [1.2.12](https://github.com/storm-software/storm-ops/compare/git-tools-v1.2.11...git-tools-v1.2.12) (2023-11-10)
2
9
 
3
10
 
@@ -1,7 +1,7 @@
1
1
  #!/bin/sh
2
2
 
3
3
  changedFiles="$(git diff-tree -r --name-only --no-commit-id $1 $2)"
4
- node @storm-software/git-tools/scripts/package-version-warning.js $changedFiles
4
+ node @storm-software/git-tools/scripts/package-version-warning.cjs $changedFiles
5
5
 
6
6
  command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis 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.\n"; exit 2; }
7
7
  git lfs post-checkout "$@"
package/hooks/post-merge CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/bin/sh
2
2
 
3
3
  changedFiles="$(git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD)"
4
- node @storm-software/git-tools/scripts/package-version-warning.js $changedFiles
4
+ node @storm-software/git-tools/scripts/package-version-warning.cjs $changedFiles
5
5
 
6
6
  command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis 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.\n"; exit 2; }
7
7
  git lfs post-merge "$@"
package/hooks/pre-push CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/bin/sh
2
2
 
3
- node @storm-software/git-tools/scripts/check-lock-file.js
3
+ node @storm-software/git-tools/scripts/check-lock-file.cjs
4
4
 
5
5
  command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis 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.\n"; exit 2; }
6
6
  git lfs pre-push "$@"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/git-tools",
3
- "version": "1.2.13",
3
+ "version": "1.2.14",
4
4
  "private": false,
5
5
  "description": "⚡ A package containing various git tools used in Storm workspaces.",
6
6
  "keywords": [
@@ -1,4 +1,4 @@
1
- import fs from "fs";
1
+ const fs = require("fs");
2
2
 
3
3
  console.log("🔒🔒🔒 Validating lock files 🔒🔒🔒\n");
4
4
 
File without changes
File without changes