Skip to content

Commit

Permalink
bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
dmattia committed Dec 5, 2023
1 parent bb4a872 commit 882cabe
Show file tree
Hide file tree
Showing 5 changed files with 1,638 additions and 977 deletions.
2 changes: 1 addition & 1 deletion .github/commands/dependencies/install_yarn_deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
14.17.3
20.9.0
6 changes: 3 additions & 3 deletions karma.browserstack.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = (config) => {
os_version: 'Sonoma',
local: "false",
networkLogs: "true",
seleniumVersion: "3.14.0",
seleniumVersion: "4.15.0",
},
bs_safari_mac: {
base: 'BrowserStack',
Expand All @@ -26,7 +26,7 @@ module.exports = (config) => {
os_version: 'Sonoma',
local: 'false',
networkLogs: "true",
seleniumVersion: "3.14.0",
seleniumVersion: "4.15.0",
},
// TODO: https://github.com/transcend-io/penumbra/issues/249
// bs_firefox_pc: {
Expand All @@ -44,7 +44,7 @@ module.exports = (config) => {
os_version: '11',
local: 'false',
networkLogs: "true",
seleniumVersion: "3.14.0",
seleniumVersion: "4.15.0",
},
};

Expand Down
50 changes: 25 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand All @@ -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]"
Expand Down
Loading

0 comments on commit 882cabe

Please sign in to comment.