Skip to content

Commit

Permalink
chore: use package.json[files], delete .npmignore
Browse files Browse the repository at this point in the history
  • Loading branch information
msimerson committed Nov 5, 2024
1 parent 67c9101 commit 428d063
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 24 deletions.
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- id: get
uses: msimerson/node-lts-versions@v1.3.1
uses: msimerson/node-lts-versions@v1
outputs:
lts: ${{ steps.get.outputs.lts }}
active: ${{ steps.get.outputs.active }}
14 changes: 0 additions & 14 deletions .npmignore

This file was deleted.

9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
### Unreleased


### [1.1.5] - 2024-11-04


- chore: use package.json[files], delete .npmignore
- chore: bump dep versions
-


### [1.1.4] - 2022-06-03

- ci: auto-populate node LTS versions for CI tests
Expand Down Expand Up @@ -179,3 +187,4 @@
[1.1.2]: https://github.com/NicTool/dns-zone/releases/tag/1.1.2
[1.1.3]: https://github.com/NicTool/dns-zone/releases/tag/1.1.3
[1.1.4]: https://github.com/NicTool/dns-zone/releases/tag/1.1.4
[1.1.5]: https://github.com/NicTool/dns-zone/releases/tag/1.1.5
6 changes: 3 additions & 3 deletions bin/dns-zone.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!node

import fs from 'fs/promises'
import path from 'path'
import os from 'os'
import fs from 'node:fs/promises'
import path from 'node:path'
import os from 'node:os'

import chalk from 'chalk'
import cmdLineArgs from 'command-line-args'
Expand Down
17 changes: 11 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
{
"name": "@nictool/dns-zone",
"version": "1.1.4",
"version": "1.1.5",
"description": "DNS Zone",
"main": "index.js",
"type": "module",
"bin": {
"dns-zone": "./bin/dns-zone.js"
},
"files": [
"bin",
"lib",
"CHANGELOG.md"
],
"scripts": {
"lint": "npx eslint *.js lib test",
"lintfix": "npx eslint --fix *.js lib test",
Expand Down Expand Up @@ -34,12 +39,12 @@
},
"homepage": "https://github.com/NicTool/dns-zone#readme",
"devDependencies": {
"eslint": ">=8",
"mocha": ">=9"
"eslint": "8.57.1",
"mocha": "10.8.2"
},
"dependencies": {
"command-line-args": "^5.2.1",
"command-line-usage": "^6.1.1",
"@nictool/dns-resource-record": "^1.1.1"
"command-line-args": "^6.0.1",
"command-line-usage": "^7.0.3",
"@nictool/dns-resource-record": "^1.2.1"
}
}

0 comments on commit 428d063

Please sign in to comment.