We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ae7578 commit c7c6798Copy full SHA for c7c6798
package.json
@@ -2,7 +2,8 @@
2
"name": "extract-changelog-release",
3
"version": "1.0.1",
4
"description": "Extract release notes from latest entry in standard-version changelog",
5
- "main": "dist/index.js",
+ "main": "./dist/index.js",
6
+ "bin": "./dist/index.js",
7
"scripts": {
8
"compile": "tsc",
9
"build": "yarn clean && yarn compile",
src/index.ts
@@ -1,3 +1,4 @@
1
+#!/usr/bin/env node
import path from 'path';
import * as fs from 'fs';
import minimist from 'minimist';
0 commit comments