@embeddable.com/sdk-react 0.0.8 → 0.0.10
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/.turbo/turbo-build.log +5 -5
- package/CHANGELOG.md +16 -0
- package/package.json +2 -9
- package/scripts/generate.js +1 -1
- package/tsconfig.json +6 -1
- package/src/index.d.ts +0 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
|
|
2
|
-
> @embeddable.com/sdk-react@0.0.
|
|
2
|
+
> @embeddable.com/sdk-react@0.0.10 build
|
|
3
3
|
> rollup -c
|
|
4
4
|
|
|
5
|
-
(node:
|
|
5
|
+
(node:1884) ExperimentalWarning: Import assertions are not a stable feature of the JavaScript language. Avoid relying on their current behavior and syntax as those might change in a future version of Node.js.
|
|
6
6
|
(Use `node --trace-warnings ...` to show where the warning was created)
|
|
7
|
-
(node:
|
|
7
|
+
(node:1884) ExperimentalWarning: Importing JSON modules is an experimental feature and might change at any time
|
|
8
8
|
[36m
|
|
9
9
|
[1m./src/index.ts[22m → [1mlib/index.umd.js[22m...[39m
|
|
10
10
|
[1m[33m(!) Plugin typescript: @rollup/plugin-typescript: Rollup 'sourcemap' option must be set to generate source maps.[39m[22m
|
|
11
|
-
[32mcreated [1mlib/index.umd.js[22m in [1m2.
|
|
11
|
+
[32mcreated [1mlib/index.umd.js[22m in [1m2.9s[22m[39m
|
|
12
12
|
[36m
|
|
13
13
|
[1m./src/index.ts[22m → [1mlib/index.cjs.js, lib/index.esm.js[22m...[39m
|
|
14
14
|
[1m[33m(!) Plugin typescript: @rollup/plugin-typescript: Rollup 'sourcemap' option must be set to generate source maps.[39m[22m
|
|
15
|
-
[32mcreated [1mlib/index.cjs.js, lib/index.esm.js[22m in [1m1.
|
|
15
|
+
[32mcreated [1mlib/index.cjs.js, lib/index.esm.js[22m in [1m1.7s[22m[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @embeddable.com/sdk-react
|
|
2
2
|
|
|
3
|
+
## 0.0.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 46f8ccb: Fix import.
|
|
8
|
+
- Updated dependencies [46f8ccb]
|
|
9
|
+
- @embeddable.com/sdk-core@0.0.6
|
|
10
|
+
|
|
11
|
+
## 0.0.9
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 124ff74: Move loadData to core. Add axios.
|
|
16
|
+
- Updated dependencies [124ff74]
|
|
17
|
+
- @embeddable.com/sdk-core@0.0.5
|
|
18
|
+
|
|
3
19
|
## 0.0.8
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@embeddable.com/sdk-react",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"description": "Embeddable SDK React plugin/module responsible for React components bundling.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"embeddable",
|
|
@@ -28,19 +28,12 @@
|
|
|
28
28
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@rollup/plugin-commonjs": "^25.0.2",
|
|
32
|
-
"@rollup/plugin-node-resolve": "^15.1.0",
|
|
33
|
-
"@rollup/plugin-replace": "^5.0.2",
|
|
34
|
-
"@rollup/plugin-typescript": "^11.1.2",
|
|
35
31
|
"@types/react": "^18.2.14",
|
|
36
|
-
"react": "^18.2.0"
|
|
37
|
-
"rollup": "^3.26.0",
|
|
38
|
-
"typescript": "^5.1.6"
|
|
32
|
+
"react": "^18.2.0"
|
|
39
33
|
},
|
|
40
34
|
"dependencies": {
|
|
41
35
|
"@embeddable.com/sdk-core": "*",
|
|
42
36
|
"@vitejs/plugin-react": "^4.0.2",
|
|
43
|
-
"ora": "^6.3.1",
|
|
44
37
|
"vite": "^4.4.2"
|
|
45
38
|
}
|
|
46
39
|
}
|
package/scripts/generate.js
CHANGED
|
@@ -2,7 +2,7 @@ const fs = require("fs/promises");
|
|
|
2
2
|
const path = require("path");
|
|
3
3
|
const vite = require("vite");
|
|
4
4
|
const viteReactPlugin = require('@vitejs/plugin-react');
|
|
5
|
-
const core = require("@embeddable.com/sdk-core/
|
|
5
|
+
const core = require("@embeddable.com/sdk-core/scripts/build");
|
|
6
6
|
|
|
7
7
|
process.on('message', async ({ ctx }) => {
|
|
8
8
|
await generate(ctx);
|
package/tsconfig.json
CHANGED
package/src/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { connectWidget } from './connectWidget';
|