Skip to content

Commit

Permalink
Release 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianCassayre committed Sep 19, 2021
1 parent aef1023 commit 43dbd4b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: 12
- run: npm ci
- run: npm ci && npm run patch
- run: npm run build
- run: npm test
- run: npm run docs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: 12
- run: npm ci
- run: npm ci && npm run patch
- run: npm run build
- run: npm test

Expand All @@ -25,7 +25,7 @@ jobs:
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm ci && npm run patch
- run: npm run build
- run: npm publish
env:
Expand Down
5 changes: 2 additions & 3 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "read-gedcom",
"description": "Gedcom file reader",
"version": "0.3.0",
"version": "0.3.1",
"main": "dist/cjs/index.js",
"module": "dist/es6/index.js",
"types": "dist/cjs/index.d.ts",
Expand All @@ -21,7 +21,7 @@
"docs": "typedoc --tsconfig tsconfig-build.json",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"lint": "npx eslint src/ tests/ --ext .ts --fix",
"postinstall": "patch-package"
"patch": "patch-package"
},
"repository": {
"type": "git",
Expand Down
4 changes: 4 additions & 0 deletions pages/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## `0.3.1`

* Fixed broken installation due to tests patching

## `0.3.0`

* Refactored the API: removal of namespaces (**major breaking changes**)
Expand Down

0 comments on commit 43dbd4b

Please sign in to comment.