Skip to content

Commit

Permalink
chore: 3.0.0-next.6 [skip ci]
Browse files Browse the repository at this point in the history
# [3.0.0-next.6](v3.0.0-next.5...v3.0.0-next.6) (2023-11-25)

### Bug Fixes

* `exactOptionalPropertyTypes` TS option compatibility ([#300](#300)) ([31b129a](31b129a))
  • Loading branch information
semantic-release-bot committed Nov 25, 2023
1 parent 31b129a commit ff94916
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [3.0.0-next.6](https://github.com/andipaetzold/mdb-reader/compare/v3.0.0-next.5...v3.0.0-next.6) (2023-11-25)


### Bug Fixes

* `exactOptionalPropertyTypes` TS option compatibility ([#300](https://github.com/andipaetzold/mdb-reader/issues/300)) ([31b129a](https://github.com/andipaetzold/mdb-reader/commit/31b129ad3f8e9a978d7b311573082e74c78ac3d9))

# [3.0.0-next.5](https://github.com/andipaetzold/mdb-reader/compare/v3.0.0-next.4...v3.0.0-next.5) (2023-11-24)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 1 addition & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mdb-reader",
"version": "3.0.0-next.5",
"version": "3.0.0-next.6",
"description": "JavaScript library to read data from Access databases",
"main": "lib/node/index.js",
"browser": "lib/browser/index.js",
Expand Down Expand Up @@ -73,15 +73,12 @@
"build:browser": "npm run prepare:browser && tsc -P tsconfig.browser.json",
"test": "npm run test:unit && npm run test:esm",
"test:unit": "npm run test:unit:node && npm run test:unit:browser",

"pretest:unit:node": "tsc --project tsconfig.json --showConfig > tsconfig.test.json",
"test:unit:node": "npm run prepare:node && TS_NODE_PROJECT='./tsconfig.test.json' mocha",
"posttest:unit:node": "rimraf tsconfig.test.json",

"pretest:unit:browser": "tsc --project tsconfig.browser.json --showConfig > tsconfig.test.json",
"test:unit:browser": "npm run prepare:browser && TS_NODE_PROJECT='./tsconfig.test.json' mocha",
"posttest:unit:browser": "rimraf tsconfig.test.json",

"test:esm": "npm run test:esm:node && npm run test:esm:browser",
"test:esm:node": "node --input-type=module -e \"import MDBReader from './lib/node/index.js';\"",
"test:esm:browser": "node --input-type=module -e \"import MDBReader from './lib/browser/index.js';\"",
Expand Down

0 comments on commit ff94916

Please sign in to comment.