Skip to content

Commit 67c6b04

Browse files
committed
Fix: Rename binary script and add extension *.js (fixes #2)
1 parent d3b9d3c commit 67c6b04

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.releaserc.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
{
99
"type": "New",
1010
"release": "minor"
11+
},
12+
{
13+
"type": "Fix",
14+
"release": "patch"
1115
}
1216
]
1317
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# htmlSanityCheck.js
22

33
[![Build status](https://github.com/uniqueck/htmlSanityCheck.js/actions/workflows/ci.yaml/badge.svg?branch=main)](https://github.com/uniqueck/htmlSanityCheck.js/actions/workflows/ci.yaml)
4-
[![npm version](http://img.shields.io/npm/v/htmlSanityCheck.js.svg)](https://www.npmjs.com/package/htmlSanityCheck.js)
4+
[![npm version](http://img.shields.io/npm/v/htmlsanitycheck.svg)](https://www.npmjs.com/package/htmlsanitycheck)
File renamed without changes.

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"test": "npm run test:node && npm run test:features && npm run test:smoke",
4545
"test:node": "mocha test/**/*.spec.js",
4646
"test:features": "cucumber-js",
47-
"test:smoke": "node bin/htmlSanityCheck --sourceDir test",
47+
"test:smoke": "node bin/htmlSanityCheck.js --sourceDir test",
4848
"lint": "eslint \"./lib/**/*.js\" \"./test/**/*.js\"",
4949
"lint:fix": "eslint \"./lib/**/*.js\" \"./test/**/*.js\" --fix",
5050
"lfet:UI": "exec java -classpath \"$INIT_CWD/.lfet/tool/*\" lohrfink.lfet.Application &",
@@ -62,7 +62,6 @@
6262
],
6363
"license": "MIT",
6464
"bin": {
65-
"htmlsanitycheck": "bin/htmlsanitycheck",
66-
"htmlsanitycheck.js": "bin/htmlsanitycheck"
65+
"htmlsanitycheck": "bin/htmlSanityCheck.js"
6766
}
6867
}

0 commit comments

Comments
 (0)