@edifice.io/rest-client-base 2.5.4-feat-ENABLING-562.20251216141508 → 2.5.4-feat-ENABLING-562.20251216145848

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edifice.io/rest-client-base",
3
- "version": "2.5.4-feat-ENABLING-562.20251216141508",
3
+ "version": "2.5.4-feat-ENABLING-562.20251216145848",
4
4
  "description": "Abstract base for Edifice client SDKs (no application-specific logic)",
5
5
  "private": false,
6
6
  "license": "AGPL-3.0",
@@ -10,7 +10,7 @@
10
10
  "module": "./dist/browser/index.js",
11
11
  "types": "./dist/node/index.d.ts",
12
12
  "bin": {
13
- "rest-client-base": "./dist/node/cli.js"
13
+ "rest-client-base": "./dist/node/cli.cjs"
14
14
  },
15
15
  "exports": {
16
16
  ".": {
@@ -42,7 +42,7 @@
42
42
  "path": "0.12.7",
43
43
  "vite": "5.4.14",
44
44
  "vite-plugin-dts": "4.5.4",
45
- "@edifice.io/client": "2.5.4-feat-ENABLING-562.20251216141508"
45
+ "@edifice.io/client": "2.5.4-feat-ENABLING-562.20251216145848"
46
46
  },
47
47
  "scripts": {
48
48
  "clean": "rm -rf dist node_modules",
@@ -50,7 +50,7 @@
50
50
  "lint": "eslint src",
51
51
  "lint:fix": "eslint src --fix",
52
52
  "build": "pnpm run build:node && pnpm run build:browser && pnpm run build:react-native",
53
- "build:node": "vite build --config vite.config.node.ts && tsc src/bin/cli.ts --outDir dist/node --module commonjs --target ES2020",
53
+ "build:node": "vite build --config vite.config.node.ts && tsc src/bin/cli.ts --outDir dist/node --module commonjs --target ES2020 && mv dist/node/cli.js dist/node/cli.cjs",
54
54
  "build:browser": "vite build --config vite.config.browser.ts",
55
55
  "build:react-native": "vite build --config vite.config.react-native.ts",
56
56
  "build:types": "tsc --emitDeclarationOnly --outDir dist/node && tsc --emitDeclarationOnly -p tsconfig.browser.json --outDir dist/browser && tsc --emitDeclarationOnly -p tsconfig.browser.json --outDir dist/react-native"
File without changes