Skip to content

Commit

Permalink
Upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
kvz committed Oct 1, 2024
1 parent 0184a17 commit ee9c676
Show file tree
Hide file tree
Showing 3 changed files with 739 additions and 404 deletions.
7 changes: 4 additions & 3 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"files": {
"ignoreUnknown": false,
"ignore": []
"ignore": ["test-results/"]
},
"formatter": {
"enabled": true,
Expand All @@ -27,7 +27,7 @@
"js/dep/",
"**/node_modules/",
"tests/fixtures/",
"**/test-results/"
"test-results/"
]
},
"organizeImports": {
Expand Down Expand Up @@ -103,7 +103,8 @@
"package.json",
"coverage/**",
"js/dep/**",
"node_modules/**"
"node_modules/**",
"test-results/"
]
},
"javascript": {
Expand Down
21 changes: 15 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
{
"name": "@transloadit/jquery-sdk",
"keywords": ["uploader", "jquery uploader", "transloadit", "transload it"],
"keywords": [
"uploader",
"jquery uploader",
"transloadit",
"transload it"
],
"version": "3.3.5",
"scripts": {
"browserify": "browserify -t [ babelify --presets [ es2015 ] ] js/lib/*.js -o build/jquery.transloadit2-v3-latest.js",
Expand Down Expand Up @@ -28,25 +33,29 @@
"version": "node -e 'console.log(require(\"./package.json\").version)'",
"versionify": "cd build && for file in *.*; do cp -v ${file} $(echo ${file} |sed \"s/v3-latest/v$(npm run --silent version)/g\" ); done"
},
"files": ["build", "css", "js"],
"files": [
"build",
"css",
"js"
],
"dependencies": {
"@playwright/test": "^1.47.2",
"socket.io-client": "1.7.4",
"tus-js-client": "1.4.3"
"tus-js-client": "1.8.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@vitest/coverage-v8": "^2.1.1",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-add-module-exports": "1.0.4",
"babel-plugin-es6-promise": "1.1.1",
"babel-plugin-syntax-async-functions": "6.13.0",
"babel-plugin-transform-async-to-generator": "6.24.1",
"babel-plugin-transform-object-assign": "6.22.0",
"babel-preset-es2015": "6.24.1",
"babelify": "7.3.0",
"browserify": "13.0.0",
"babelify": "8.0.0",
"browserify": "17.0.0",
"debug": "3.2.7",
"es6-promise": "4.2.8",
"jquery": "3.7.1",
Expand Down
Loading

0 comments on commit ee9c676

Please sign in to comment.