git-jira-shortcuts 1.0.16 → 1.0.17
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/README.md +6 -0
- package/bin/postinstall.js +11 -0
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -152,6 +152,12 @@ When `GJS_BRANCH_ALIASES` is set, the defaults are replaced entirely — so incl
|
|
|
152
152
|
npm update -g git-jira-shortcuts
|
|
153
153
|
```
|
|
154
154
|
|
|
155
|
+
After upgrading, open a new terminal session or reload your current shell:
|
|
156
|
+
|
|
157
|
+
```bash
|
|
158
|
+
source ~/.zshrc
|
|
159
|
+
```
|
|
160
|
+
|
|
155
161
|
## Reconfigure
|
|
156
162
|
|
|
157
163
|
```bash
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
console.log(`
|
|
4
|
+
git-jira-shortcuts installed/updated.
|
|
5
|
+
|
|
6
|
+
Remember to start a new terminal session before using gw, gs, ghelp, etc.
|
|
7
|
+
Existing terminals keep the old shell functions in memory.
|
|
8
|
+
|
|
9
|
+
Or reload your current shell with:
|
|
10
|
+
source ~/.zshrc
|
|
11
|
+
`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "git-jira-shortcuts",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.17",
|
|
4
4
|
"description": "Git + Jira workflow shortcuts for zsh — interactive branch switching, auto-prefixed commits, Jira integration, and more.",
|
|
5
5
|
"author": "chipallen2",
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,6 +11,9 @@
|
|
|
11
11
|
"bin": {
|
|
12
12
|
"git-jira-shortcuts": "./bin/cli.js"
|
|
13
13
|
},
|
|
14
|
+
"scripts": {
|
|
15
|
+
"postinstall": "node ./bin/postinstall.js"
|
|
16
|
+
},
|
|
14
17
|
"files": [
|
|
15
18
|
"bin/",
|
|
16
19
|
"shell/",
|