Skip to content

Commit ced1a5d

Browse files
authored
Merge pull request #213 from oozcitak/chore/dependencies
Chore/dependencies
2 parents 7152414 + d11daf7 commit ced1a5d

File tree

4 files changed

+82
-12
lines changed

4 files changed

+82
-12
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,15 @@ jobs:
2020
node: [ '20', '22', '24' ]
2121

2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v5
2424
- name: Setup Node.js ${{ matrix.node }}
25-
uses: actions/setup-node@v2
25+
uses: actions/setup-node@v4
2626
with:
2727
node-version: ${{ matrix.node }}
28-
- run: npm install
28+
- run: npm ci
2929
- run: npm test
30+
- run: npm run cover
3031
env:
3132
CI: true
3233
- name: Upload coverage to Codecov
33-
uses: codecov/codecov-action@v2
34+
uses: codecov/codecov-action@v5

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project are documented in this file. This project adheres to [Semantic Versioning](http://semver.org/#semantic-versioning-200).
44

5+
## [4.0.1] - 2025-10-26
6+
7+
### Bug Fixes
8+
9+
- Updated dependencies.
10+
511
## [4.0.0] - 2025-10-08
612

713
### Bug Fixes
@@ -317,4 +323,5 @@ All notable changes to this project are documented in this file. This project ad
317323
[3.0.2]: https://github.com/oozcitak/xmlbuilder2/compare/v3.0.1...v3.0.2
318324
[3.1.0]: https://github.com/oozcitak/xmlbuilder2/compare/v3.0.2...v3.1.0
319325
[3.1.1]: https://github.com/oozcitak/xmlbuilder2/compare/v3.1.0...v3.1.1
320-
326+
[4.0.0]: https://github.com/oozcitak/xmlbuilder2/compare/v3.1.1...v4.0.0
327+
[4.0.1]: https://github.com/oozcitak/xmlbuilder2/compare/v4.0.0...v4.0.1

package-lock.json

Lines changed: 61 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55
"xml",
66
"xmlbuilder"
77
],
8-
"homepage": "http://github.com/oozcitak/xmlbuilder2",
8+
"homepage": "https://github.com/oozcitak/xmlbuilder2",
99
"description": "An XML builder for node.js",
1010
"author": "Ozgur Ozcitak <[email protected]>",
1111
"contributors": [],
1212
"license": "MIT",
1313
"repository": {
14-
"type": "git",
15-
"url": "git://github.com/oozcitak/xmlbuilder2.git"
14+
"type": "https",
15+
"url": "https://github.com/oozcitak/xmlbuilder2.git"
1616
},
1717
"bugs": {
18-
"url": "http://github.com/oozcitak/xmlbuilder2/issues"
18+
"url": "https://github.com/oozcitak/xmlbuilder2/issues"
1919
},
2020
"main": "./lib/index",
2121
"type": "commonjs",
@@ -44,6 +44,7 @@
4444
"es6-proxy-polyfill": "^2.1.1",
4545
"glob": "^11.0.3",
4646
"harmony-reflect": "^1.6.2",
47+
"publint": "^0.3.15",
4748
"ts-loader": "^9.5.4",
4849
"ts-node": "^10.9.2",
4950
"typescript": "^5.9.3",
@@ -54,9 +55,9 @@
5455
"tsx": "^4.20.6"
5556
},
5657
"scripts": {
57-
"test": "tsc && tsx --test test/**/*test.ts",
58-
"cover": "tsc && tsx --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=./coverage/lcov.info test/**/*test.ts",
59-
"publish-public": "tsc && npm run cover && npm publish --access public",
58+
"test": "tsc && npx publint && tsx --test test/**/*test.ts",
59+
"cover": "tsc && mkdir -p coverage && tsx --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=./coverage/lcov.info test/**/*test.ts",
60+
"publish-public": "tsc && npx publint && npm run cover && npm publish --access public",
6061
"servedocs": "(cd docs && bundle exec jekyll serve)"
6162
}
6263
}

0 commit comments

Comments
 (0)