-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: k-matsuzawa <[email protected]>
- Loading branch information
1 parent
0147ffc
commit e081458
Showing
57 changed files
with
5,641 additions
and
358 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
name: Story | ||
about: Create a story | ||
|
||
--- | ||
|
||
# Overview | ||
|
||
<!-- TODO: ストーリーの概要を記述 --> | ||
|
||
- | ||
|
||
# Completion condition | ||
|
||
<!-- TODO: ストーリーが完了したかどうかの判定を記述 --> | ||
|
||
- |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
name: Task | ||
about: Create a task | ||
|
||
--- | ||
|
||
# Overview | ||
|
||
<!-- TODO: タスクの概要を記述 --> | ||
|
||
- | ||
|
||
# Sub tasks | ||
|
||
<!-- TODO: タスクを実現するために、やるべきタスクと予定時間を記述 --> | ||
<!-- 入力例: - [ ] 〇〇クラスに、△△の実装を追加する(1.5h -> h) --> | ||
- [ ] | ||
|
||
# Completion condition | ||
|
||
<!-- TODO: タスクが完了したかどうかの判定を記述 --> | ||
|
||
- |
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 |
---|---|---|
|
@@ -35,19 +35,13 @@ jobs: | |
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
- uses: actions/setup-node@v2.1.0 | ||
continue-on-error: true | ||
timeout-minutes: 1 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- name: setup-node retry | ||
uses: actions/setup-node@v1 | ||
continue-on-error: true | ||
timeout-minutes: 1 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- name: setup-node third-try | ||
uses: actions/setup-node@v1 | ||
uses: actions/[email protected] | ||
timeout-minutes: 1 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
|
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 |
---|---|---|
|
@@ -33,19 +33,13 @@ jobs: | |
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
- uses: actions/setup-node@v2.1.0 | ||
continue-on-error: true | ||
timeout-minutes: 1 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- name: setup-node retry | ||
uses: actions/setup-node@v1 | ||
continue-on-error: true | ||
timeout-minutes: 1 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- name: setup-node third-try | ||
uses: actions/setup-node@v1 | ||
uses: actions/[email protected] | ||
timeout-minutes: 1 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
|
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 |
---|---|---|
|
@@ -31,19 +31,13 @@ jobs: | |
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
- uses: actions/setup-node@v2.1.0 | ||
continue-on-error: true | ||
timeout-minutes: 1 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- name: setup-node retry | ||
uses: actions/setup-node@v1 | ||
continue-on-error: true | ||
timeout-minutes: 1 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- name: setup-node third-try | ||
uses: actions/setup-node@v1 | ||
uses: actions/[email protected] | ||
timeout-minutes: 1 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
|
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 |
---|---|---|
|
@@ -135,7 +135,6 @@ local.properties | |
!.vscode/extensions.json | ||
|
||
|
||
/wally.js | ||
output | ||
|
||
m4 | ||
|
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,4 +1,4 @@ | ||
const cfdjs = require('./wrap_js/cfdjs_module.js'); | ||
const cfdjs = require('./index'); | ||
|
||
/** | ||
* Parse bip32 path. | ||
|
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
Oops, something went wrong.