@embeddable.com/sdk-core 3.9.7 → 3.9.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@embeddable.com/sdk-core",
3
- "version": "3.9.7",
3
+ "version": "3.9.8",
4
4
  "description": "Core Embeddable SDK module responsible for web-components bundling and publishing.",
5
5
  "keywords": [
6
6
  "embeddable",
package/src/dev.ts CHANGED
@@ -275,7 +275,7 @@ const onBundleBuildEnd = async (ctx: any) => {
275
275
  const dataModelAndSecurityContextWatcher = (ctx: any): FSWatcher => {
276
276
  const fsWatcher = chokidar.watch(
277
277
  [
278
- path.resolve(ctx.client.modelsSrc, "**/*.{cube}.{yaml,yml,js}"),
278
+ path.resolve(ctx.client.modelsSrc, "**/*.cube.{yaml,yml,js}"),
279
279
  path.resolve(ctx.client.presetsSrc, "**/*.{sc,cc}.{yaml,yml}"),
280
280
  ],
281
281
  chokidarWatchOptions,