@embeddable.com/sdk-react 3.2.0-next.4 → 3.2.0-next.6
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/lib/build.d.ts +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.esm.js +1 -1
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
package/lib/build.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: (ctx: any) => Promise<
|
|
1
|
+
declare const _default: (ctx: any) => Promise<import("rollup").RollupOutput | import("rollup").RollupOutput[] | import("rollup").RollupWatcher>;
|
|
2
2
|
export default _default;
|
package/lib/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const _default: () => {
|
|
2
2
|
pluginName: string;
|
|
3
3
|
validate: () => Promise<void>;
|
|
4
|
-
build: (ctx: any) => Promise<
|
|
4
|
+
build: (ctx: any) => Promise<import("rollup").RollupOutput | import("rollup").RollupOutput[] | import("rollup").RollupWatcher>;
|
|
5
5
|
cleanup: (ctx: any) => Promise<void>;
|
|
6
6
|
};
|
|
7
7
|
export default _default;
|
package/lib/index.esm.js
CHANGED
|
@@ -1122,7 +1122,7 @@ async function prepareEntrypoint(ctx, filesList) {
|
|
|
1122
1122
|
|
|
1123
1123
|
var build = async (ctx) => {
|
|
1124
1124
|
createContext(path$1.resolve(__dirname, ".."), ctx);
|
|
1125
|
-
|
|
1125
|
+
return generate(ctx);
|
|
1126
1126
|
};
|
|
1127
1127
|
|
|
1128
1128
|
var cleanup = async (ctx) => {
|