@lastolivegames/becsy
Advanced tools
Comparing version 0.8.2 to 0.8.3
@@ -0,1 +1,4 @@ | ||
### 0.8.3 | ||
- Make `enum`s non-`const` so they don't break in builds with isolated modules. | ||
### 0.8.2 | ||
@@ -2,0 +5,0 @@ - Added `Entity.hold` and `Entity.isSame` methods. |
@@ -95,3 +95,3 @@ type TypedArray = Uint8Array | Int8Array | Uint16Array | Int16Array | Uint32Array | Int32Array | Float32Array | Float64Array; | ||
} | ||
declare const enum QueryFlavor { | ||
declare enum QueryFlavor { | ||
current = 1, | ||
@@ -98,0 +98,0 @@ added = 2, |
@@ -95,3 +95,3 @@ type TypedArray = Uint8Array | Int8Array | Uint16Array | Int16Array | Uint32Array | Int32Array | Float32Array | Float64Array; | ||
} | ||
declare const enum QueryFlavor { | ||
declare enum QueryFlavor { | ||
current = 1, | ||
@@ -98,0 +98,0 @@ added = 2, |
@@ -95,3 +95,3 @@ type TypedArray = Uint8Array | Int8Array | Uint16Array | Int16Array | Uint32Array | Int32Array | Float32Array | Float64Array; | ||
} | ||
declare const enum QueryFlavor { | ||
declare enum QueryFlavor { | ||
current = 1, | ||
@@ -98,0 +98,0 @@ added = 2, |
@@ -95,3 +95,3 @@ type TypedArray = Uint8Array | Int8Array | Uint16Array | Int16Array | Uint32Array | Int32Array | Float32Array | Float64Array; | ||
} | ||
declare const enum QueryFlavor { | ||
declare enum QueryFlavor { | ||
current = 1, | ||
@@ -98,0 +98,0 @@ added = 2, |
{ | ||
"name": "@lastolivegames/becsy", | ||
"type": "module", | ||
"version": "0.8.2", | ||
"version": "0.8.3", | ||
"scripts": { | ||
@@ -6,0 +6,0 @@ "test": "jest --config jestconfig.json --detectOpenHandles", |
@@ -95,3 +95,3 @@ type TypedArray = Uint8Array | Int8Array | Uint16Array | Int16Array | Uint32Array | Int32Array | Float32Array | Float64Array; | ||
} | ||
declare const enum QueryFlavor { | ||
declare enum QueryFlavor { | ||
current = 1, | ||
@@ -98,0 +98,0 @@ added = 2, |
@@ -95,3 +95,3 @@ type TypedArray = Uint8Array | Int8Array | Uint16Array | Int16Array | Uint32Array | Int32Array | Float32Array | Float64Array; | ||
} | ||
declare const enum QueryFlavor { | ||
declare enum QueryFlavor { | ||
current = 1, | ||
@@ -98,0 +98,0 @@ added = 2, |
@@ -95,3 +95,3 @@ type TypedArray = Uint8Array | Int8Array | Uint16Array | Int16Array | Uint32Array | Int32Array | Float32Array | Float64Array; | ||
} | ||
declare const enum QueryFlavor { | ||
declare enum QueryFlavor { | ||
current = 1, | ||
@@ -98,0 +98,0 @@ added = 2, |
@@ -95,3 +95,3 @@ type TypedArray = Uint8Array | Int8Array | Uint16Array | Int16Array | Uint32Array | Int32Array | Float32Array | Float64Array; | ||
} | ||
declare const enum QueryFlavor { | ||
declare enum QueryFlavor { | ||
current = 1, | ||
@@ -98,0 +98,0 @@ added = 2, |
@@ -9,3 +9,3 @@ import {Bitset} from './datatypes/bitset'; | ||
const enum QueryFlavor { | ||
enum QueryFlavor { | ||
current = 1, added = 2, removed = 4, changed = 8, addedOrChanged = 16, changedOrRemoved = 32, | ||
@@ -12,0 +12,0 @@ addedChangedOrRemoved = 64 |
@@ -24,3 +24,3 @@ import {checkTypeDefined, ComponentType} from './component'; | ||
const enum Action { | ||
enum Action { | ||
REFERENCE = 0, UNREFERENCE = 2 ** 30, RELEASE = 2 ** 31 | ||
@@ -27,0 +27,0 @@ } |
@@ -19,3 +19,3 @@ import type {LogPointer} from './datatypes/log'; | ||
export const enum RunState { | ||
export enum RunState { | ||
RUNNING, STOPPED | ||
@@ -22,0 +22,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
3739702