@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 +7 -0
- package/hooks/post-checkout +1 -1
- package/hooks/post-merge +1 -1
- package/hooks/pre-push +1 -1
- package/package.json +1 -1
- package/scripts/{check-lock-file.js → check-lock-file.cjs} +1 -1
- /package/scripts/{package-version-warning.js → package-version-warning.cjs} +0 -0
- /package/scripts/{pre-install.js → pre-install.cjs} +0 -0
- /package/scripts/{prepare.js → prepare.cjs} +0 -0
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
|
|
package/hooks/post-checkout
CHANGED
|
@@ -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.
|
|
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.
|
|
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.
|
|
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
|
File without changes
|
|
File without changes
|
|
File without changes
|