oro-sdk 3.26.0 → 5.0.0

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.
Files changed (1) hide show
  1. package/package.json +7 -6
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "3.26.0",
2
+ "version": "5.0.0",
3
3
  "main": "dist/index.js",
4
4
  "typings": "dist/index.d.ts",
5
5
  "files": [
@@ -14,13 +14,14 @@
14
14
  "link:watch": "npm link && tsdx watch",
15
15
  "link:watch:apis": "npm link oro-sdk-apis && npm link && tsdx watch",
16
16
  "start": "tsdx watch",
17
- "build": "tsdx build",
17
+ "build:dep": "npm install tsdx@\"^0.14.1\"",
18
+ "build": "npm run build:dep && tsdx build",
18
19
  "test": "tsdx test",
19
20
  "lint": "tsdx lint",
20
- "prepare": "tsdx build",
21
+ "prepare": "npm run build",
21
22
  "size": "size-limit",
22
23
  "analyze": "size-limit --why",
23
- "package": "tsdx build && npm publish",
24
+ "package": "npm run build && npm publish",
24
25
  "pretty": "prettier --config ../../.prettierrc.yaml --write './src/**/*.{ts,js,json,md}' && prettier --write './*.md'"
25
26
  },
26
27
  "name": "oro-sdk",
@@ -54,8 +55,8 @@
54
55
  "form-data": "^4.0.0",
55
56
  "formdata-node": "^4.3.1",
56
57
  "idb-keyval": "^5.0.6",
57
- "oro-sdk-apis": "1.58.0",
58
+ "oro-sdk-apis": "3.0.0",
58
59
  "oro-toolbox": "0.0.6",
59
60
  "uuid": "^8.3.2"
60
61
  }
61
- }
62
+ }