@xswap-link/sdk 0.6.6 → 0.6.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,5 +1,11 @@
1
1
  # @xswap-link/xswap-sdk
2
2
 
3
+ ## 0.6.7
4
+
5
+ ### Patch Changes
6
+
7
+ - 4462cb6: feat: remove source maps
8
+
3
9
  ## 0.6.6
4
10
 
5
11
  ### Patch Changes
@@ -1215,4 +1215,3 @@ lit-html/directives/if-defined.js:
1215
1215
  * SPDX-License-Identifier: BSD-3-Clause
1216
1216
  *)
1217
1217
  */
1218
- //# sourceMappingURL=index.global.js.map
package/dist/index.js CHANGED
@@ -102,4 +102,3 @@ js-sha3/src/sha3.js:
102
102
  * @license MIT
103
103
  *)
104
104
  */
105
- //# sourceMappingURL=index.js.map
package/dist/index.mjs CHANGED
@@ -102,4 +102,3 @@ js-sha3/src/sha3.js:
102
102
  * @license MIT
103
103
  *)
104
104
  */
105
- //# sourceMappingURL=index.mjs.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xswap-link/sdk",
3
- "version": "0.6.6",
3
+ "version": "0.6.7",
4
4
  "description": "JavaScript SDK for XSwap platform",
5
5
  "homepage": "https://github.com/xswap-link/xswap-sdk",
6
6
  "repository": {
package/tsup.config.ts CHANGED
@@ -10,7 +10,7 @@ export default defineConfig(() => {
10
10
  clean: true,
11
11
  minify: true,
12
12
  splitting: false,
13
- sourcemap: true,
13
+ sourcemap: false,
14
14
  noExternal: ["ethers"],
15
15
  outDir: "dist",
16
16
  esbuildOptions(options) {
@@ -37,7 +37,7 @@ export default defineConfig(() => {
37
37
  globalName: "XPay",
38
38
  minify: true,
39
39
  splitting: false,
40
- sourcemap: true,
40
+ sourcemap: false,
41
41
  target: "chrome110.0",
42
42
  outDir: "dist",
43
43
  platform: "browser",