Skip to content

Commit

Permalink
Upgrade @bytescale/upload-widget package
Browse files Browse the repository at this point in the history
  • Loading branch information
ljwagerfield committed May 6, 2024
1 parent 6aa78dd commit d2cc660
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 28 deletions.
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<img alt="Bytescale Upload Widget for jQuery" width="549" height="80" src="https://raw.githubusercontent.com/bytescale/bytescale-upload-widget-jquery/main/.github/assets/bytescale-upload-widget-jquery.svg">
</a>
</h1>
<p align="center"><b>Beautiful File Upload Widget for jQuery</b><br/> (With Built-in Cloud Storage)</p>
<p align="center"><b>Beautiful File Upload Widget for jQuery</b><br/> (Works out-the-box, storage included)</p>
<br/>
<p align="center">
<a href="https://www.npmjs.com/package/@bytescale/upload-widget-jquery">
Expand Down Expand Up @@ -490,6 +490,23 @@ UrlBuilder.url({

[Archive Processing API Docs »](https://www.bytescale.com/docs/archive-processing-api)

#### Antivirus

To scan the file `example.zip` for viruses, use the following:

```javascript
// Returns: "https://upcdn.io/1234abc/antivirus/example.zip"
UrlBuilder.url({
accountId: "1234abc",
filePath: "/example.zip",
options: {
transformation: "antivirus"
}
});
```

[Antivirus API Docs »](https://www.bytescale.com/docs/antivirus-api)

## 🙋 Can I use my own storage?

Bytescale supports AWS S3, Cloudflare R2, Google Storage, DigitalOcean, and Bytescale Storage.
Expand Down
46 changes: 23 additions & 23 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"jquery": "^3.6.0"
},
"dependencies": {
"@bytescale/upload-widget": "^4.24.0"
"@bytescale/upload-widget": "^4.27.0"
},
"devDependencies": {
"@babel/cli": "7.24.1",
Expand Down Expand Up @@ -116,10 +116,10 @@
"wdio-chromedriver-service": "^7.3.2",
"wdio-wait-for": "^2.2.5",
"webdriverio": "^7.19.3",
"webpack-bundle-analyzer": "4.2.0",
"webpack-node-externals": "2.5.2",
"webpack": "5.90.3",
"webpack-bundle-analyzer": "4.2.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.15.2"
"webpack-dev-server": "4.15.2",
"webpack-node-externals": "2.5.2"
}
}

0 comments on commit d2cc660

Please sign in to comment.