Skip to content

Commit

Permalink
More dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
dmattia committed Dec 6, 2023
1 parent d8e2202 commit 718b54b
Show file tree
Hide file tree
Showing 10 changed files with 5,057 additions and 6,939 deletions.
2 changes: 1 addition & 1 deletion .depcheckrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ignores: ["core-js", "@yarnpkg/pnpify", "@yarnpkg/sdks", "babel-loader", "@babel/core", "@babel/plugin-proposal-class-properties", "@babel/preset-env", "@babel/preset-typescript", "depcheck", "karma-browserstack-launcher", "karma-chrome-launcher", "karma-firefox-launcher", "karma-safari-launcher", "karma-coverage", "karma-sourcemap-loader", "karma-tap", "karma-webpack", "nyc", "prettier", "webpack-cli", "worker-plugin", "buffer", "process"]
ignores: ["core-js", "@yarnpkg/sdks", "babel-loader", "@babel/core", "@babel/plugin-proposal-class-properties", "@babel/preset-env", "@babel/preset-typescript", "depcheck", "karma-browserstack-launcher", "karma-chrome-launcher", "karma-firefox-launcher", "karma-safari-launcher", "karma-coverage", "karma-sourcemap-loader", "karma-tap", "karma-webpack", "nyc", "prettier", "webpack-cli", "worker-plugin", "buffer", "process"]
skip-missing: true
1 change: 0 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@
"pipeable",
"playsinline",
"plusplus",
"pnpify",
"Ponyfill",
"preact",
"preconnect",
Expand Down
546 changes: 0 additions & 546 deletions .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

This file was deleted.

9 changes: 0 additions & 9 deletions .yarn/plugins/@yarnpkg/plugin-typescript.cjs

This file was deleted.

823 changes: 0 additions & 823 deletions .yarn/releases/yarn-3.3.1.cjs

This file was deleted.

893 changes: 893 additions & 0 deletions .yarn/releases/yarn-4.0.2.cjs

Large diffs are not rendered by default.

12 changes: 5 additions & 7 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
compressionLevel: mixed

enableGlobalCache: false

nodeLinker: node-modules

npmPublishAccess: public

plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: "@yarnpkg/plugin-interactive-tools"
- path: .yarn/plugins/@yarnpkg/plugin-typescript.cjs
spec: "@yarnpkg/plugin-typescript"

yarnPath: .yarn/releases/yarn-3.3.1.cjs
yarnPath: .yarn/releases/yarn-4.0.2.cjs
32 changes: 15 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@transcend-io/penumbra",
"version": "5.3.3",
"version": "5.4.0",
"description": "Crypto streams for the browser.",
"main": "dist/main.penumbra.js",
"types": "ts-build/src/index.d.ts",
Expand All @@ -20,10 +20,10 @@
"test:local:rebuild": "yarn && karma start karma.local.js",
"test:browserstack": "karma start karma.browserstack.js",
"####### Build #######": "",
"clean": "rimraf dist && rimraf ts-build && rimraf coverage",
"clean": "rm -rf dist && rm -rf ts-build && rm -rf coverage",
"build": "yarn clean && mkdir -p dist && webpack --config webpack.prod.js && tsc",
"build:example": "rimraf example/build && yarn build && mkdir -p example/build && cp example/*.* example/build/ && cp -a dist/. example/build/",
"build:demo": "rimraf demo/build && yarn build && mkdir -p demo/build && cp demo/*.* demo/build/ && cp -a dist/. demo/build/",
"build:example": "rm -rf example/build && yarn build && mkdir -p example/build && cp example/*.* example/build/ && cp -a dist/. example/build/",
"build:demo": "rm -rf demo/build && yarn build && mkdir -p demo/build && cp demo/*.* demo/build/ && cp -a dist/. demo/build/",
"webpack:watch": "yarn clean && webpack --config webpack.dev.js --watch"
},
"repository": {
Expand Down Expand Up @@ -55,7 +55,7 @@
"@transcend-io/conflux": "^4.1.0",
"@transcend-io/remote-web-streams": "1.0.5",
"comlink": "^4.4.1",
"core-js": "^3.33.3",
"core-js": "^3.34.0",
"crypto-browserify": "^3.12.0",
"mime-types": "^2.1.35",
"promise.allsettled": "^1.0.7",
Expand All @@ -65,25 +65,24 @@
"web-streams-polyfill": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@babel/core": "^7.23.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.23.5",
"@babel/preset-typescript": "^7.23.3",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.9.0",
"@types/tape": "^4.13.4",
"@types/node": "^20.10.3",
"@types/tape": "^5.6.4",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@yarnpkg/pnpify": "^3.1.7",
"@yarnpkg/sdks": "^2.7.2",
"@yarnpkg/sdks": "^3.1.0",
"babel-loader": "^8.2.5",
"buffer": "^6.0.3",
"depcheck": "^1.4.7",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsdoc": "^46.9.0",
"git-rev-sync": "^3.0.2",
"http-server": "^14.1.1",
Expand All @@ -98,14 +97,13 @@
"karma-webpack": "^4.0.2",
"nyc": "^15.1.0",
"prettier": "^3.1.0",
"rimraf": "^3.0.2",
"tape": "^5.7.2",
"terser-webpack-plugin": "^2.3.8",
"typescript": "^4.9.5",
"typescript": "^5.3.2",
"webpack": "^4.47.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.10.0",
"worker-plugin": "^5.0.1"
},
"packageManager": "yarn@3.3.1"
"packageManager": "yarn@4.0.2"
}
2 changes: 1 addition & 1 deletion src/tests/index.test.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
import './api.test.ts';
import './api.test';
Loading

0 comments on commit 718b54b

Please sign in to comment.