do some random shit

typescript
Drake 2 years ago
parent 853381b6f7
commit dd8440badf

3
.gitignore vendored

@ -1,2 +1,3 @@
node_modules/ node_modules/
pnpm-lock.yaml pnpm-lock.yaml
stats.html

@ -38,3 +38,6 @@ Because it's
- Not really finished - Not really finished
- Doesn't have any plugins - Doesn't have any plugins
- Will break at the slightest poke or prod (related to the first one) - Will break at the slightest poke or prod (related to the first one)
# Screenshots
![Image of the Demoncord plugins menu](screenshots/1.png)

@ -12,6 +12,7 @@
"dependencies": { "dependencies": {
"idb-keyval": "^6.1.0", "idb-keyval": "^6.1.0",
"nests": "^2.3.1", "nests": "^2.3.1",
"rollup-plugin-visualizer": "^5.7.0",
"spitroast": "^1.4.2" "spitroast": "^1.4.2"
}, },
"devDependencies": { "devDependencies": {

@ -4,6 +4,8 @@ import { nodeResolve } from "@rollup/plugin-node-resolve";
import alias from "@rollup/plugin-alias"; import alias from "@rollup/plugin-alias";
import { swc } from "rollup-plugin-swc3"; import { swc } from "rollup-plugin-swc3";
import { resolve as resolvePath } from "path"; import { resolve as resolvePath } from "path";
import { visualizer } from "rollup-plugin-visualizer";
const projectRootDir = resolvePath(__dirname); const projectRootDir = resolvePath(__dirname);
export default defineConfig({ export default defineConfig({
@ -45,6 +47,7 @@ export default defineConfig({
target: "es2022", target: "es2022",
baseUrl: "./src" baseUrl: "./src"
} }
}) }),
visualizer()
] ]
}); });

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Loading…
Cancel
Save