hot-updater 0.12.5 → 0.12.7
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/config.cjs +3 -5
- package/dist/index.cjs +399 -75
- package/dist/index.js +399 -75
- package/dist/plugins/babel.cjs +5 -11
- package/package.json +4 -4
package/dist/plugins/babel.cjs
CHANGED
|
@@ -16788,12 +16788,8 @@ function __webpack_require__(moduleId) {
|
|
|
16788
16788
|
return module.exports;
|
|
16789
16789
|
}
|
|
16790
16790
|
(()=>{
|
|
16791
|
-
__webpack_require__.n =
|
|
16792
|
-
var getter = module && module.__esModule ?
|
|
16793
|
-
return module['default'];
|
|
16794
|
-
} : function() {
|
|
16795
|
-
return module;
|
|
16796
|
-
};
|
|
16791
|
+
__webpack_require__.n = (module)=>{
|
|
16792
|
+
var getter = module && module.__esModule ? ()=>module['default'] : ()=>module;
|
|
16797
16793
|
__webpack_require__.d(getter, {
|
|
16798
16794
|
a: getter
|
|
16799
16795
|
});
|
|
@@ -16801,7 +16797,7 @@ function __webpack_require__(moduleId) {
|
|
|
16801
16797
|
};
|
|
16802
16798
|
})();
|
|
16803
16799
|
(()=>{
|
|
16804
|
-
__webpack_require__.d =
|
|
16800
|
+
__webpack_require__.d = (exports1, definition)=>{
|
|
16805
16801
|
for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
|
|
16806
16802
|
enumerable: true,
|
|
16807
16803
|
get: definition[key]
|
|
@@ -16809,12 +16805,10 @@ function __webpack_require__(moduleId) {
|
|
|
16809
16805
|
};
|
|
16810
16806
|
})();
|
|
16811
16807
|
(()=>{
|
|
16812
|
-
__webpack_require__.o =
|
|
16813
|
-
return Object.prototype.hasOwnProperty.call(obj, prop);
|
|
16814
|
-
};
|
|
16808
|
+
__webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
|
|
16815
16809
|
})();
|
|
16816
16810
|
(()=>{
|
|
16817
|
-
__webpack_require__.r =
|
|
16811
|
+
__webpack_require__.r = (exports1)=>{
|
|
16818
16812
|
if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
|
|
16819
16813
|
value: 'Module'
|
|
16820
16814
|
});
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hot-updater",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.12.
|
|
4
|
+
"version": "0.12.7",
|
|
5
5
|
"bin": {
|
|
6
6
|
"hot-updater": "./dist/index.js"
|
|
7
7
|
},
|
|
@@ -49,9 +49,9 @@
|
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@clack/prompts": "^0.9.0",
|
|
52
|
-
"@hot-updater/console": "0.12.
|
|
53
|
-
"@hot-updater/core": "0.12.
|
|
54
|
-
"@hot-updater/plugin-core": "0.12.
|
|
52
|
+
"@hot-updater/console": "0.12.7",
|
|
53
|
+
"@hot-updater/core": "0.12.7",
|
|
54
|
+
"@hot-updater/plugin-core": "0.12.7",
|
|
55
55
|
"commander": "^11.1.0",
|
|
56
56
|
"cosmiconfig": "^9.0.0",
|
|
57
57
|
"cosmiconfig-typescript-loader": "^5.0.0"
|