Add a bookmarklet maker and improve node deployment (from today and last night)

This commit is contained in:
Jade Ellis
2024-04-10 15:13:16 +01:00
parent 255767c10b
commit e3c4eec7cf
20 changed files with 1057 additions and 252 deletions
+11
View File
@@ -0,0 +1,11 @@
// rollup.config.mjs
import { nodeResolve } from '@rollup/plugin-node-resolve';
export default {
input: 'build/index.js',
output: {
dir: "output",
format: 'esm'
},
plugins: [nodeResolve()]
};