@embeddable.com/sdk-react 0.0.9 → 0.0.11
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 -7
- package/CHANGELOG.md +16 -0
- package/package.json +1 -1
- package/scripts/build.js +5 -1
- package/scripts/generate.js +1 -1
- package/tsconfig.json +0 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
|
|
2
|
-
> @embeddable.com/sdk-react@0.0.
|
|
2
|
+
> @embeddable.com/sdk-react@0.0.11 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
|
-
[
|
|
11
|
-
[32mcreated [1mlib/index.umd.js[22m in [1m2.5s[22m[39m
|
|
10
|
+
[32mcreated [1mlib/index.umd.js[22m in [1m2.3s[22m[39m
|
|
12
11
|
[36m
|
|
13
12
|
[1m./src/index.ts[22m → [1mlib/index.cjs.js, lib/index.esm.js[22m...[39m
|
|
14
|
-
[
|
|
15
|
-
[32mcreated [1mlib/index.cjs.js, lib/index.esm.js[22m in [1m1.5s[22m[39m
|
|
13
|
+
[32mcreated [1mlib/index.cjs.js, lib/index.esm.js[22m in [1m1.3s[22m[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @embeddable.com/sdk-react
|
|
2
2
|
|
|
3
|
+
## 0.0.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9d238b4: Fix loadData.
|
|
8
|
+
- Updated dependencies [9d238b4]
|
|
9
|
+
- @embeddable.com/sdk-core@0.0.7
|
|
10
|
+
|
|
11
|
+
## 0.0.10
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 46f8ccb: Fix import.
|
|
16
|
+
- Updated dependencies [46f8ccb]
|
|
17
|
+
- @embeddable.com/sdk-core@0.0.6
|
|
18
|
+
|
|
3
19
|
## 0.0.9
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/package.json
CHANGED
package/scripts/build.js
CHANGED
|
@@ -6,7 +6,11 @@ const {createContext} = require("./createContext");
|
|
|
6
6
|
const {prepare} = require("./prepare");
|
|
7
7
|
const {cleanup} = require("./cleanup");
|
|
8
8
|
|
|
9
|
-
const generateFork = fork(
|
|
9
|
+
const generateFork = fork(
|
|
10
|
+
path.resolve(__dirname, 'generate.js'),
|
|
11
|
+
[],
|
|
12
|
+
process.env.NODE_ENV === 'dev' ? undefined : { silent: true }
|
|
13
|
+
);
|
|
10
14
|
|
|
11
15
|
async function build() {
|
|
12
16
|
const ora = (await oraP).default; // TODO: migrate cli to modules/ts and bundle.
|
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);
|