Skip to content

Commit

Permalink
fix release module
Browse files Browse the repository at this point in the history
  • Loading branch information
KilledByAPixel committed Jun 24, 2023
1 parent f33afd0 commit 3825415
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 22 deletions.
2 changes: 1 addition & 1 deletion engine/engine.all.js
Original file line number Diff line number Diff line change
Expand Up @@ -4209,7 +4209,7 @@ gl_VERTEX_BYTE_STRIDE = (4 * 2) * 2 + (4) * 2; // vec2 * 2 + (char * 4) * 2
const engineName = 'LittleJS';

/** Version of engine */
const engineVersion = '1.4.5';
const engineVersion = '1.4.6';

/** Frames per second to update objects
* @default */
Expand Down
2 changes: 1 addition & 1 deletion engine/engine.all.min.js

Large diffs are not rendered by default.

6 changes: 1 addition & 5 deletions engine/engine.all.module.js
Original file line number Diff line number Diff line change
Expand Up @@ -4209,7 +4209,7 @@ gl_VERTEX_BYTE_STRIDE = (4 * 2) * 2 + (4) * 2; // vec2 * 2 + (char * 4) * 2
const engineName = 'LittleJS';

/** Version of engine */
const engineVersion = '1.4.5';
const engineVersion = '1.4.6';

/** Frames per second to update objects
* @default */
Expand Down Expand Up @@ -4522,7 +4522,6 @@ const setMedalDisplayWidth = (v)=> medalDisplayWidth = v;
const setMedalDisplayHeight = (v)=> medalDisplayHeight = v;
const setMedalDisplayIconSize = (v)=> medalDisplayIconSize = v;
const setMedalsPreventUnlock = (v)=> medalsPreventUnlock = v;
const setDebugPointSize = (v)=> debugPointSize = v;
const setShowWatermark = (v)=> showWatermark = v;
const setGodMode = (v)=> godMode = v;

Expand Down Expand Up @@ -4567,7 +4566,6 @@ export {
setMedalDisplayHeight,
setMedalDisplayIconSize,
setMedalsPreventUnlock,
setDebugPointSize,
setShowWatermark,
setGodMode,

Expand Down Expand Up @@ -4612,7 +4610,6 @@ export {

// Globals
debug,
debugPointSize,
showWatermark,
godMode,
// Debug
Expand Down Expand Up @@ -4813,4 +4810,3 @@ export {
engineObjectsDestroy,
engineObjectsCallback,
};

2 changes: 1 addition & 1 deletion engine/engine.all.release.js
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,7 @@ let medalDisplayIconSize = 50;
const engineName = 'LittleJS';

/** Version of engine */
const engineVersion = '1.4.5';
const engineVersion = '1.4.6';

/** Frames per second to update objects
* @default */
Expand Down
6 changes: 1 addition & 5 deletions engine/engine.all.release.module.js
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,7 @@ let medalDisplayIconSize = 50;
const engineName = 'LittleJS';

/** Version of engine */
const engineVersion = '1.4.5';
const engineVersion = '1.4.6';

/** Frames per second to update objects
* @default */
Expand Down Expand Up @@ -4167,7 +4167,6 @@ const setMedalDisplayWidth = (v)=> medalDisplayWidth = v;
const setMedalDisplayHeight = (v)=> medalDisplayHeight = v;
const setMedalDisplayIconSize = (v)=> medalDisplayIconSize = v;
const setMedalsPreventUnlock = (v)=> medalsPreventUnlock = v;
const setDebugPointSize = (v)=> debugPointSize = v;
const setShowWatermark = (v)=> showWatermark = v;
const setGodMode = (v)=> godMode = v;

Expand Down Expand Up @@ -4212,7 +4211,6 @@ export {
setMedalDisplayHeight,
setMedalDisplayIconSize,
setMedalsPreventUnlock,
setDebugPointSize,
setShowWatermark,
setGodMode,

Expand Down Expand Up @@ -4257,7 +4255,6 @@ export {

// Globals
debug,
debugPointSize,
showWatermark,
godMode,
// Debug
Expand Down Expand Up @@ -4458,4 +4455,3 @@ export {
engineObjectsDestroy,
engineObjectsCallback,
};

2 changes: 1 addition & 1 deletion engine/engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
const engineName = 'LittleJS';

/** Version of engine */
const engineVersion = '1.4.5';
const engineVersion = '1.4.6';

/** Frames per second to update objects
* @default */
Expand Down
3 changes: 0 additions & 3 deletions engine/engineExport.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ const setMedalDisplayWidth = (v)=> medalDisplayWidth = v;
const setMedalDisplayHeight = (v)=> medalDisplayHeight = v;
const setMedalDisplayIconSize = (v)=> medalDisplayIconSize = v;
const setMedalsPreventUnlock = (v)=> medalsPreventUnlock = v;
const setDebugPointSize = (v)=> debugPointSize = v;
const setShowWatermark = (v)=> showWatermark = v;
const setGodMode = (v)=> godMode = v;

Expand Down Expand Up @@ -88,7 +87,6 @@ export {
setMedalDisplayHeight,
setMedalDisplayIconSize,
setMedalsPreventUnlock,
setDebugPointSize,
setShowWatermark,
setGodMode,

Expand Down Expand Up @@ -133,7 +131,6 @@ export {

// Globals
debug,
debugPointSize,
showWatermark,
godMode,
// Debug
Expand Down
2 changes: 1 addition & 1 deletion engine/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1664,7 +1664,7 @@ declare const gl_VERTEX_BYTE_STRIDE: number;
/** Name of engine */
declare const engineName: "LittleJS";
/** Version of engine */
declare const engineVersion: "1.4.5";
declare const engineVersion: "1.4.6";
/** Frames per second to update objects
* @default */
declare const frameRate: 60;
Expand Down
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "littlejsengine",
"version": "1.4.5",
"version": "1.4.6",
"description": "LittleJS - Tiny and Fast HTML5 Game Engine",
"main": "engine/engine.all.module.js",
"repository": {
Expand All @@ -23,14 +23,13 @@
},
"homepage": "https://github.com/KilledByAPixel/LittleJS",
"scripts": {
"build:esm": "node --experimental-modules engine/engineBuildModule.mjs",
"build": "build.bat && npm run build:esm && npm run check-filesize"
"build": "build.bat"
},
"dependencies": {
"ect-bin": "^1.4.1",
"google-closure-compiler": "^20221102.0.1",
"roadroller": "^2.1.0",
"typescript": "^4.9.4",
"typescript": "^4.9.5",
"uglify-js": "^3.17.4"
}
}

0 comments on commit 3825415

Please sign in to comment.