@tivio/sdk-js 2.3.3-beta.0 → 2.4.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tivio/sdk-js",
3
- "version": "2.3.3-beta.0",
3
+ "version": "2.4.0",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
6
6
  "source": "src/index.ts",
@@ -10,9 +10,13 @@
10
10
  },
11
11
  "scripts": {
12
12
  "build": "yarn clean && webpack",
13
- "build:prod": "cat ./.env.prod > ./.env && yarn build --config=webpack.config.prod.js && yarn typesRollup",
14
13
  "build:dev": "cat ./.env.dev > ./.env && yarn build --config=webpack.config.dev.js && yarn typesRollup",
14
+ "build:prod": "cat ./.env.prod > ./.env && yarn build --config=webpack.config.prod.js && yarn typesRollup",
15
+ "turbo:build:libs:dev": "yarn build:dev",
16
+ "turbo:build:libs:prod": "yarn build:prod",
17
+ "build:ci": "yarn build:prod",
15
18
  "test": "yarn jest --config=./jest.config.js",
19
+ "test:ci": "yarn test",
16
20
  "start": "webpack -w",
17
21
  "clean": "rm -rf dist",
18
22
  "prepublishOnly": "yarn && rm -rf ./dist && yarn build:prod",
@@ -21,14 +25,16 @@
21
25
  "dependencies": {
22
26
  "@sentry/browser": "^6.1.0",
23
27
  "@tivio/common": "*",
28
+ "@tivio/core-js": "*",
24
29
  "core-js": "^3.21.0",
25
30
  "mobx": "^6.0.4",
26
31
  "whatwg-fetch": "^3.6.2"
27
32
  },
28
33
  "devDependencies": {
29
34
  "@microsoft/api-extractor": "^7.39.1",
35
+ "@tivio/build-utils": "*",
30
36
  "@tivio/types": "*",
31
- "@types/jest": "^27.5.2",
37
+ "@types/jest": "^29.5.12",
32
38
  "@types/node": "^14.14.21",
33
39
  "@types/node-fetch": "^2.5.8",
34
40
  "@typescript-eslint/eslint-plugin": "^5.30.5",
@@ -37,10 +43,10 @@
37
43
  "dotenv": "^9.0.0",
38
44
  "dotenv-webpack": "^7.0.3",
39
45
  "fork-ts-checker-webpack-plugin": "^7.0.0",
40
- "jest": "^27.5.1",
41
- "jest-cli": "^27.5.1",
46
+ "jest": "^29.7.0",
47
+ "jest-cli": "^29.7.0",
42
48
  "jest-fetch-mock": "^3.0.3",
43
- "ts-jest": "^27.1.5",
49
+ "ts-jest": "^29.1.4",
44
50
  "typescript": "^5"
45
51
  }
46
52
  }