Skip to content

Commit b7a4390

Browse files
authoredOct 24, 2023
Add jq bin field to package.json (#615)
1 parent 82be730 commit b7a4390

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed
 

‎.github/issue_template.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,9 @@
1515

1616
If this is a feature request, explain why it should be added. Specific use-cases are best.
1717

18-
For bug reports, please provide as much *relevant* info as possible and create a minimum reproduction with this [codesandbox](https://codesandbox.io/s/node-jq-issue-playground-4kqhr).
18+
For bug reports, please provide as much *relevant* info as possible and create a minimum reproduction by using this [playground](https://replit.com/@DavidSancho/try-node-jq?v=1#index.js) template.
1919

20-
### Test Source
21-
22-
```js
23-
// Avoid posting many lines of source code that aren't related with the issue.
24-
```
20+
If a playground is provided there's a much higher chance of your issue being resolved quickly.
2521

2622
### Error Message & Stack Trace
2723

‎package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
{
22
"name": "node-jq",
3-
"version": "4.1.0-rc.0",
3+
"version": "0.0.0-automated-versioning",
44
"description": "Run jq in node",
55
"main": "lib/jq.js",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/sanack/node-jq"
99
},
10+
"bin": {
11+
"node-jq": "bin/jq",
12+
"jq": "bin/jq"
13+
},
1014
"scripts": {
1115
"pretest": "npm run install-binary",
1216
"install-binary": "node scripts/install-binary.js",

0 commit comments

Comments
 (0)