@symbo.ls/fetch 3.0.2 → 3.1.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/dist/cjs/index.js CHANGED
@@ -35,9 +35,7 @@ __export(index_exports, {
35
35
  });
36
36
  module.exports = __toCommonJS(index_exports);
37
37
  var utils = __toESM(require("@domql/utils"), 1);
38
- var globals = __toESM(require("@domql/globals"), 1);
39
- const { overwriteDeep, deepDestringify } = utils;
40
- const { window } = globals;
38
+ const { window, overwriteDeep, deepDestringify } = utils;
41
39
  const IS_DEVELOPMENT = window && window.location ? window.location.host.includes("dev.") : true;
42
40
  const SERVER_URL = IS_DEVELOPMENT ? "http://localhost:13335/get" : "https://api.symbols.app/get";
43
41
  const defaultOptions = {
package/dist/esm/index.js CHANGED
@@ -1,7 +1,5 @@
1
1
  import * as utils from "@domql/utils";
2
- import * as globals from "@domql/globals";
3
- const { overwriteDeep, deepDestringify } = utils;
4
- const { window } = globals;
2
+ const { window, overwriteDeep, deepDestringify } = utils;
5
3
  const IS_DEVELOPMENT = window && window.location ? window.location.host.includes("dev.") : true;
6
4
  const SERVER_URL = IS_DEVELOPMENT ? "http://localhost:13335/get" : "https://api.symbols.app/get";
7
5
  const defaultOptions = {
package/index.js CHANGED
@@ -1,9 +1,7 @@
1
1
  'use strict'
2
2
 
3
3
  import * as utils from '@domql/utils'
4
- import * as globals from '@domql/globals'
5
- const { overwriteDeep, deepDestringify } = utils
6
- const { window } = globals
4
+ const { window, overwriteDeep, deepDestringify } = utils
7
5
 
8
6
  const IS_DEVELOPMENT =
9
7
  window && window.location
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@symbo.ls/fetch",
3
- "version": "3.0.2",
3
+ "version": "3.1.2",
4
4
  "license": "MIT",
5
- "gitHead": "c4dacc88fa3a65574680d11e320307dd2a22e6e9",
5
+ "gitHead": "429b36616aa04c8587a26ce3c129815115e35897",
6
6
  "type": "module",
7
7
  "module": "index.js",
8
8
  "main": "index.js",
@@ -29,7 +29,6 @@
29
29
  "prepublish": "npm run build; npm run copy:package:cjs"
30
30
  },
31
31
  "dependencies": {
32
- "@domql/globals": "latest",
33
- "@domql/utils": "^3.0.0"
32
+ "@domql/utils": "^3.1.2"
34
33
  }
35
34
  }