-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: sam bacha <sam@manifoldfinance.com>
- Loading branch information
Showing
23 changed files
with
1,220 additions
and
844 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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
# Generic EditorConfig | ||
|
||
# top-most EditorConfig file | ||
|
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,5 +1,4 @@ | ||
{ | ||
"extends": "@ts-engine/eslint-config", | ||
"rules": { | ||
} | ||
} | ||
"rules": {} | ||
} |
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 @@ package-lock.json merge=npm-merge-driver | |
*.sh eol=lf | ||
*.bash eol=lf | ||
LICENSE* text | ||
/CHANGELOG* merge=union |
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,10 +1,10 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
- package-ecosystem: 'npm' | ||
directory: '/' | ||
schedule: | ||
interval: "weekly" | ||
interval: 'weekly' | ||
labels: | ||
- "dependencies" | ||
- 'dependencies' | ||
# Add default Kodiak `merge.automerge_label` | ||
- "automerge" | ||
- 'automerge' |
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- trunk | ||
|
||
jobs: | ||
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@main | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup Node.js 14.x | ||
uses: actions/setup-node@main | ||
with: | ||
node-version: 14.x | ||
|
||
- name: Get yarn cache directory path | ||
id: yarn-cache-dir-path | ||
run: echo "::set-output name=dir::$(yarn cache dir)" | ||
|
||
- uses: actions/cache@v2 | ||
id: yarn-cache | ||
with: | ||
path: | | ||
${{ steps.yarn-cache-dir-path.outputs.dir }} | ||
node_modules | ||
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-yarn- | ||
- name: Install Dependencies | ||
run: yarn | ||
|
||
- name: 'Create Pull Request or Publish to npm' | ||
uses: changesets/action@master | ||
with: | ||
publish: yarn release --otp=1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |
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,16 @@ | ||
{ | ||
"$schema": "http://json.schemastore.org/prettierrc", | ||
"arrowParens": "always", | ||
"bracketSpacing": true, | ||
"jsxBracketSameLine": false, | ||
"jsxSingleQuote": false, | ||
"printWidth": 80, | ||
"proseWrap": "always", | ||
"quoteProps": "as-needed", | ||
"semi": true, | ||
"singleQuote": true, | ||
"tabWidth": 2, | ||
"trailingComma": "all", | ||
"endOfLine": "lf", | ||
"useTabs": 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 |
---|---|---|
@@ -1,19 +1,24 @@ | ||
### Changelog | ||
|
||
All notable changes to this project will be documented in this file. Dates are displayed in UTC. | ||
All notable changes to this project will be documented in this file. Dates are | ||
displayed in UTC. | ||
|
||
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). | ||
|
||
#### [v0.0.2](https://github.com/manifoldfinance/openmev-sdk/compare/v0.0.1...v0.0.2) | ||
|
||
> 11 September 2021 | ||
- feat(rpc): connection configuration [`d9600f0`](https://github.com/manifoldfinance/openmev-sdk/commit/d9600f093316e058ac3b2303f58f106a4023dcd0) | ||
- feat(rpc): connection configuration | ||
[`d9600f0`](https://github.com/manifoldfinance/openmev-sdk/commit/d9600f093316e058ac3b2303f58f106a4023dcd0) | ||
|
||
#### v0.0.1 | ||
|
||
> 10 September 2021 | ||
- feat(sdk): v0.0.1 [`296f4c5`](https://github.com/manifoldfinance/openmev-sdk/commit/296f4c54f58ac125d7923bf4524fdbc1ecee389c) | ||
- docs(typedoc): generate [`fce4d12`](https://github.com/manifoldfinance/openmev-sdk/commit/fce4d121ae99f0693f5095f1824fd7317c3116c8) | ||
- feat(sdk): v0.0.1 [`e40523f`](https://github.com/manifoldfinance/openmev-sdk/commit/e40523f2581ffcf0a1927623b3726b203f0ca246) | ||
- feat(sdk): v0.0.1 | ||
[`296f4c5`](https://github.com/manifoldfinance/openmev-sdk/commit/296f4c54f58ac125d7923bf4524fdbc1ecee389c) | ||
- docs(typedoc): generate | ||
[`fce4d12`](https://github.com/manifoldfinance/openmev-sdk/commit/fce4d121ae99f0693f5095f1824fd7317c3116c8) | ||
- feat(sdk): v0.0.1 | ||
[`e40523f`](https://github.com/manifoldfinance/openmev-sdk/commit/e40523f2581ffcf0a1927623b3726b203f0ca246) |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
module.exports = { | ||
presets: [ | ||
['@babel/preset-env', { | ||
targets: { | ||
esmodules: true | ||
}, | ||
bugfixes: true, | ||
loose: true, | ||
exclude: [ | ||
'@babel/plugin-transform-async-to-generator', | ||
'@babel/plugin-transform-regenerator' | ||
] | ||
}], | ||
'@babel/preset-typescript' | ||
], | ||
plugins: [ | ||
['@babel/plugin-proposal-class-properties', { loose: true }] | ||
] | ||
} |
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.