@embeddable.com/sdk-core 3.6.0 → 3.7.0-next.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 +2 -1
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +2 -1
- package/lib/index.js.map +1 -1
- package/lib/src/build.d.ts +2 -0
- package/lib/src/build.test.d.ts +1 -0
- package/lib/src/buildTypes.d.ts +4 -0
- package/lib/src/buildTypes.test.d.ts +1 -0
- package/lib/src/cleanup.d.ts +10 -0
- package/lib/src/cleanup.test.d.ts +1 -0
- package/lib/src/createContext.d.ts +20 -0
- package/lib/src/credentials.d.ts +2 -0
- package/lib/src/defineConfig.d.ts +53 -0
- package/lib/src/dev.d.ts +2 -0
- package/lib/src/generate.d.ts +2 -0
- package/lib/src/globalCleanup.d.ts +2 -0
- package/lib/src/index.d.ts +5 -0
- package/lib/src/login.d.ts +4 -0
- package/lib/src/prepare.d.ts +3 -0
- package/lib/src/provideConfig.d.ts +2 -0
- package/lib/src/provideConfig.test.d.ts +1 -0
- package/lib/src/push.d.ts +13 -0
- package/lib/src/utils.d.ts +23 -0
- package/lib/src/utils.test.d.ts +1 -0
- package/lib/src/validate.d.ts +4 -0
- package/lib/src/validate.test.d.ts +1 -0
- package/loader/custom-esm-loader.mjs +47 -25
- package/package.json +1 -1
- 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",
|