-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #126 from bitcoinjs/feat/asmjs
Add ASM.JS package creation to CI
- Loading branch information
Showing
16 changed files
with
208 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,4 @@ | |
/target | ||
/tests/browser | ||
/types | ||
/tiny-secp256k1-asmjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
import tiny_secp256k1_prev_js from "tiny-secp256k1/js.js"; | ||
import tiny_secp256k1_prev_native from "tiny-secp256k1/native.js"; | ||
import * as tiny_secp256k1 from "../lib/index.js"; | ||
import * as tiny_secp256k1_asmjs from "../tiny-secp256k1-asmjs/lib/index.js"; | ||
import * as cryptocoinjs_secp256k1 from "./cryptocoinjs_secp256k1.js"; | ||
import noble_secp256k1 from "./noble_secp256k1.js"; | ||
import noble_secp256k1 from "@bitcoinerlab/secp256k1"; | ||
import { | ||
fecdsa, | ||
fpoints, | ||
|
@@ -27,6 +28,10 @@ const modules = [ | |
name: "tiny-secp256k1 (WASM)", | ||
secp256k1: tiny_secp256k1, | ||
}, | ||
{ | ||
name: "tiny-secp256k1 (ASM.JS)", | ||
secp256k1: tiny_secp256k1_asmjs, | ||
}, | ||
{ | ||
name: "[email protected] (C++ addon, NAN/V8)", | ||
secp256k1: tiny_secp256k1_prev_native, | ||
|
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.