webglmusti 0.0.0 → 0.0.2

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/index.ts ADDED
@@ -0,0 +1 @@
1
+ export * as WebGL from "./src/WebGL/globals";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "webglmusti",
3
3
  "private": false,
4
- "version": "0.0.0",
4
+ "version": "0.0.2",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",
@@ -1,6 +1,8 @@
1
1
  import * as WebGL from "./../../WebGL/globals";
2
2
  import * as PEngine from "./engine";
3
3
  import { PuzzleEngine } from "./engine";
4
+ import Heap from "@datastructures-js/priority-queue";
5
+
4
6
 
5
7
  type Int32 = number;
6
8
 
@@ -1,3 +1,10 @@
1
1
  import * as WebGL from "./globals";
2
+ import Heap from "@datastructures-js/priority-queue"
2
3
 
3
- module.exports = WebGL;
4
+ module.exports = WebGL;
5
+
6
+ exports.WebGL = WebGL;
7
+
8
+ exports.printMsg = function() {
9
+ console.log("This is a message from the demo package");
10
+ }
package/src/index.ts CHANGED
@@ -1,4 +1 @@
1
- import * as WebGL from "./WebGL/globals";
2
-
3
-
4
- module.exports = WebGL;
1
+ export * as WebGL from "./WebGL/globals";