@embeddable.com/sdk-core 4.0.3-next.0 → 4.0.3
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.js +22627 -0
- package/lib/index.js.map +1 -0
- package/package.json +1 -1
- package/src/defineConfig.ts +4 -4
package/package.json
CHANGED
package/src/defineConfig.ts
CHANGED
|
@@ -224,7 +224,7 @@ export default (config: EmbeddableConfig) => {
|
|
|
224
224
|
|
|
225
225
|
if (!existsSync(componentsSrc)) {
|
|
226
226
|
throw new Error(
|
|
227
|
-
`componentsSrc directory ${componentsSrc} does not exist
|
|
227
|
+
`componentsSrc directory ${componentsSrc} does not exist`
|
|
228
228
|
);
|
|
229
229
|
}
|
|
230
230
|
}
|
|
@@ -262,19 +262,19 @@ export default (config: EmbeddableConfig) => {
|
|
|
262
262
|
webComponentRoot: path.resolve(
|
|
263
263
|
clientRoot,
|
|
264
264
|
".embeddable-build",
|
|
265
|
-
"web-component"
|
|
265
|
+
"web-component"
|
|
266
266
|
),
|
|
267
267
|
componentDir: path.resolve(
|
|
268
268
|
clientRoot,
|
|
269
269
|
".embeddable-build",
|
|
270
270
|
"web-component",
|
|
271
|
-
"component"
|
|
271
|
+
"component"
|
|
272
272
|
),
|
|
273
273
|
stencilBuild: path.resolve(
|
|
274
274
|
clientRoot,
|
|
275
275
|
".embeddable-build",
|
|
276
276
|
"dist",
|
|
277
|
-
"embeddable-wrapper"
|
|
277
|
+
"embeddable-wrapper"
|
|
278
278
|
),
|
|
279
279
|
archiveFile: path.resolve(clientRoot, "embeddable-build.zip"),
|
|
280
280
|
errorFallbackComponent: errorFallbackComponent
|