hybridly 0.7.19 → 0.8.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/dist/index.cjs +7 -0
- package/dist/vite.cjs +7 -0
- package/dist/vite.d.cts +2 -1
- package/dist/vite.d.ts +2 -1
- package/dist/vue.cjs +7 -0
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -4,6 +4,13 @@ const core = require('@hybridly/core');
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
+
Object.prototype.hasOwnProperty.call(core, '__proto__') &&
|
|
8
|
+
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
9
|
+
Object.defineProperty(exports, '__proto__', {
|
|
10
|
+
enumerable: true,
|
|
11
|
+
value: core['__proto__']
|
|
12
|
+
});
|
|
13
|
+
|
|
7
14
|
Object.keys(core).forEach(function (k) {
|
|
8
15
|
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = core[k];
|
|
9
16
|
});
|
package/dist/vite.cjs
CHANGED
|
@@ -11,6 +11,13 @@ const vite__default = /*#__PURE__*/_interopDefaultCompat(vite);
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
exports.default = vite__default;
|
|
14
|
+
Object.prototype.hasOwnProperty.call(vite, '__proto__') &&
|
|
15
|
+
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
16
|
+
Object.defineProperty(exports, '__proto__', {
|
|
17
|
+
enumerable: true,
|
|
18
|
+
value: vite['__proto__']
|
|
19
|
+
});
|
|
20
|
+
|
|
14
21
|
Object.keys(vite).forEach(function (k) {
|
|
15
22
|
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = vite[k];
|
|
16
23
|
});
|
package/dist/vite.d.cts
CHANGED
package/dist/vite.d.ts
CHANGED
package/dist/vue.cjs
CHANGED
|
@@ -4,6 +4,13 @@ const vue = require('@hybridly/vue');
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
+
Object.prototype.hasOwnProperty.call(vue, '__proto__') &&
|
|
8
|
+
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
9
|
+
Object.defineProperty(exports, '__proto__', {
|
|
10
|
+
enumerable: true,
|
|
11
|
+
value: vue['__proto__']
|
|
12
|
+
});
|
|
13
|
+
|
|
7
14
|
Object.keys(vue).forEach(function (k) {
|
|
8
15
|
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = vue[k];
|
|
9
16
|
});
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hybridly",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.8.0",
|
|
5
5
|
"description": "Solution to develop server-driven, client-rendered applications",
|
|
6
6
|
"author": "Enzo Innocenzi <enzo@innocenzi.dev>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
"dist"
|
|
52
52
|
],
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@hybridly/
|
|
55
|
-
"@hybridly/
|
|
56
|
-
"@hybridly/
|
|
54
|
+
"@hybridly/vite": "0.8.0",
|
|
55
|
+
"@hybridly/core": "0.8.0",
|
|
56
|
+
"@hybridly/vue": "0.8.0"
|
|
57
57
|
},
|
|
58
58
|
"scripts": {
|
|
59
59
|
"build": "unbuild",
|