litecanvas 0.75.0 → 0.75.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "litecanvas",
3
- "version": "0.75.0",
3
+ "version": "0.75.1",
4
4
  "description": "Lightweight HTML5 canvas game engine suitable for small projects and creative coding. Inspired by PICO-8 and P5/Processing.",
5
5
  "license": "MIT",
6
6
  "author": "Luiz Bills <luizbills@pm.me>",
@@ -26,7 +26,7 @@
26
26
  "scripts": {
27
27
  "test": "npm run build && ava",
28
28
  "dev:test": "ava --watch",
29
- "dev": "esbuild src/web.js --bundle --watch --define:DEV_BUILD=true --outfile=dist/dist.dev.js --servedir=.",
29
+ "dev": "esbuild src/web.js --bundle --watch --outfile=dist/dist.dev.js --servedir=.",
30
30
  "build": "node script/build.js",
31
31
  "gzip-size": "gzip -c dist/dist.min.js | wc -c | xargs printf \" Gzip size: %s bytes\n\"",
32
32
  "format": "prettier -w src/* samples/* types/* script/* types/*",