@weaverse/core 1.0.33 → 1.0.34
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/dist/index.js +1 -2
- package/dist/index.mjs +1 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -257,13 +257,12 @@ var Weaverse = class {
|
|
|
257
257
|
mobile: "(max-width: 767.98px)"
|
|
258
258
|
};
|
|
259
259
|
this.initStitches = (externalConfig = {}) => {
|
|
260
|
-
this.stitchesInstance = stitches.createStitches({
|
|
260
|
+
this.stitchesInstance = this.stitchesInstance || stitches.createStitches({
|
|
261
261
|
prefix: "weaverse",
|
|
262
262
|
media: this.mediaBreakPoints,
|
|
263
263
|
utils: stitchesUtils,
|
|
264
264
|
...externalConfig
|
|
265
265
|
});
|
|
266
|
-
console.log("this.stitchesInstance", this.stitchesInstance);
|
|
267
266
|
};
|
|
268
267
|
this.init({
|
|
269
268
|
weaverseHost,
|
package/dist/index.mjs
CHANGED
|
@@ -215,13 +215,12 @@ var Weaverse = class {
|
|
|
215
215
|
mobile: "(max-width: 767.98px)"
|
|
216
216
|
};
|
|
217
217
|
this.initStitches = (externalConfig = {}) => {
|
|
218
|
-
this.stitchesInstance = stitches.createStitches({
|
|
218
|
+
this.stitchesInstance = this.stitchesInstance || stitches.createStitches({
|
|
219
219
|
prefix: "weaverse",
|
|
220
220
|
media: this.mediaBreakPoints,
|
|
221
221
|
utils: stitchesUtils,
|
|
222
222
|
...externalConfig
|
|
223
223
|
});
|
|
224
|
-
console.log("this.stitchesInstance", this.stitchesInstance);
|
|
225
224
|
};
|
|
226
225
|
this.init({
|
|
227
226
|
weaverseHost,
|
package/package.json
CHANGED