Skip to content

Commit

Permalink
Release v0.7.3 (#20)
Browse files Browse the repository at this point in the history
- remove deprecated eslint rules
- chore: doc/pkg updates (#18)
- ci: use shared test config (#16)
- chore(deps): bump command-line-usage from 6.1.3 to 7.0.1 (#15)
  • Loading branch information
msimerson authored Nov 5, 2024
1 parent 2c2ef1b commit bece459
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 53 deletions.
26 changes: 0 additions & 26 deletions .eslintrc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,33 +14,7 @@ extends:
- plugin:promise/recommended
- plugin:node/recommended


rules:
quotes: [ error, single, { avoidEscape: true, allowTemplateLiterals: true } ]
semi: [ error, never ]
semi-style: [ error, last ]
no-unused-vars: [ error, { args: none } ]
array-bracket-spacing: [ warn, always, { arraysInArrays: false, objectsInArrays: false } ]
no-trailing-spaces: [ error ]
space-before-function-paren: [ error, always ]
object-curly-spacing: [ error, always ]
indent: [ error, 2, { SwitchCase: 1 } ]
key-spacing:
- warn
- singleLine:
beforeColon: false
afterColon: true
multiLine:
beforeColon: false
afterColon: true
align: colon
mode: minimum
comma-dangle:
- warn
- arrays: always-multiline
objects: always-multiline
functions: only-multiline
arrow-parens: [ error, as-needed ]
brace-style: [ error, stroustrup ]
dot-notation: error
prefer-const: warn
3 changes: 3 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# These are supported funding model platforms

github: msimerson
16 changes: 0 additions & 16 deletions .npmignore

This file was deleted.

2 changes: 1 addition & 1 deletion .release
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
# Changelog

The format is based on [Keep a Changelog](https://keepachangelog.com/).

# Change Log

### Unreleased

### [0.7.3] - 2024-11-04

- chore: doc/pkg updates (#18)
- chore(deps): bump command-line-usage from 6.1.3 to 7.0.1 (#15)
- ci: use shared test config (#16)


### [0.7.2] - 2022-05-29

Expand Down Expand Up @@ -78,3 +88,12 @@

[0.7.1]: https://github.com/NicTool/dns-nameserver/releases/tag/0.7.1
[0.7.2]: https://github.com/NicTool/dns-nameserver/releases/tag/0.7.2
[0.7.3]: https://github.com/NicTool/dns-nameserver/releases/tag/v0.7.3
[0.1.0]: https://github.com/NicTool/dns-nameserver/releases/tag/v0.1.0
[0.1.1]: https://github.com/NicTool/dns-nameserver/releases/tag/v0.1.1
[0.1.2]: https://github.com/NicTool/dns-nameserver/releases/tag/v0.1.2
[0.2.0]: https://github.com/NicTool/dns-nameserver/releases/tag/v0.2.0
[0.3.0]: https://github.com/NicTool/dns-nameserver/releases/tag/v0.3.0
[0.4.0]: https://github.com/NicTool/dns-nameserver/releases/tag/v0.4.0
[0.5.0]: https://github.com/NicTool/dns-nameserver/releases/tag/v0.5.0
[0.6.0]: https://github.com/NicTool/dns-nameserver/releases/tag/v0.6.0
26 changes: 16 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
{
"name": "@nictool/dns-nameserver",
"version": "0.7.2",
"version": "0.7.3",
"description": "DNS Nameserver",
"main": "index.js",
"bin": {},
"type": "module",
"engines": {
"node": ">=14.0"
},
"files": [
"bin",
"lib",
"CHANGELOG.md"
],
"scripts": {
"lint": "npx eslint index.js test",
"lintfix": "npx eslint --fix index.js test",
"lint:fix": "npx eslint --fix index.js test",
"test": "npx mocha",
"versions": "npx dependency-version-checker check"
"versions": "npx dependency-version-checker check",
"versions:fix": "npx dependency-version-checker update"
},
"repository": {
"type": "git",
Expand All @@ -31,15 +37,15 @@
},
"homepage": "https://github.com/NicTool/dns-nameserver#readme",
"devDependencies": {
"eslint": "^8.11.0",
"eslint": "^8.57.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^10.0.0"
"eslint-plugin-promise": "^7.1.0",
"mocha": "^10.8.2"
},
"dependencies": {
"chalk": "^5.0.1",
"command-line-args": "^5.2.1",
"command-line-usage": "^7.0.1",
"@nictool/dns-zone": "^1.0.0"
"chalk": "^5.3.0",
"command-line-args": "^6.0.1",
"command-line-usage": "^7.0.3",
"@nictool/dns-zone": "^1.1.4"
}
}

0 comments on commit bece459

Please sign in to comment.