Skip to content

Commit

Permalink
Merge branch 'release/v1.0.28'
Browse files Browse the repository at this point in the history
  • Loading branch information
andreashuber69 committed Mar 7, 2024
2 parents 4137cf1 + aa4f0a7 commit ff4a5de
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 14 deletions.
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

2 changes: 2 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
// https://github.com/andreashuber69/verify-coldcard-dice-seed/blob/develop/README.md#----verify-coldcard-dice-seed
// eslint-disable-next-line import/unambiguous, import/no-commonjs
module.exports = {
env: {
node: true,
},
extends: ["@andreashuber69"],
ignorePatterns: ["/coverage/", "/dist/", "/github_pages/"],
};
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ COLDCARD copy correctly derives the seed but then generates addresses from a dif
``` shell_session cSpell:disable
$ npx verify-coldcard-dice-seed@latest
Need to install the following packages:
verify-coldcard-dice-seed@1.0.27
verify-coldcard-dice-seed@1.0.28
Ok to proceed? (y) y
*** Verify COLDCARD Dice Seed v1.0.27 ***
*** Verify COLDCARD Dice Seed v1.0.28 ***
(tested with COLDCARD Mk4 firmware v5.2.2)
This application guides you through verifying that your COLDCARD
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<section>
<hgroup>
<h1>Verify COLDCARD Dice Seed</h1>
<p><span>v1.0.27</span></p>
<p><span>v1.0.28</span></p>
</hgroup>
<p>The COLDCARD manufacturer
<a href="https://coldcardwallet.com/docs/verifying-dice-roll-math" target="_blank">provides instructions</a>
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.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "verify-coldcard-dice-seed",
"version": "1.0.27",
"version": "1.0.28",
"description": "Verify whether your COLDCARD correctly generates seeds and addresses from dice rolls.",
"keywords": [
"bitcoin",
Expand Down Expand Up @@ -38,7 +38,7 @@
"scripts": {
"start": "npm run build && node .",
"prelint": "cspell '**' && markdownlint '**/*.md'",
"lint": "eslint --report-unused-disable-directives '**/*.ts'",
"lint": "eslint --ext .cjs,.ts --report-unused-disable-directives .",
"prebuild": "npm run lint",
"build": "tsc -p ./src/tsconfig.json",
"postbuild": "vite build",
Expand Down
8 changes: 4 additions & 4 deletions src/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"lib": ["ESNext", "DOM"],
"importHelpers": true,
"lib": ["ESNext", "DOM"],
"noEmit": false,
"outDir": "../dist",
"sourceMap": true,
"noEmit": false
"sourceMap": true
},
"include": [
"./*.ts"
"./**/*.ts"
]
}
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@
],
"compilerOptions": {
"noEmit": true,
"verbatimModuleSyntax": true,
"resolveJsonModule": true
"resolveJsonModule": true,
"verbatimModuleSyntax": true
},
"include": [
".eslintrc.cjs",
"./*.ts"
]
}

0 comments on commit ff4a5de

Please sign in to comment.