litecanvas 0.89.0 → 0.89.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/dist/dist.dev.js CHANGED
@@ -32,7 +32,7 @@
32
32
  };
33
33
 
34
34
  // src/version.js
35
- var version = "0.89.0";
35
+ var version = "0.89.1";
36
36
 
37
37
  // src/index.js
38
38
  function litecanvas(settings = {}) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "litecanvas",
3
- "version": "0.89.0",
3
+ "version": "0.89.1",
4
4
  "description": "Lightweight HTML5 canvas 2D 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>",
package/src/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- export const version = '0.89.0';
2
+ export const version = '0.89.1';
package/types/index.d.ts CHANGED
@@ -155,10 +155,6 @@ declare global {
155
155
  * Always rounds up and returns the smallest integer greater than or equal to a given number.
156
156
  */
157
157
  function ceil(n: number): number
158
- /**
159
- * Returns the value of a number rounded to the nearest integer.
160
- */
161
- function round(n: number): number
162
158
  /**
163
159
  * Always rounds down and returns the largest integer less than or equal to a given number.
164
160
  */
package/types/types.d.ts CHANGED
@@ -146,10 +146,6 @@ type LitecanvasInstance = {
146
146
  * Always rounds up and returns the smallest integer greater than or equal to a given number.
147
147
  */
148
148
  ceil(n: number): number
149
- /**
150
- * Returns the value of a number rounded to the nearest integer.
151
- */
152
- round(n: number): number
153
149
  /**
154
150
  * Always rounds down and returns the largest integer less than or equal to a given number.
155
151
  */