Skip to content

Commit

Permalink
fix: Make executable with npx
Browse files Browse the repository at this point in the history
  • Loading branch information
nonara committed Aug 16, 2021
1 parent 2ae7578 commit c7c6798
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"name": "extract-changelog-release",
"version": "1.0.1",
"description": "Extract release notes from latest entry in standard-version changelog",
"main": "dist/index.js",
"main": "./dist/index.js",
"bin": "./dist/index.js",
"scripts": {
"compile": "tsc",
"build": "yarn clean && yarn compile",
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env node
import path from 'path';
import * as fs from 'fs';
import minimist from 'minimist';
Expand Down

0 comments on commit c7c6798

Please sign in to comment.