@modern-js/app-tools 2.53.1-alpha.1 → 2.53.1-alpha.2
Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,28 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __defProp = Object.defineProperty;
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
6
|
+
var __export = (target, all) => {
|
7
|
+
for (var name in all)
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
9
|
+
};
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
12
|
+
for (let key of __getOwnPropNames(from))
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
15
|
+
}
|
16
|
+
return to;
|
17
|
+
};
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
19
|
+
var exports_exports = {};
|
20
|
+
__export(exports_exports, {
|
21
|
+
handleDependencies: () => import_dependencies.handleDependencies
|
22
|
+
});
|
23
|
+
module.exports = __toCommonJS(exports_exports);
|
24
|
+
var import_dependencies = require("./dependencies");
|
25
|
+
// Annotate the CommonJS export names for ESM import in node:
|
26
|
+
0 && (module.exports = {
|
27
|
+
handleDependencies
|
28
|
+
});
|
@@ -0,0 +1 @@
|
|
1
|
+
export { handleDependencies } from './dependencies';
|
package/package.json
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
"modern",
|
16
16
|
"modern.js"
|
17
17
|
],
|
18
|
-
"version": "2.53.1-alpha.
|
18
|
+
"version": "2.53.1-alpha.2",
|
19
19
|
"jsnext:source": "./src/index.ts",
|
20
20
|
"types": "./dist/types/index.d.ts",
|
21
21
|
"main": "./dist/cjs/index.js",
|
@@ -43,6 +43,11 @@
|
|
43
43
|
"types": "./dist/types/exports/server.d.ts",
|
44
44
|
"jsnext:source": "./src/exports/server.ts",
|
45
45
|
"default": "./dist/cjs/exports/server.js"
|
46
|
+
},
|
47
|
+
"./deploy": {
|
48
|
+
"types": "./dist/types/plugins/deploy/exports.d.ts",
|
49
|
+
"jsnext:source": "./src/plugins/deploy/exports.ts",
|
50
|
+
"default": "./dist/cjs/plugins/deploy/exports.js"
|
46
51
|
}
|
47
52
|
},
|
48
53
|
"engines": {
|
@@ -80,20 +85,20 @@
|
|
80
85
|
"mlly": "^1.6.1",
|
81
86
|
"pkg-types": "^1.1.0",
|
82
87
|
"std-env": "^3.7.0",
|
83
|
-
"@modern-js/
|
88
|
+
"@modern-js/plugin-data-loader": "2.53.0",
|
84
89
|
"@modern-js/node-bundle-require": "2.53.0",
|
85
90
|
"@modern-js/plugin": "2.53.0",
|
86
|
-
"@modern-js/plugin-data-loader": "2.53.0",
|
87
91
|
"@modern-js/prod-server": "2.53.0",
|
88
|
-
"@modern-js/plugin-lint": "2.53.0",
|
89
|
-
"@modern-js/plugin-i18n": "2.53.0",
|
90
92
|
"@modern-js/server": "2.53.0",
|
91
|
-
"@modern-js/server-utils": "2.53.0",
|
92
|
-
"@modern-js/rsbuild-plugin-esbuild": "2.53.0",
|
93
|
-
"@modern-js/types": "2.53.0",
|
94
93
|
"@modern-js/server-core": "2.53.0",
|
94
|
+
"@modern-js/core": "2.53.0",
|
95
|
+
"@modern-js/server-utils": "2.53.0",
|
95
96
|
"@modern-js/uni-builder": "2.53.0",
|
96
|
-
"@modern-js/
|
97
|
+
"@modern-js/types": "2.53.0",
|
98
|
+
"@modern-js/utils": "2.53.0",
|
99
|
+
"@modern-js/plugin-i18n": "2.53.0",
|
100
|
+
"@modern-js/plugin-lint": "2.53.0",
|
101
|
+
"@modern-js/rsbuild-plugin-esbuild": "2.53.0"
|
97
102
|
},
|
98
103
|
"devDependencies": {
|
99
104
|
"@rsbuild/plugin-swc": "0.7.3",
|