remove redundant workflow

This commit is contained in:
David Reed 2022-09-30 18:18:09 -04:00
parent 138181fcb3
commit 29696341ff
3 changed files with 1 additions and 17 deletions

1
.gitignore vendored
View file

@ -1,3 +1,2 @@
node_modules
dist
*.tgz

View file

@ -1,3 +1,3 @@
import { fileURLToPath } from "url";
export const publicPath = fileURLToPath(new URL("../dist/", import.meta.url));
export const publicPath = fileURLToPath(new URL("../public/", import.meta.url));

View file

@ -1,15 +0,0 @@
/**
* Copies public & ultraviolet into the dist directory.
*/
import fs from "fs-extra";
import { uvPath } from "ultraviolet";
try {
await fs.mkdir("dist");
} catch (err) {
if (err?.code !== "EEXIST") throw err;
}
await fs.copy(uvPath, "dist/uv/");
await fs.copy("public", "dist/");