@storm-software/git-tools 1.2.9 → 1.2.11
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 +14 -0
- package/README.md +1 -1
- package/hooks/pre-commit +1 -1
- package/package.json +7 -2
- /package/lint-staged/{config.js → config.cjs} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.2.10](https://github.com/storm-software/storm-ops/compare/git-tools-v1.2.9...git-tools-v1.2.10) (2023-11-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **git-tools:** Resolved issues with husky hook scripts ([3c330bb](https://github.com/storm-software/storm-ops/commit/3c330bb92ed007d9d8c9b6f893826057b5150092))
|
|
7
|
+
|
|
8
|
+
## [1.2.9](https://github.com/storm-software/storm-ops/compare/git-tools-v1.2.8...git-tools-v1.2.9) (2023-11-10)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **git-tools:** Resolved issue with missing husky hooks ([505113d](https://github.com/storm-software/storm-ops/commit/505113d29a17b37c99aa00d93bb6a1b5f60412ed))
|
|
14
|
+
|
|
1
15
|
## [1.2.8](https://github.com/storm-software/storm-ops/compare/git-tools-v1.2.7...git-tools-v1.2.8) (2023-11-10)
|
|
2
16
|
|
|
3
17
|
|
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
15
15
|
|
|
16
16
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.org" target="_blank">stormsoftware.org</a> to stay up to date with this developer</h3><br />
|
|
17
17
|
|
|
18
|
-
[](https://prettier.io/)
|
|
19
19
|
[](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://docusaurus.io/) 
|
|
20
20
|
|
|
21
21
|
<h3 align="center" bold="true">⚠️ <b>Attention</b> ⚠️ - This repository, and the apps, libraries, and tools contained within, is still in it's initial development phase. As a result, bugs and issues are expected with it's usage. When the main development phase completes, a proper release will be performed, the packages will be availible through NPM (and other distributions), and this message will be removed. However, in the meantime, please feel free to report any issues you may come across.</h3><br />
|
package/hooks/pre-commit
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/git-tools",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.11",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "⚡ A package containing various git tools used in Storm workspaces.",
|
|
6
6
|
"keywords": [
|
|
@@ -30,7 +30,12 @@
|
|
|
30
30
|
},
|
|
31
31
|
"type": "module",
|
|
32
32
|
"bin": {
|
|
33
|
-
"storm-git": "./bin/cli.js"
|
|
33
|
+
"storm-git": "./bin/cli.js",
|
|
34
|
+
"storm-post-checkout": "./hooks/post-checkout",
|
|
35
|
+
"storm-post-commit": "./hooks/post-commit",
|
|
36
|
+
"storm-post-merge": "./hooks/post-merge",
|
|
37
|
+
"storm-pre-commit": "./hooks/pre-commit",
|
|
38
|
+
"storm-pre-push": "./hooks/pre-push"
|
|
34
39
|
},
|
|
35
40
|
"dependencies": {
|
|
36
41
|
"@commitlint/cli": "18.2.0",
|
|
File without changes
|