@embeddable.com/sdk-core 3.6.0 → 3.7.0
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/defineConfig.d.ts +4 -1
- package/lib/index.esm.js +5 -3
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +5 -3
- package/lib/index.js.map +1 -1
- package/loader/custom-esm-loader.mjs +47 -25
- package/package.json +3 -2
- package/src/defineConfig.test.ts +1 -0
- package/src/defineConfig.ts +4 -0
package/lib/index.js
CHANGED
|
@@ -20980,7 +20980,7 @@ const getPreviewWorkspace = async (ctx) => {
|
|
|
20980
20980
|
}
|
|
20981
20981
|
};
|
|
20982
20982
|
|
|
20983
|
-
var defineConfig = ({ plugins, pushBaseUrl, audienceUrl, authDomain, authClientId, errorFallbackComponent, applicationEnvironment, rollbarAccessToken, previewBaseUrl, modelsSrc = "src", componentsSrc = "src", viteConfig = {}, }) => {
|
|
20983
|
+
var defineConfig = ({ plugins, pushBaseUrl, audienceUrl, authDomain, authClientId, errorFallbackComponent, applicationEnvironment, rollbarAccessToken, previewBaseUrl, modelsSrc = "src", componentsSrc = "src", viteConfig = {}, rollupOptions = {}, }) => {
|
|
20984
20984
|
const coreRoot = path__namespace.resolve(__dirname, "..");
|
|
20985
20985
|
const clientRoot = process.cwd();
|
|
20986
20986
|
if (!path__namespace.isAbsolute(componentsSrc)) {
|
|
@@ -21015,6 +21015,7 @@ var defineConfig = ({ plugins, pushBaseUrl, audienceUrl, authDomain, authClientI
|
|
|
21015
21015
|
: undefined,
|
|
21016
21016
|
bundleHash: undefined, // This will be set by the build process
|
|
21017
21017
|
viteConfig,
|
|
21018
|
+
rollupOptions,
|
|
21018
21019
|
},
|
|
21019
21020
|
outputOptions: {
|
|
21020
21021
|
typesEntryPointFilename: "embeddable-types-entry-point.js",
|
|
@@ -21031,7 +21032,7 @@ var defineConfig = ({ plugins, pushBaseUrl, audienceUrl, authDomain, authClientI
|
|
|
21031
21032
|
};
|
|
21032
21033
|
|
|
21033
21034
|
var name = "@embeddable.com/sdk-core";
|
|
21034
|
-
var version = "3.
|
|
21035
|
+
var version = "3.7.0";
|
|
21035
21036
|
var description = "Core Embeddable SDK module responsible for web-components bundling and publishing.";
|
|
21036
21037
|
var keywords = [
|
|
21037
21038
|
"embeddable",
|
|
@@ -21049,7 +21050,8 @@ var repository = {
|
|
|
21049
21050
|
var scripts = {
|
|
21050
21051
|
build: "rollup -c",
|
|
21051
21052
|
test: "vitest run",
|
|
21052
|
-
"test:watch": "vitest"
|
|
21053
|
+
"test:watch": "vitest",
|
|
21054
|
+
"license-report": "license-report --output=csv --csvHeaders --fields name --fields link --fields licenseType --fields installedVersion --fields author > license-report-sdk-core-sdk.csv"
|
|
21053
21055
|
};
|
|
21054
21056
|
var author = "Embeddable.com <engineering@embeddable.com>";
|
|
21055
21057
|
var files = [
|