cleanup webpack plugin module

This commit is contained in:
Robert Kaussow 2024-08-28 14:53:23 +02:00
parent 11154bf03d
commit b1457ac0e7
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0

View File

@ -3,7 +3,7 @@ import crypto from "crypto"
import path from "path" import path from "path"
import { validate } from "schema-utils" import { validate } from "schema-utils"
class SRIPlugin { export default class SRIPlugin {
static defaultOptions = { static defaultOptions = {
algorithm: "sha512", algorithm: "sha512",
sourceFile: "assets.json" sourceFile: "assets.json"
@ -53,5 +53,3 @@ class SRIPlugin {
}) })
} }
} }
export default SRIPlugin