Skip to content

Commit ff4a5de

Browse files
Merge branch 'release/v1.0.28'
2 parents 4137cf1 + aa4f0a7 commit ff4a5de

File tree

8 files changed

+16
-14
lines changed

8 files changed

+16
-14
lines changed

.eslintignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.eslintrc.cjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
// https://github.com/andreashuber69/verify-coldcard-dice-seed/blob/develop/README.md#----verify-coldcard-dice-seed
2+
// eslint-disable-next-line import/unambiguous, import/no-commonjs
23
module.exports = {
34
env: {
45
node: true,
56
},
67
extends: ["@andreashuber69"],
8+
ignorePatterns: ["/coverage/", "/dist/", "/github_pages/"],
79
};

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,9 @@ COLDCARD copy correctly derives the seed but then generates addresses from a dif
130130
``` shell_session cSpell:disable
131131
$ npx verify-coldcard-dice-seed@latest
132132
Need to install the following packages:
133-
verify-coldcard-dice-seed@1.0.27
133+
verify-coldcard-dice-seed@1.0.28
134134
Ok to proceed? (y) y
135-
*** Verify COLDCARD Dice Seed v1.0.27 ***
135+
*** Verify COLDCARD Dice Seed v1.0.28 ***
136136
(tested with COLDCARD Mk4 firmware v5.2.2)
137137
138138
This application guides you through verifying that your COLDCARD

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<section>
1919
<hgroup>
2020
<h1>Verify COLDCARD Dice Seed</h1>
21-
<p><span>v1.0.27</span></p>
21+
<p><span>v1.0.28</span></p>
2222
</hgroup>
2323
<p>The COLDCARD manufacturer
2424
<a href="https://coldcardwallet.com/docs/verifying-dice-roll-math" target="_blank">provides instructions</a>

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "verify-coldcard-dice-seed",
3-
"version": "1.0.27",
3+
"version": "1.0.28",
44
"description": "Verify whether your COLDCARD correctly generates seeds and addresses from dice rolls.",
55
"keywords": [
66
"bitcoin",
@@ -38,7 +38,7 @@
3838
"scripts": {
3939
"start": "npm run build && node .",
4040
"prelint": "cspell '**' && markdownlint '**/*.md'",
41-
"lint": "eslint --report-unused-disable-directives '**/*.ts'",
41+
"lint": "eslint --ext .cjs,.ts --report-unused-disable-directives .",
4242
"prebuild": "npm run lint",
4343
"build": "tsc -p ./src/tsconfig.json",
4444
"postbuild": "vite build",

src/tsconfig.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"extends": "../tsconfig.json",
33
"compilerOptions": {
4-
"lib": ["ESNext", "DOM"],
54
"importHelpers": true,
5+
"lib": ["ESNext", "DOM"],
6+
"noEmit": false,
67
"outDir": "../dist",
7-
"sourceMap": true,
8-
"noEmit": false
8+
"sourceMap": true
99
},
1010
"include": [
11-
"./*.ts"
11+
"./**/*.ts"
1212
]
1313
}

tsconfig.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@
55
],
66
"compilerOptions": {
77
"noEmit": true,
8-
"verbatimModuleSyntax": true,
9-
"resolveJsonModule": true
8+
"resolveJsonModule": true,
9+
"verbatimModuleSyntax": true
1010
},
1111
"include": [
12+
".eslintrc.cjs",
1213
"./*.ts"
1314
]
1415
}

0 commit comments

Comments
 (0)