getta 0.4.6 → 0.4.7

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/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ #### 0.4.7 (2023-08-13)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * output mjs files for module ([de027423](https://github.com/badbatch/getta/commit/de027423088da3a47346ef9c837f96481a04924b))
6
+
1
7
  #### 0.4.6 (2023-07-12)
2
8
 
3
9
  ##### Refactors
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "getta",
3
- "version": "0.4.6",
3
+ "version": "0.4.7",
4
4
  "description": "An isomorphic rest client based on the Fetch API.",
5
5
  "keywords": [
6
6
  "api-client",
@@ -19,7 +19,7 @@
19
19
  "license": "MIT",
20
20
  "author": "Dylan Aubrey <dylanaubrey@gmail.com>",
21
21
  "main": "lib/main/index.js",
22
- "module": "lib/module/index.js",
22
+ "module": "lib/module/index.mjs",
23
23
  "browser": "lib/browser/index.js",
24
24
  "types": "lib/types/index.d.ts",
25
25
  "scripts": {
@@ -34,7 +34,7 @@
34
34
  "compile-watch:types": "yarn run compile:types --watch",
35
35
  "compile:browser": "cross-env BABEL_ENV=web rollup -c ./rollup.config.js",
36
36
  "compile:main": "cross-env BABEL_ENV=main babel ./src --out-dir ./lib/main --extensions \".ts\" --config-file ./babel.config.js",
37
- "compile:module": "cross-env BABEL_ENV=module babel ./src --out-dir ./lib/module --extensions \".ts\" --config-file ./babel.config.js",
37
+ "compile:module": "cross-env BABEL_ENV=module babel ./src --out-dir ./lib/module --extensions \".ts\" --out-file-extension \".mjs\" --config-file ./babel.config.js",
38
38
  "compile:types": "tsc --declaration --declarationMap --emitDeclarationOnly",
39
39
  "cutoff": "cutoff",
40
40
  "cutoff:post-version": "yarn run compile && yarn run docs",
@@ -53,12 +53,12 @@
53
53
  }
54
54
  },
55
55
  "dependencies": {
56
- "@cachemap/core": "^4.0.1",
56
+ "@cachemap/core": "^4.0.4",
57
57
  "@repodog/constants": "^0.3.29",
58
58
  "@repodog/helpers": "^0.3.27",
59
59
  "@repodog/types": "^0.3.26",
60
60
  "@types/md5": "^2.1.33",
61
- "cacheability": "^3.0.1",
61
+ "cacheability": "^3.0.2",
62
62
  "md5": "^2.2.1",
63
63
  "query-string": "^6.11.1"
64
64
  },
@@ -90,9 +90,9 @@
90
90
  "@babel/preset-typescript": "^7.8.3",
91
91
  "@babel/register": "^7.8.6",
92
92
  "@babel/runtime": "^7.8.4",
93
- "@cachemap/constants": "4.0.0",
94
- "@cachemap/controller": "4.0.0",
95
- "@cachemap/map": "4.0.0",
93
+ "@cachemap/constants": "^4.0.2",
94
+ "@cachemap/controller": "^4.0.3",
95
+ "@cachemap/map": "^4.0.3",
96
96
  "@commitlint/cli": "^8.3.5",
97
97
  "@commitlint/config-conventional": "^8.3.4",
98
98
  "@repodog/babel-config": "^0.3.31",
File without changes
File without changes
File without changes
File without changes