Skip to content

Commit

Permalink
add ./test to .npmignore
Browse files Browse the repository at this point in the history
  • Loading branch information
msimerson committed Apr 3, 2024
1 parent 222e6df commit e654a07
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,4 @@ codecov.yml

http/bower_components
http/node_modules
test
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
- dep(punycode): specify as punycode.js
- which always avoid name conflict with stale node.js built-in
- doc(README): update ci badge URLs (#82)
- dep(mocha & eslint): remove from devDeps (install with npx)
- pkg: add ./test to .npmignore


### [1.2.0] - 2023-12-12
Expand Down
13 changes: 6 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
"test": "test"
},
"scripts": {
"test": "npx mocha",
"lint": "npx eslint *.js lib test",
"lintfix": "npx eslint --fix *.js lib test"
"test": "npx mocha@^10",
"lint": "npx eslint@^8 *.js lib test",
"lintfix": "npx eslint@^8 --fix *.js lib test",
"versions": "npx dependency-version-checker check"
},
"repository": {
"type": "git",
Expand All @@ -27,11 +28,9 @@
},
"homepage": "https://github.com/haraka/haraka-tld#readme",
"dependencies": {
"punycode": "^2.3.1"
"punycode.js": "^2.3.1"
},
"devDependencies": {
"eslint": "^8.55.0",
"eslint-plugin-haraka": "*",
"mocha": "^10.2.0"
"eslint-plugin-haraka": "*"
}
}

0 comments on commit e654a07

Please sign in to comment.