@symbo.ls/fetch 3.0.2 → 3.1.1
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 +1 -3
- package/dist/esm/index.js +1 -3
- package/index.js +1 -3
- package/package.json +3 -4
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"gitHead": "
|
|
5
|
+
"gitHead": "39fb7a8c07355468ccce79e2f787ca3fa0715692",
|
|
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/
|
|
33
|
-
"@domql/utils": "^3.0.0"
|
|
32
|
+
"@domql/utils": "^3.1.1"
|
|
34
33
|
}
|
|
35
34
|
}
|