Skip to content

Commit 7bd2133

Browse files
authored
Merge pull request #42 from fabiiomiiguel/main
fix: warning about the __NO_SIDE_EFFECTS__ after building with vite
2 parents 247f51f + f9d2266 commit 7bd2133

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

package/dist/vue-web-component-wrapper.es.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { defineComponent as $, nextTick as B, render as A, createVNode as K, h a
77
* (c) 2018-present Yuxi (Evan) You and Vue contributors
88
* @license MIT
99
**/
10-
/*! #__NO_SIDE_EFFECTS__ */
10+
/*!#__NO_SIDE_EFFECTS__*/
1111
process.env.NODE_ENV !== "production" && Object.freeze({});
1212
process.env.NODE_ENV !== "production" && Object.freeze([]);
1313
const z = Object.assign, P = Array.isArray, M = (e) => typeof e == "string", L = (e) => {
@@ -19,7 +19,7 @@ const z = Object.assign, P = Array.isArray, M = (e) => typeof e == "string", L =
1919
const r = M(e) ? Number(e) : NaN;
2020
return isNaN(r) ? e : r;
2121
};
22-
/*! @__NO_SIDE_EFFECTS__ */
22+
/*!#__NO_SIDE_EFFECTS__*/
2323
function F(e, r, t) {
2424
const s = $(e);
2525
class o extends g {

package/dist/vue-web-component-wrapper.umd.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package/src/api-custom-element.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ export function defineCustomElement<P>(
163163
config?: DefineCustomElementConfig
164164
): VueElementConstructor<ExtractPropTypes<P>>
165165

166-
/*! @__NO_SIDE_EFFECTS__ */
166+
/*!#__NO_SIDE_EFFECTS__*/
167167
export function defineCustomElement(
168168
options: any,
169169
config?: DefineCustomElementConfig,
@@ -180,7 +180,7 @@ export function defineCustomElement(
180180
return VueCustomElement
181181
}
182182

183-
/*! @__NO_SIDE_EFFECTS__ */
183+
/*!#__NO_SIDE_EFFECTS__*/
184184
export const defineSSRCustomElement = ((
185185
options: any,
186186
config?: DefineCustomElementConfig

0 commit comments

Comments
 (0)