@emeryld/rrroutes-client 1.1.3 → 1.1.4

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.
@@ -219,4 +219,4 @@ export {
219
219
  createRouteClient,
220
220
  defaultFetcher
221
221
  };
222
- //# sourceMappingURL=index.js.map
222
+ //# sourceMappingURL=index.mjs.map
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@emeryld/rrroutes-client",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
7
- "module": "dist/index.js",
7
+ "module": "dist/index.mjs",
8
8
  "types": "dist/index.d.ts",
9
9
  "exports": {
10
10
  ".": {
11
11
  "types": "./dist/index.d.ts",
12
- "import": "./dist/index.js",
12
+ "import": "./dist/index.mjs",
13
13
  "require": "./dist/index.cjs"
14
14
  }
15
15
  },
@@ -29,7 +29,7 @@
29
29
  "scripts": {
30
30
  "clean": "rimraf dist",
31
31
  "build": "pnpm run clean && pnpm run build:js && pnpm run build:types",
32
- "build:js": "tsup src/index.ts --sourcemap --format esm,cjs --out-dir dist",
32
+ "build:js": "tsup --config tsup.config.ts",
33
33
  "build:types": "tsc -p tsconfig.build.json",
34
34
  "typecheck": "tsc -p tsconfig.json --noEmit"
35
35
  }
File without changes