Version 1.4.0 (#10)

* Feature/webpack integration (#9)

* working webpack into template

* removing package-lock.json

* implementing source

* style update
This commit is contained in:
Jonas Pfalzgraf 2023-01-24 01:07:55 +01:00 committed by GitHub
parent 241d3d02c6
commit 2319a1fd9b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 217 additions and 766 deletions

9
tools/clean.ts Normal file
View file

@ -0,0 +1,9 @@
import * as fs from "fs";
function removeExport(file: string) {
let content = fs.readFileSync(file, "utf8");
content = content.replace("export {};", "");
fs.writeFileSync(file, content);
}
removeExport("./dist/js/background.js");