@embeddable.com/sdk-core 3.14.0-next.1 → 3.14.0-next.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@embeddable.com/sdk-core",
3
- "version": "3.14.0-next.1",
3
+ "version": "3.14.0-next.2",
4
4
  "description": "Core Embeddable SDK module responsible for web-components bundling and publishing.",
5
5
  "keywords": [
6
6
  "embeddable",
package/src/cleanup.ts CHANGED
@@ -134,7 +134,7 @@ async function extractBuild(ctx: ResolvedEmbeddableConfig) {
134
134
  const lifecycleFiles =
135
135
  (await findFiles(
136
136
  ctx.client.buildDir,
137
- /embeddable-lifecycle-[0-9a-f]+\.js/,
137
+ /embeddable-lifecycle(?:-[0-9a-f]+)?\.js/,
138
138
  )) || [];
139
139
 
140
140
  for (const [, lifecycleFilePath] of lifecycleFiles) {