@gaialabs/core 0.1.1 → 0.1.3
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/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +18 -14
- package/LICENSE +0 -674
package/dist/index.mjs
CHANGED
|
@@ -1978,7 +1978,7 @@ var PostProcessor = class {
|
|
|
1978
1978
|
};
|
|
1979
1979
|
|
|
1980
1980
|
// src/rom/extraction/writer.ts
|
|
1981
|
-
var NEWLINE = process.platform === "win32" ? "\r\n" : "\n";
|
|
1981
|
+
var NEWLINE = process && process.platform === "win32" ? "\r\n" : "\n";
|
|
1982
1982
|
var ObjectType = /* @__PURE__ */ ((ObjectType2) => {
|
|
1983
1983
|
ObjectType2["TableEntryArray"] = "TableEntryArray";
|
|
1984
1984
|
ObjectType2["StructDef"] = "StructDef";
|
|
@@ -4013,7 +4013,7 @@ var SpriteMap = class _SpriteMap {
|
|
|
4013
4013
|
};
|
|
4014
4014
|
|
|
4015
4015
|
// src/index.ts
|
|
4016
|
-
var GAIA_CORE_VERSION = "0.1.
|
|
4016
|
+
var GAIA_CORE_VERSION = "0.1.3";
|
|
4017
4017
|
var isPlatformBrowser = typeof window !== "undefined";
|
|
4018
4018
|
var isPlatformNode = typeof process !== "undefined" && process.versions?.node;
|
|
4019
4019
|
var isPlatformWebWorker = typeof importScripts !== "undefined";
|