Skip to content

Commit c7c6798

Browse files
committed
fix: Make executable with npx
1 parent 2ae7578 commit c7c6798

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"name": "extract-changelog-release",
33
"version": "1.0.1",
44
"description": "Extract release notes from latest entry in standard-version changelog",
5-
"main": "dist/index.js",
5+
"main": "./dist/index.js",
6+
"bin": "./dist/index.js",
67
"scripts": {
78
"compile": "tsc",
89
"build": "yarn clean && yarn compile",

src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env node
12
import path from 'path';
23
import * as fs from 'fs';
34
import minimist from 'minimist';

0 commit comments

Comments
 (0)