@tivio/sdk-react 3.6.1 → 3.7.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/README.md +84 -228
- package/README.md.bak +84 -228
- package/dist/index.d.ts +978 -160
- package/dist/index.js +1 -1
- package/dist/sdk-react.d.ts +2661 -0
- package/doc/changelog.md +0 -0
- package/package.json +6 -5
package/doc/changelog.md
ADDED
File without changes
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@tivio/sdk-react",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.7.0",
|
4
4
|
"main": "dist/index.js",
|
5
5
|
"typings": "dist/index.d.ts",
|
6
6
|
"source": "src/index.ts",
|
@@ -9,13 +9,14 @@
|
|
9
9
|
"access": "public"
|
10
10
|
},
|
11
11
|
"scripts": {
|
12
|
-
"build": "
|
13
|
-
"build:dev": "
|
12
|
+
"build": "yarn clean && webpack",
|
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",
|
14
15
|
"build:local": "bash ./scripts/build_with_local_bundle.sh && yarn typesRollup",
|
15
16
|
"start": "yarn ts-node ./scripts/start.ts",
|
16
17
|
"test": "jest --config=./jest.config.js --coverage",
|
17
18
|
"clean": "rm -rf dist",
|
18
|
-
"prepublishOnly": "yarn && yarn
|
19
|
+
"prepublishOnly": "yarn && yarn build:prod && yarn ts-node ./scripts/prepublish.ts",
|
19
20
|
"postpublish": "yarn ts-node ./scripts/postpublish.ts",
|
20
21
|
"publish:alpha": "npm publish --tag alpha",
|
21
22
|
"check:cycles": "npx madge --circular src/**/*",
|
@@ -29,7 +30,7 @@
|
|
29
30
|
"@material-ui/core": "^4.11.2",
|
30
31
|
"@material-ui/icons": "^4.11.2",
|
31
32
|
"@sentry/browser": "^6.1.0",
|
32
|
-
"@tivio/common": "1.1.
|
33
|
+
"@tivio/common": "1.1.94",
|
33
34
|
"dayjs": "^1.11.0",
|
34
35
|
"es7-object-polyfill": "^1.0.1",
|
35
36
|
"firebase": "8.10.1",
|