-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
1,638 additions
and
977 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 |
---|---|---|
|
@@ -6,7 +6,7 @@ runs: | |
# Install Yarn v2 dependencies | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: '14.17.3' | ||
node-version: '20.9.0' | ||
- run: npm install -g "[email protected]" | ||
shell: bash | ||
- uses: actions/cache@v2 | ||
|
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 @@ | ||
14.17.3 | ||
20.9.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
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
"scripts": { | ||
"prepare": "yarn build", | ||
"####### Linting #######": "", | ||
"lint": "yarn pnpify eslint src --ext .ts", | ||
"lint": "yarn eslint src --ext .ts", | ||
"####### Start #########": "", | ||
"start:example": "yarn build:example && http-server example/build/ --port 8080 -o", | ||
"start:demo": "yarn build:demo && http-server demo/build/ --port 8081 -o", | ||
|
@@ -52,13 +52,13 @@ | |
], | ||
"homepage": "https://github.com/transcend-io/penumbra#readme", | ||
"dependencies": { | ||
"@transcend-io/conflux": "^3.2.2", | ||
"@transcend-io/conflux": "^4.1.0", | ||
"@transcend-io/remote-web-streams": "1.0.5", | ||
"comlink": "^4.3.1", | ||
"core-js": "^3.22.8", | ||
"comlink": "^4.4.1", | ||
"core-js": "^3.33.3", | ||
"crypto-browserify": "^3.12.0", | ||
"mime-types": "^2.1.35", | ||
"promise.allsettled": "^1.0.5", | ||
"promise.allsettled": "^1.0.7", | ||
"streamsaver": "^2.0.6", | ||
"typedarray-to-buffer": "^4.0.0", | ||
"web-streams-node": "^0.4.0", | ||
|
@@ -69,42 +69,42 @@ | |
"@babel/plugin-proposal-class-properties": "^7.17.12", | ||
"@babel/preset-env": "^7.18.2", | ||
"@babel/preset-typescript": "^7.17.12", | ||
"@types/mime-types": "^2.1.1", | ||
"@types/node": "^17.0.40", | ||
"@types/tape": "^4.13.2", | ||
"@typescript-eslint/eslint-plugin": "^5.27.1", | ||
"@typescript-eslint/parser": "^5.27.1", | ||
"@yarnpkg/pnpify": "^3.1.3", | ||
"@yarnpkg/sdks": "^2.6.2", | ||
"@types/mime-types": "^2.1.4", | ||
"@types/node": "^20.9.0", | ||
"@types/tape": "^4.13.4", | ||
"@typescript-eslint/eslint-plugin": "^6.13.2", | ||
"@typescript-eslint/parser": "^6.13.2", | ||
"@yarnpkg/pnpify": "^3.1.7", | ||
"@yarnpkg/sdks": "^2.7.2", | ||
"babel-loader": "^8.2.5", | ||
"buffer": "^6.0.3", | ||
"depcheck": "^1.4.3", | ||
"eslint": "^8.17.0", | ||
"depcheck": "^1.4.7", | ||
"eslint": "^8.55.0", | ||
"eslint-config-airbnb-base": "^15.0.0", | ||
"eslint-import-resolver-typescript": "^2.7.1", | ||
"eslint-import-resolver-typescript": "^3.6.1", | ||
"eslint-plugin-eslint-comments": "^3.2.0", | ||
"eslint-plugin-import": "2.26.0", | ||
"eslint-plugin-jsdoc": "^37.9.7", | ||
"eslint-plugin-jsdoc": "^46.9.0", | ||
"git-rev-sync": "^3.0.2", | ||
"http-server": "^14.1.1", | ||
"karma": "^6.3.20", | ||
"karma": "^6.4.2", | ||
"karma-browserstack-launcher": "^1.6.0", | ||
"karma-chrome-launcher": "^3.1.1", | ||
"karma-coverage": "^2.2.0", | ||
"karma-chrome-launcher": "^3.2.0", | ||
"karma-coverage": "^2.2.1", | ||
"karma-firefox-launcher": "^2.1.2", | ||
"karma-safari-launcher": "^1.0.0", | ||
"karma-sourcemap-loader": "^0.3.8", | ||
"karma-sourcemap-loader": "^0.4.0", | ||
"karma-tap": "^4.2.0", | ||
"karma-webpack": "^4.0.2", | ||
"nyc": "^15.1.0", | ||
"prettier": "^2.6.2", | ||
"prettier": "^3.1.0", | ||
"rimraf": "^3.0.2", | ||
"tape": "^5.5.3", | ||
"tape": "^5.7.2", | ||
"terser-webpack-plugin": "^2.3.8", | ||
"typescript": "^4.7.3", | ||
"webpack": "^4.46.0", | ||
"typescript": "^4.9.5", | ||
"webpack": "^4.47.0", | ||
"webpack-cli": "^3.3.12", | ||
"webpack-merge": "^5.8.0", | ||
"webpack-merge": "^5.10.0", | ||
"worker-plugin": "^5.0.1" | ||
}, | ||
"packageManager": "[email protected]" | ||
|
Oops, something went wrong.