@xylabs/libauth 2.12.32 → 2.12.33

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/package.json CHANGED
@@ -52,7 +52,7 @@
52
52
  "url": "https://github.com/xylabs/sdk-js.git"
53
53
  },
54
54
  "sideEffects": false,
55
- "version": "2.12.32",
55
+ "version": "2.12.33",
56
56
  "packageManager": "yarn@3.3.1",
57
57
  "type": "module"
58
58
  }
package/xy.config.ts CHANGED
@@ -4,7 +4,8 @@ const config: XyTsupConfig = {
4
4
  browser: {
5
5
  src: {
6
6
  esbuildOptions: (options) => {
7
- options.minify = true
7
+ options.minifyWhitespace = true
8
+ options.keepNames = true
8
9
  options.sourcemap = false
9
10
  return options
10
11
  },
@@ -15,7 +16,8 @@ const config: XyTsupConfig = {
15
16
  node: {
16
17
  src: {
17
18
  esbuildOptions: (options) => {
18
- options.minify = true
19
+ options.minifyWhitespace = true
20
+ options.keepNames = true
19
21
  options.sourcemap = false
20
22
  return options
21
23
  },