Skip to content

Commit

Permalink
Fix: Rename binary script and add extension *.js (fixes #2)
Browse files Browse the repository at this point in the history
  • Loading branch information
uniqueck committed Jul 30, 2024
1 parent d3b9d3c commit 67c6b04
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
{
"type": "New",
"release": "minor"
},
{
"type": "Fix",
"release": "patch"
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# htmlSanityCheck.js

[![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)
[![npm version](http://img.shields.io/npm/v/htmlSanityCheck.js.svg)](https://www.npmjs.com/package/htmlSanityCheck.js)
[![npm version](http://img.shields.io/npm/v/htmlsanitycheck.svg)](https://www.npmjs.com/package/htmlsanitycheck)
File renamed without changes.
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"test": "npm run test:node && npm run test:features && npm run test:smoke",
"test:node": "mocha test/**/*.spec.js",
"test:features": "cucumber-js",
"test:smoke": "node bin/htmlSanityCheck --sourceDir test",
"test:smoke": "node bin/htmlSanityCheck.js --sourceDir test",
"lint": "eslint \"./lib/**/*.js\" \"./test/**/*.js\"",
"lint:fix": "eslint \"./lib/**/*.js\" \"./test/**/*.js\" --fix",
"lfet:UI": "exec java -classpath \"$INIT_CWD/.lfet/tool/*\" lohrfink.lfet.Application &",
Expand All @@ -62,7 +62,6 @@
],
"license": "MIT",
"bin": {
"htmlsanitycheck": "bin/htmlsanitycheck",
"htmlsanitycheck.js": "bin/htmlsanitycheck"
"htmlsanitycheck": "bin/htmlSanityCheck.js"
}
}

0 comments on commit 67c6b04

Please sign in to comment.