forked from trufflesuite/ganache
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: rewrite into a TypeScript monorepo, partial (trufflesuite#657)
- Loading branch information
1 parent
956f19e
commit 6c3dd90
Showing
452 changed files
with
28,504 additions
and
14,679 deletions.
There are no files selected for viewing
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
docs/launch.json linguist-language=JSON5 | ||
.nycrc linguist-language=JSON | ||
.prettierrc linguist-language=JSON |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,52 @@ | ||
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | ||
|
||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
node: [10.7.0, 10.x, 11.x, 12.x, 13.x, 14.x] | ||
os: | ||
[ | ||
windows-2016, | ||
windows-2019, | ||
ubuntu-16.04, | ||
ubuntu-18.04, | ||
ubuntu-20.04, | ||
macos-11.0, | ||
] | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.node }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
# we need build tools for the `bigint-buffer` module | ||
- name: Add msbuild to PATH | ||
if: startsWith(matrix.os, 'windows-') | ||
uses: microsoft/[email protected] | ||
- name: install node tools | ||
if: startsWith(matrix.os, 'windows-') | ||
# [email protected] failed to install, so we use 4.0.0 | ||
run: npm install --global --production [email protected] | ||
- name: install node-gyp | ||
if: startsWith(matrix.os, 'windows-') | ||
run: npm install --global node-gyp@latest | ||
- name: Set node config to use python2.7 | ||
if: startsWith(matrix.os, 'windows-') | ||
run: npm config set python python2.7 | ||
- name: Set node config to set msvs_version to 2015 | ||
if: startsWith(matrix.os, 'windows-') | ||
run: npm config set msvs_version 2015 | ||
- run: npm ci | ||
- run: npm test | ||
env: | ||
FORCE_COLOR: 1 |
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,12 +1,9 @@ | ||
node_modules | ||
TODO | ||
*.log | ||
.eslintrc.js | ||
.tern-project | ||
.DS_Store | ||
.tern-port | ||
.vscode | ||
build | ||
npm-shrinkwrap.json.bak | ||
test/testdb | ||
.nyc_output/ | ||
.nyc_output | ||
lerna-debug.log | ||
npm-debug.log | ||
src/**/*/lib | ||
coverage | ||
dist/ |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
engine-strict=true | ||
save-exact=true | ||
sign-git-commit=true | ||
sign-git-tag=true | ||
loglevel=error | ||
fund=false |
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 @@ | ||
v10.7.0 |
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,3 @@ | ||
{ | ||
"extends": "@istanbuljs/nyc-config-typescript" | ||
} |
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,8 @@ | ||
.DS_Store | ||
.vscode | ||
.nyc_output | ||
lerna-debug.log | ||
npm-debug.log | ||
src/**/*/lib | ||
coverage | ||
npm-shrinkwrap.json |
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,4 @@ | ||
{ | ||
"arrowParens": "avoid", | ||
"trailingComma": "none" | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.