forked from ProjectOpenSea/seaport-js
-
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.
Merge branch 'main' into remove_balance_check
* main: (79 commits) Update package.json - bump to v2.0.4 (ProjectOpenSea#291) Update Node.js to v16.20.1 (ProjectOpenSea#290) Respect ERC1271 (ProjectOpenSea#286) Update dependency dotenv to v16.3.1 (ProjectOpenSea#273) Update dependency sinon to v15.2.0 (ProjectOpenSea#285) Update dependency c8 to v8 (ProjectOpenSea#287) Bump @openzeppelin/contracts from 4.9.0 to 4.9.2 (ProjectOpenSea#289) Update dependency @types/node to v16.18.36 (ProjectOpenSea#284) Update dependency hardhat to v2.15.0 (ProjectOpenSea#282) Update dependency @0xsequence/multicall to v0.43.34 (ProjectOpenSea#278) Update typescript-eslint monorepo to v5.60.0 (ProjectOpenSea#277) Update dependency eslint to v8.43.0 (ProjectOpenSea#271) Update dependency typescript to v5.1.3 (ProjectOpenSea#267) Update dependency concurrently to v8.2.0 (ProjectOpenSea#266) fix postinstall script, bump version (ProjectOpenSea#280) Update npm-publish.yml (ProjectOpenSea#276) Fix husky postinstall script (ProjectOpenSea#275) add readme banner (ProjectOpenSea#270) Update package.json version (ProjectOpenSea#269) Fix npm-publish.yml (ProjectOpenSea#268) ...
- Loading branch information
Showing
61 changed files
with
21,300 additions
and
49,356 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,5 +1,5 @@ | ||
{ | ||
"reporter": ["lcov","text"], | ||
"src": ["src"], | ||
"exclude": ["hardhat.config.ts", "src/__tests__/*", "src/abi/*"] | ||
} | ||
"reporter": ["lcov", "text"], | ||
"src": ["src"], | ||
"exclude": ["hardhat.config.ts", "src/abi/*"] | ||
} |
Empty 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 |
---|---|---|
|
@@ -2,4 +2,5 @@ node_modules | |
artifacts | ||
cache | ||
coverage | ||
lib | ||
lib | ||
typechain-types |
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
File renamed without changes.
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,23 @@ | ||
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages | ||
|
||
name: Node.js Package | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
publish-npm: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: .nvmrc | ||
registry-url: https://registry.npmjs.org/ | ||
- run: npm install | ||
- run: npm test | ||
- run: npm publish | ||
env: | ||
NODE_AUTH_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,19 @@ | ||
name: "Close stale issues" | ||
on: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v8 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs. Thank you for your contributions. If you believe this was a mistake, please comment." | ||
stale-pr-message: "This PR has been automatically marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs. Thank you for your contributions. If you believe this was a mistake, please comment." | ||
days-before-stale: 60 | ||
days-before-close: 14 | ||
operations-per-run: 100 | ||
exempt-pr-labels: "work-in-progress" | ||
exempt-issue-labels: "work-in-progress" |
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 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
yarn check-types:incremental | ||
npm run check-types:incremental |
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 +1 @@ | ||
16.11.0 | ||
16.20.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 |
---|---|---|
|
@@ -2,6 +2,5 @@ node_modules | |
artifacts | ||
cache | ||
coverage* | ||
gasReporterOutput.json | ||
lib | ||
typechain | ||
typechain-types |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.