Skip to content

Commit a15df80

Browse files
update plugins/imagify
1 parent 37382dd commit a15df80

623 files changed

Lines changed: 94984 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Security Policy
2+
3+
## Reporting Security Bugs
4+
5+
Please report security bugs found in the site-reviews plugin's source code through the [Patchstack Vulnerability Disclosure Program](https://patchstack.com/database/vdp/imagify). The Patchstack team will assist you with verification, CVE assignment and take care of notifying the developers of this plugin.
6+
---
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/**
2+
* @typedef {import('@roots/bud').Bud} Bud
3+
*
4+
* @param {Bud} bud
5+
*/
6+
module.exports = async bud => {
7+
bud.externals({
8+
jQuery: 'window.jquery',
9+
wp: 'window.wp',
10+
})
11+
bud.runtime('single')
12+
13+
await bud
14+
.setPath('@dist', '../assets/admin')
15+
.entry({
16+
chart: 'chart.js',
17+
bulk: 'bulk.js',
18+
})
19+
//.when( bud.isProduction, () => bud.splitChunks().minimize() )
20+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "imagify_dev",
3+
"version": "1.0.0",
4+
"dependencies": {
5+
},
6+
"devDependencies": {
7+
"@roots/bud": "^6.11.0",
8+
"chart.js": "^4.4.0"
9+
},
10+
"scripts": {
11+
"dev": "bud dev",
12+
"build": "bud build",
13+
"bud": "bud"
14+
}
15+
}

0 commit comments

Comments
 (0)