gh-here 1.1.1 → 2.1.0
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/.channels_cache_v2.json +10882 -0
- package/.claude/settings.local.json +10 -17
- package/.users_cache.json +16187 -0
- package/SAMPLE.md +287 -0
- package/bin/gh-here.js +8 -9
- package/blog-post.md +100 -0
- package/lib/renderers.js +29 -8
- package/lib/server.js +2 -2
- package/package.json +1 -1
- package/public/styles.css +60 -10
|
@@ -1,26 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"permissions": {
|
|
3
3
|
"allow": [
|
|
4
|
-
"Bash(
|
|
5
|
-
"Bash(
|
|
6
|
-
"Bash(
|
|
7
|
-
"Bash(
|
|
8
|
-
"Bash(
|
|
9
|
-
"Bash(
|
|
10
|
-
"Bash(
|
|
11
|
-
"Bash(
|
|
4
|
+
"Bash(if [ -f scripts/lint ])",
|
|
5
|
+
"Bash(then scripts/lint)",
|
|
6
|
+
"Bash(elif [ -f script/lint ])",
|
|
7
|
+
"Bash(then script/lint)",
|
|
8
|
+
"Bash(elif [ -f package.json ])",
|
|
9
|
+
"Bash(then npm run lint)",
|
|
10
|
+
"Bash(else echo \"No linting script found\")",
|
|
11
|
+
"Bash(fi)",
|
|
12
|
+
"Bash(git checkout:*)",
|
|
12
13
|
"Bash(git add:*)",
|
|
13
14
|
"Bash(git commit:*)",
|
|
14
|
-
"Bash(git rm:*)",
|
|
15
|
-
"Bash(ssh:*)",
|
|
16
|
-
"Bash(git restore:*)",
|
|
17
|
-
"Bash(npx gh-here:*)",
|
|
18
|
-
"Bash(git checkout:*)",
|
|
19
15
|
"Bash(git push:*)",
|
|
20
|
-
"Bash(
|
|
21
|
-
"Bash(npm publish:*)",
|
|
22
|
-
"Bash(timeout:*)",
|
|
23
|
-
"Bash(npm version:*)"
|
|
16
|
+
"Bash(gh pr view:*)"
|
|
24
17
|
],
|
|
25
18
|
"deny": [],
|
|
26
19
|
"ask": []
|