@loaders.gl/worker-utils 4.4.0-alpha.12 → 4.4.0-alpha.13

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.cjs CHANGED
@@ -71,7 +71,7 @@ function getVersion() {
71
71
  globalThis._loadersgl_.version = NPM_TAG;
72
72
  warningIssued = true;
73
73
  } else {
74
- globalThis._loadersgl_.version = "4.4.0-alpha.12";
74
+ globalThis._loadersgl_.version = "4.4.0-alpha.13";
75
75
  }
76
76
  }
77
77
  return globalThis._loadersgl_.version;
@@ -7,14 +7,14 @@ function getVersion() {
7
7
  if (!globalThis._loadersgl_?.version) {
8
8
  globalThis._loadersgl_ = globalThis._loadersgl_ || {};
9
9
  // __VERSION__ is injected by babel-plugin-version-inline
10
- if (typeof "4.4.0-alpha.12" === 'undefined' && !warningIssued) {
10
+ if (typeof "4.4.0-alpha.13" === 'undefined' && !warningIssued) {
11
11
  // eslint-disable-next-line
12
12
  console.warn('loaders.gl: The __VERSION__ variable is not injected using babel plugin. Latest unstable workers would be fetched from the CDN.');
13
13
  globalThis._loadersgl_.version = NPM_TAG;
14
14
  warningIssued = true;
15
15
  }
16
16
  else {
17
- globalThis._loadersgl_.version = "4.4.0-alpha.12";
17
+ globalThis._loadersgl_.version = "4.4.0-alpha.13";
18
18
  }
19
19
  }
20
20
  return globalThis._loadersgl_.version;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loaders.gl/worker-utils",
3
- "version": "4.4.0-alpha.12",
3
+ "version": "4.4.0-alpha.13",
4
4
  "description": "Utilities for running tasks on worker threads",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -58,5 +58,5 @@
58
58
  "peerDependencies": {
59
59
  "@loaders.gl/core": "4.4.0-alpha.1"
60
60
  },
61
- "gitHead": "35205e786cbbcf4bd91b74abe210f6c8e378b4cf"
61
+ "gitHead": "5145c7b32353d00f414b85773caa9064af412434"
62
62
  }