(name, sourcemap)
| 28 | ]; |
| 29 | const banner = `/*! p5.js v${pkg.version} ${new Intl.DateTimeFormat('en-US', { month: 'long', day: 'numeric', year: 'numeric' }).format(new Date())} */`; |
| 30 | const bundleSize = (name, sourcemap) => { |
| 31 | return visualizer({ |
| 32 | filename: `analyzer/${name}.html`, |
| 33 | gzipSize: true, |
| 34 | brotliSize: true, |
| 35 | sourcemap |
| 36 | }); |
| 37 | }; |
| 38 | |
| 39 | const modules = ['webgpu']; // TODO: also generate math build |
| 40 | const generateModuleBuild = () => { |
no outgoing calls
no test coverage detected