@embeddable.com/sdk-core 3.4.1 → 3.4.2
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/index.esm.js +2 -2
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +2 -2
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
- package/src/dev.ts +4 -1
package/package.json
CHANGED
package/src/dev.ts
CHANGED
|
@@ -233,7 +233,10 @@ const sendDataModelsAndSecurityContextsChanges = async (ctx: any) => {
|
|
|
233
233
|
const sending = ora(
|
|
234
234
|
"Synchronising data models and/or security contexts...",
|
|
235
235
|
).start();
|
|
236
|
-
const filesList = await findFiles(
|
|
236
|
+
const filesList = await findFiles(
|
|
237
|
+
ctx.client.modelsSrc || ctx.client.srcDir,
|
|
238
|
+
YAML_OR_JS_FILES,
|
|
239
|
+
);
|
|
237
240
|
await archive(ctx, filesList, false);
|
|
238
241
|
await sendBuild(ctx, { workspaceId: previewWorkspace, token });
|
|
239
242
|
sending.succeed(`Data models and/or security context synchronized`);
|