@cloudbase/framework-plugin-low-code 1.7.2 → 1.7.3
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/lib/builder/config/common.d.ts +2 -0
- package/lib/builder/config/common.d.ts.map +1 -0
- package/lib/builder/config/common.js +13 -0
- package/lib/builder/config/index.d.ts +3 -0
- package/lib/builder/config/index.d.ts.map +1 -0
- package/lib/builder/config/index.js +29 -0
- package/lib/builder/config/mp.d.ts +2 -0
- package/lib/builder/config/mp.d.ts.map +1 -0
- package/lib/builder/config/mp.js +13 -0
- package/lib/builder/core/copy.d.ts +5 -0
- package/lib/builder/core/copy.d.ts.map +1 -0
- package/lib/builder/core/copy.js +62 -0
- package/lib/builder/core/generate.d.ts +9 -0
- package/lib/builder/core/generate.d.ts.map +1 -0
- package/lib/builder/core/generate.js +128 -0
- package/lib/builder/core/index.d.ts +32 -0
- package/lib/builder/core/index.d.ts.map +1 -0
- package/lib/builder/core/index.js +149 -0
- package/lib/builder/core/material.d.ts +4 -0
- package/lib/builder/core/material.d.ts.map +1 -0
- package/lib/builder/core/material.js +80 -0
- package/lib/builder/core/plugin.d.ts +4 -0
- package/lib/builder/core/plugin.d.ts.map +1 -0
- package/lib/builder/core/plugin.js +30 -0
- package/lib/builder/core/prepare.d.ts +8 -0
- package/lib/builder/core/prepare.d.ts.map +1 -0
- package/lib/builder/core/prepare.js +108 -0
- package/lib/builder/core/webpack.d.ts +15 -0
- package/lib/builder/core/webpack.d.ts.map +1 -0
- package/lib/builder/core/webpack.js +58 -0
- package/lib/builder/mp/BuildContext.d.ts +13 -0
- package/lib/builder/mp/BuildContext.d.ts.map +1 -0
- package/lib/builder/mp/BuildContext.js +2 -0
- package/lib/builder/mp/index.d.ts +33 -0
- package/lib/builder/mp/index.d.ts.map +1 -0
- package/lib/builder/mp/index.js +450 -0
- package/lib/builder/mp/lowcode.d.ts +8 -0
- package/lib/builder/mp/lowcode.d.ts.map +1 -0
- package/lib/builder/mp/lowcode.js +54 -0
- package/lib/builder/mp/materials.d.ts +15 -0
- package/lib/builder/mp/materials.d.ts.map +1 -0
- package/lib/builder/mp/materials.js +338 -0
- package/lib/builder/mp/mixMode.d.ts +10 -0
- package/lib/builder/mp/mixMode.d.ts.map +1 -0
- package/lib/builder/mp/mixMode.js +215 -0
- package/lib/builder/mp/mp_config.d.ts +18 -0
- package/lib/builder/mp/mp_config.d.ts.map +1 -0
- package/lib/builder/mp/mp_config.js +206 -0
- package/lib/builder/mp/util.d.ts +20 -0
- package/lib/builder/mp/util.d.ts.map +1 -0
- package/lib/builder/mp/util.js +243 -0
- package/lib/builder/mp/wxml.d.ts +16 -0
- package/lib/builder/mp/wxml.d.ts.map +1 -0
- package/lib/builder/mp/wxml.js +300 -0
- package/lib/builder/service/builder/copy.d.ts +14 -0
- package/lib/builder/service/builder/copy.d.ts.map +1 -0
- package/lib/builder/service/builder/copy.js +189 -0
- package/lib/builder/service/builder/generate.d.ts +52 -0
- package/lib/builder/service/builder/generate.d.ts.map +1 -0
- package/lib/builder/service/builder/generate.js +792 -0
- package/lib/builder/service/builder/index.d.ts +16 -0
- package/lib/builder/service/builder/index.d.ts.map +1 -0
- package/lib/builder/service/builder/index.js +69 -0
- package/lib/builder/service/builder/plugin.d.ts +8 -0
- package/lib/builder/service/builder/plugin.d.ts.map +1 -0
- package/lib/builder/service/builder/plugin.js +149 -0
- package/lib/builder/service/builder/webpack.d.ts +91 -0
- package/lib/builder/service/builder/webpack.d.ts.map +1 -0
- package/lib/builder/service/builder/webpack.js +589 -0
- package/lib/builder/types/common.d.ts +12 -0
- package/lib/builder/types/common.d.ts.map +1 -0
- package/lib/builder/types/common.js +7 -0
- package/lib/builder/util/common.d.ts +36 -0
- package/lib/builder/util/common.d.ts.map +1 -0
- package/lib/builder/util/common.js +257 -0
- package/lib/builder/util/console.d.ts +2 -0
- package/lib/builder/util/console.d.ts.map +1 -0
- package/lib/builder/util/console.js +13 -0
- package/lib/builder/util/generateFiles.d.ts +6 -0
- package/lib/builder/util/generateFiles.d.ts.map +1 -0
- package/lib/builder/util/generateFiles.js +94 -0
- package/lib/builder/util/index.d.ts +2 -0
- package/lib/builder/util/index.d.ts.map +1 -0
- package/lib/builder/util/index.js +13 -0
- package/lib/builder/util/junk.d.ts +3 -0
- package/lib/builder/util/junk.d.ts.map +1 -0
- package/lib/builder/util/junk.js +25 -0
- package/lib/builder/util/mp.d.ts +5 -0
- package/lib/builder/util/mp.d.ts.map +1 -0
- package/lib/builder/util/mp.js +99 -0
- package/lib/builder/util/name-mangler.d.ts +3 -0
- package/lib/builder/util/name-mangler.d.ts.map +1 -0
- package/lib/builder/util/name-mangler.js +7 -0
- package/lib/builder/util/net.d.ts +3 -0
- package/lib/builder/util/net.d.ts.map +1 -0
- package/lib/builder/util/net.js +54 -0
- package/lib/builder/util/process.d.ts +9 -0
- package/lib/builder/util/process.d.ts.map +1 -0
- package/lib/builder/util/process.js +28 -0
- package/lib/builder/util/style.d.ts +2 -0
- package/lib/builder/util/style.d.ts.map +1 -0
- package/lib/builder/util/style.js +13 -0
- package/lib/builder/util/weapp.d.ts +2 -0
- package/lib/builder/util/weapp.d.ts.map +1 -0
- package/lib/builder/util/weapp.js +13 -0
- package/lib/config/private.d.ts +3 -0
- package/lib/config/private.d.ts.map +1 -0
- package/lib/config/private.js +14 -0
- package/lib/generate.d.ts +2 -0
- package/lib/generate.d.ts.map +1 -0
- package/lib/generate.js +49 -0
- package/lib/generator/config/common.d.ts +6 -0
- package/lib/generator/config/common.d.ts.map +1 -0
- package/lib/generator/config/common.js +25 -0
- package/lib/generator/config/index.d.ts +18 -0
- package/lib/generator/config/index.d.ts.map +1 -0
- package/lib/generator/config/index.js +43 -0
- package/lib/generator/config/mp.d.ts +56 -0
- package/lib/generator/config/mp.d.ts.map +1 -0
- package/lib/generator/config/mp.js +104 -0
- package/lib/generator/core/generate.d.ts +59 -0
- package/lib/generator/core/generate.d.ts.map +1 -0
- package/lib/generator/core/generate.js +663 -0
- package/lib/generator/core/index.d.ts +25 -0
- package/lib/generator/core/index.d.ts.map +1 -0
- package/lib/generator/core/index.js +102 -0
- package/lib/generator/core/material.d.ts +14 -0
- package/lib/generator/core/material.d.ts.map +1 -0
- package/lib/generator/core/material.js +230 -0
- package/lib/generator/template.d.ts +3 -0
- package/lib/generator/template.d.ts.map +1 -0
- package/lib/generator/template.js +3 -0
- package/lib/generator/types/common.d.ts +69 -0
- package/lib/generator/types/common.d.ts.map +1 -0
- package/lib/generator/types/common.js +21 -0
- package/lib/generator/util/common.d.ts +36 -0
- package/lib/generator/util/common.d.ts.map +1 -0
- package/lib/generator/util/common.js +238 -0
- package/lib/generator/util/console.d.ts +3 -0
- package/lib/generator/util/console.d.ts.map +1 -0
- package/lib/generator/util/console.js +17 -0
- package/lib/generator/util/index.d.ts +2 -0
- package/lib/generator/util/index.d.ts.map +1 -0
- package/lib/generator/util/index.js +13 -0
- package/lib/generator/util/name-mangler.d.ts +17 -0
- package/lib/generator/util/name-mangler.d.ts.map +1 -0
- package/lib/generator/util/name-mangler.js +63 -0
- package/lib/generator/util/postcss-rpx.d.ts +11 -0
- package/lib/generator/util/postcss-rpx.d.ts.map +1 -0
- package/lib/generator/util/postcss-rpx.js +16 -0
- package/lib/generator/util/style.d.ts +6 -0
- package/lib/generator/util/style.d.ts.map +1 -0
- package/lib/generator/util/style.js +92 -0
- package/lib/generator/util/weapp.d.ts +5 -0
- package/lib/generator/util/weapp.d.ts.map +1 -0
- package/lib/generator/util/weapp.js +17 -0
- package/lib/index.d.ts +0 -0
- package/lib/index.d.ts.map +0 -0
- package/lib/index.js +0 -0
- package/lib/types.d.ts +14 -0
- package/lib/types.d.ts.map +1 -0
- package/lib/types.js +19 -0
- package/lib/utils/common.d.ts +0 -0
- package/lib/utils/common.d.ts.map +0 -0
- package/lib/utils/common.js +0 -0
- package/lib/utils/dataSource.d.ts +28 -0
- package/lib/utils/dataSource.d.ts.map +1 -0
- package/lib/utils/dataSource.js +171 -0
- package/lib/utils/index.d.ts +0 -0
- package/lib/utils/index.d.ts.map +0 -0
- package/lib/utils/index.js +0 -0
- package/lib/utils/postProcess.d.ts +3 -0
- package/lib/utils/postProcess.d.ts.map +1 -0
- package/lib/utils/postProcess.js +48 -0
- package/lib/weapps-core/config/index.d.ts +2 -0
- package/lib/weapps-core/config/index.d.ts.map +1 -0
- package/lib/weapps-core/config/index.js +13 -0
- package/lib/weapps-core/config/style.d.ts +7 -0
- package/lib/weapps-core/config/style.d.ts.map +1 -0
- package/lib/weapps-core/config/style.js +70 -0
- package/lib/weapps-core/index.d.ts +6 -0
- package/lib/weapps-core/index.d.ts.map +1 -0
- package/lib/weapps-core/index.js +31 -0
- package/lib/weapps-core/types/action.d.ts +25 -0
- package/lib/weapps-core/types/action.d.ts.map +1 -0
- package/lib/weapps-core/types/action.js +28 -0
- package/lib/weapps-core/types/app.d.ts +142 -0
- package/lib/weapps-core/types/app.d.ts.map +1 -0
- package/lib/weapps-core/types/app.js +21 -0
- package/lib/weapps-core/types/appbuild.d.ts +63 -0
- package/lib/weapps-core/types/appbuild.d.ts.map +1 -0
- package/lib/weapps-core/types/appbuild.js +78 -0
- package/lib/weapps-core/types/code_types.d.ts +26 -0
- package/lib/weapps-core/types/code_types.d.ts.map +1 -0
- package/lib/weapps-core/types/code_types.js +2 -0
- package/lib/weapps-core/types/git.d.ts +7 -0
- package/lib/weapps-core/types/git.d.ts.map +1 -0
- package/lib/weapps-core/types/git.js +2 -0
- package/lib/weapps-core/types/index.d.ts +11 -0
- package/lib/weapps-core/types/index.d.ts.map +1 -0
- package/lib/weapps-core/types/index.js +22 -0
- package/lib/weapps-core/types/lowcode.d.ts +26 -0
- package/lib/weapps-core/types/lowcode.d.ts.map +1 -0
- package/lib/weapps-core/types/lowcode.js +25 -0
- package/lib/weapps-core/types/material.d.ts +90 -0
- package/lib/weapps-core/types/material.d.ts.map +1 -0
- package/lib/weapps-core/types/material.js +9 -0
- package/lib/weapps-core/types/plugins.d.ts +17 -0
- package/lib/weapps-core/types/plugins.d.ts.map +1 -0
- package/lib/weapps-core/types/plugins.js +2 -0
- package/lib/weapps-core/types/style.d.ts +93 -0
- package/lib/weapps-core/types/style.d.ts.map +1 -0
- package/lib/weapps-core/types/style.js +2 -0
- package/lib/weapps-core/types/web.d.ts +120 -0
- package/lib/weapps-core/types/web.d.ts.map +1 -0
- package/lib/weapps-core/types/web.js +2 -0
- package/lib/weapps-core/utils/appbuild.d.ts +6 -0
- package/lib/weapps-core/utils/appbuild.d.ts.map +1 -0
- package/lib/weapps-core/utils/appbuild.js +40 -0
- package/lib/weapps-core/utils/common.d.ts +16 -0
- package/lib/weapps-core/utils/common.d.ts.map +1 -0
- package/lib/weapps-core/utils/common.js +90 -0
- package/lib/weapps-core/utils/file.d.ts +12 -0
- package/lib/weapps-core/utils/file.d.ts.map +1 -0
- package/lib/weapps-core/utils/file.js +142 -0
- package/lib/weapps-core/utils/formily.d.ts +5 -0
- package/lib/weapps-core/utils/formily.d.ts.map +1 -0
- package/lib/weapps-core/utils/formily.js +416 -0
- package/lib/weapps-core/utils/index.d.ts +7 -0
- package/lib/weapps-core/utils/index.d.ts.map +1 -0
- package/lib/weapps-core/utils/index.js +18 -0
- package/lib/weapps-core/utils/lowcdoe.d.ts +4 -0
- package/lib/weapps-core/utils/lowcdoe.d.ts.map +1 -0
- package/lib/weapps-core/utils/lowcdoe.js +69 -0
- package/lib/weapps-core/utils/style.d.ts +17 -0
- package/lib/weapps-core/utils/style.d.ts.map +1 -0
- package/lib/weapps-core/utils/style.js +330 -0
- package/package.json +3 -3
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.promisifyProcess = void 0;
|
|
4
|
+
function promisifyProcess(p, opts = {}) {
|
|
5
|
+
return new Promise((resolve, reject) => {
|
|
6
|
+
let stdout = '';
|
|
7
|
+
let stderr = '';
|
|
8
|
+
p.stdout &&
|
|
9
|
+
p.stdout.on('data', opts.onStdout ||
|
|
10
|
+
((data) => {
|
|
11
|
+
console.log(data + '');
|
|
12
|
+
stdout += data;
|
|
13
|
+
}));
|
|
14
|
+
p.stderr &&
|
|
15
|
+
p.stderr.on('data', opts.onStderr ||
|
|
16
|
+
((data) => {
|
|
17
|
+
console.error(data + '');
|
|
18
|
+
stderr += data;
|
|
19
|
+
}));
|
|
20
|
+
p.on('error', reject);
|
|
21
|
+
p.on('exit', (exitCode) => {
|
|
22
|
+
exitCode === 0
|
|
23
|
+
? resolve(stdout)
|
|
24
|
+
: reject(new Error(stderr || String(exitCode)));
|
|
25
|
+
});
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
exports.promisifyProcess = promisifyProcess;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"style.d.ts","sourceRoot":"","sources":["../../../src/builder/util/style.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
10
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
|
+
};
|
|
12
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
+
__exportStar(require("../../generator/util/style"), exports);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"weapp.d.ts","sourceRoot":"","sources":["../../../src/builder/util/weapp.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
10
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
|
+
};
|
|
12
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
+
__exportStar(require("../../generator/util/weapp"), exports);
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export declare const PRIVATE_JS_NAME = "weda-private.js";
|
|
2
|
+
export declare const PRIVATE_JS_CODE = "\n /**\n * An empty js file. It will be overridden in private place.\n *\n * For example:\n * ```javascript\n * window._isPrivate = true\n * ```\n */\n ";
|
|
3
|
+
//# sourceMappingURL=private.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"private.d.ts","sourceRoot":"","sources":["../../src/config/private.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,eAAe,oBAAoB,CAAC;AAKjD,eAAO,MAAM,eAAe,oKAS1B,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PRIVATE_JS_CODE = exports.PRIVATE_JS_NAME = void 0;
|
|
4
|
+
exports.PRIVATE_JS_NAME = 'weda-private.js';
|
|
5
|
+
exports.PRIVATE_JS_CODE = `
|
|
6
|
+
/**
|
|
7
|
+
* An empty js file. It will be overridden in private place.
|
|
8
|
+
*
|
|
9
|
+
* For example:
|
|
10
|
+
* \`\`\`javascript
|
|
11
|
+
* window._isPrivate = true
|
|
12
|
+
* \`\`\`
|
|
13
|
+
*/
|
|
14
|
+
`;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"generate.d.ts","sourceRoot":"","sources":["../src/generate.ts"],"names":[],"mappings":"AAMA,wBAAsB,eAAe,CAAC,OAAO,mBAAwB,EAAE,WAAW,EAAE,MAAM,iBAuBzF"}
|
package/lib/generate.js
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.handleMpPlugins = void 0;
|
|
16
|
+
const path_1 = __importDefault(require("path"));
|
|
17
|
+
const fs_extra_1 = __importDefault(require("fs-extra"));
|
|
18
|
+
const webpack_1 = require("@cloudbase/lowcode-builder/lib/builder/service/webpack");
|
|
19
|
+
const mp_1 = require("@cloudbase/lowcode-builder/lib/builder/util/mp");
|
|
20
|
+
function handleMpPlugins(plugins = [], appBuildDir) {
|
|
21
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
22
|
+
const appBuildMpDir = path_1.default.resolve(appBuildDir, 'dist/mp');
|
|
23
|
+
const appBuildNodeModulesDir = path_1.default.resolve(appBuildDir, 'node_modules');
|
|
24
|
+
const mpBuildPkgJsonPath = path_1.default.resolve(appBuildMpDir, 'package.json');
|
|
25
|
+
const buildPkgJson = fs_extra_1.default.readJsonSync(mpBuildPkgJsonPath);
|
|
26
|
+
const sourcePkgJson = fs_extra_1.default.readJsonSync(path_1.default.join(appBuildDir, 'package.json'));
|
|
27
|
+
plugins
|
|
28
|
+
.filter((plugin) => plugin.type === 'mp')
|
|
29
|
+
.forEach((plugin) => {
|
|
30
|
+
const mpBuildAppJsonPath = path_1.default.resolve(appBuildMpDir, 'app.json');
|
|
31
|
+
const pluginAppJsonPath = path_1.default.resolve(appBuildNodeModulesDir, plugin.module, 'app.json');
|
|
32
|
+
mergeSubPackagesApp(mpBuildAppJsonPath, pluginAppJsonPath);
|
|
33
|
+
buildPkgJson.dependencies[plugin.module] = sourcePkgJson.dependencies[plugin.module];
|
|
34
|
+
});
|
|
35
|
+
fs_extra_1.default.writeJsonSync(mpBuildPkgJsonPath, buildPkgJson, { spaces: 2 });
|
|
36
|
+
console.log('小程序安装依赖', appBuildMpDir);
|
|
37
|
+
yield (0, webpack_1.installDependencies)(appBuildMpDir);
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
exports.handleMpPlugins = handleMpPlugins;
|
|
41
|
+
function mergeSubPackagesApp(baseAppJsonPath, mergeAppJsonPath) {
|
|
42
|
+
const baseJson = fs_extra_1.default.readJSONSync(baseAppJsonPath);
|
|
43
|
+
const mergeJson = fs_extra_1.default.readJSONSync(mergeAppJsonPath);
|
|
44
|
+
if (!mergeJson.subpackages)
|
|
45
|
+
return;
|
|
46
|
+
const newJson = Object.assign({}, baseJson);
|
|
47
|
+
newJson.subpackages = (0, mp_1.mergeSubPackages)(baseJson.subpackages, mergeJson.subpackages);
|
|
48
|
+
fs_extra_1.default.writeJSONSync(baseAppJsonPath, newJson, { spaces: 2 });
|
|
49
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export declare const REPLACE_SIGN = "%%%";
|
|
2
|
+
export declare const MP_CONFIG_MODULE_NAME = "mp_config";
|
|
3
|
+
export declare const KBONE_PAGE_KEYS: string[];
|
|
4
|
+
export declare const PRIVATE_JS_NAME = "weda-private.js";
|
|
5
|
+
export declare const PRIVATE_JS_CODE = "\n/**\n * An empty js file. It will be overridden in private place.\n *\n * For example:\n * ```javascript\n * window._isPrivate = true\n * ```\n */\n";
|
|
6
|
+
//# sourceMappingURL=common.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../../src/generator/config/common.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY,QAAQ,CAAC;AAElC,eAAO,MAAM,qBAAqB,cAAc,CAAC;AAEjD,eAAO,MAAM,eAAe,UAQ3B,CAAC;AAKF,eAAO,MAAM,eAAe,oBAAoB,CAAC;AAKjD,eAAO,MAAM,eAAe,2JAS3B,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PRIVATE_JS_CODE = exports.PRIVATE_JS_NAME = exports.KBONE_PAGE_KEYS = exports.MP_CONFIG_MODULE_NAME = exports.REPLACE_SIGN = void 0;
|
|
4
|
+
exports.REPLACE_SIGN = '%%%';
|
|
5
|
+
exports.MP_CONFIG_MODULE_NAME = 'mp_config';
|
|
6
|
+
exports.KBONE_PAGE_KEYS = [
|
|
7
|
+
'loadingText',
|
|
8
|
+
'share',
|
|
9
|
+
'windowScroll',
|
|
10
|
+
'pageBackgroundColor',
|
|
11
|
+
'reachBottom',
|
|
12
|
+
'reachBottomDistance',
|
|
13
|
+
'pullDownRefresh',
|
|
14
|
+
];
|
|
15
|
+
exports.PRIVATE_JS_NAME = 'weda-private.js';
|
|
16
|
+
exports.PRIVATE_JS_CODE = `
|
|
17
|
+
/**
|
|
18
|
+
* An empty js file. It will be overridden in private place.
|
|
19
|
+
*
|
|
20
|
+
* For example:
|
|
21
|
+
* \`\`\`javascript
|
|
22
|
+
* window._isPrivate = true
|
|
23
|
+
* \`\`\`
|
|
24
|
+
*/
|
|
25
|
+
`;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export * from './common';
|
|
2
|
+
export declare const rootDir: string;
|
|
3
|
+
export declare const appTemplateDir: string;
|
|
4
|
+
export declare const npmRegistry = "https://mirrors.tencent.com/npm/";
|
|
5
|
+
export declare const materialsDirName = "materials";
|
|
6
|
+
export declare const remConfig: {
|
|
7
|
+
rootValue: number;
|
|
8
|
+
propList: string[];
|
|
9
|
+
unitPrecision: number;
|
|
10
|
+
selectorBlackList: never[];
|
|
11
|
+
replace: boolean;
|
|
12
|
+
mediaQuery: boolean;
|
|
13
|
+
minPixelValue: number;
|
|
14
|
+
};
|
|
15
|
+
export declare const rpxConfig: {
|
|
16
|
+
zoom: number;
|
|
17
|
+
};
|
|
18
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/generator/config/index.ts"],"names":[],"mappings":"AACA,cAAc,UAAU,CAAC;AAEzB,eAAO,MAAM,OAAO,QAAoC,CAAC;AACzD,eAAO,MAAM,cAAc,QAA+C,CAAC;AAC3E,eAAO,MAAM,WAAW,qCAAqC,CAAC;AAC9D,eAAO,MAAM,gBAAgB,cAAc,CAAC;AAG5C,eAAO,MAAM,SAAS;;;;;;;;CAQrB,CAAC;AAEF,eAAO,MAAM,SAAS;;CAErB,CAAC"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
+
if (mod && mod.__esModule) return mod;
|
|
16
|
+
var result = {};
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
19
|
+
return result;
|
|
20
|
+
};
|
|
21
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
22
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
23
|
+
};
|
|
24
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
+
exports.rpxConfig = exports.remConfig = exports.materialsDirName = exports.npmRegistry = exports.appTemplateDir = exports.rootDir = void 0;
|
|
26
|
+
const path = __importStar(require("path"));
|
|
27
|
+
__exportStar(require("./common"), exports);
|
|
28
|
+
exports.rootDir = path.resolve(__dirname, '../../');
|
|
29
|
+
exports.appTemplateDir = path.resolve(__dirname, '../../../template');
|
|
30
|
+
exports.npmRegistry = 'https://mirrors.tencent.com/npm/';
|
|
31
|
+
exports.materialsDirName = 'materials';
|
|
32
|
+
exports.remConfig = {
|
|
33
|
+
rootValue: 28,
|
|
34
|
+
propList: ['*'],
|
|
35
|
+
unitPrecision: 5,
|
|
36
|
+
selectorBlackList: [],
|
|
37
|
+
replace: true,
|
|
38
|
+
mediaQuery: false,
|
|
39
|
+
minPixelValue: 0,
|
|
40
|
+
};
|
|
41
|
+
exports.rpxConfig = {
|
|
42
|
+
zoom: 1,
|
|
43
|
+
};
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
export declare function getWxmlDataPrefix(debug?: boolean): {
|
|
2
|
+
appState: string;
|
|
3
|
+
pageState: string;
|
|
4
|
+
appComputed: string;
|
|
5
|
+
pageComputed: string;
|
|
6
|
+
widgetProp: string;
|
|
7
|
+
forItem: string;
|
|
8
|
+
forIndex: string;
|
|
9
|
+
};
|
|
10
|
+
export declare const varSeparator = ".";
|
|
11
|
+
export declare const textContentPropName = "text";
|
|
12
|
+
export declare const jsonSchemaType2jsClass: {
|
|
13
|
+
number: string;
|
|
14
|
+
string: string;
|
|
15
|
+
image: string;
|
|
16
|
+
color: string;
|
|
17
|
+
boolean: string;
|
|
18
|
+
object: string;
|
|
19
|
+
array: string;
|
|
20
|
+
time: string;
|
|
21
|
+
date: string;
|
|
22
|
+
};
|
|
23
|
+
export declare const defaultProjConfig: {
|
|
24
|
+
packOptions: {
|
|
25
|
+
ignore: never[];
|
|
26
|
+
};
|
|
27
|
+
setting: {
|
|
28
|
+
urlCheck: boolean;
|
|
29
|
+
es6: boolean;
|
|
30
|
+
enhance: boolean;
|
|
31
|
+
postcss: boolean;
|
|
32
|
+
minified: boolean;
|
|
33
|
+
newFeature: boolean;
|
|
34
|
+
nodeModules: boolean;
|
|
35
|
+
autoAudits: boolean;
|
|
36
|
+
uglifyFileName: boolean;
|
|
37
|
+
checkInvalidKey: boolean;
|
|
38
|
+
checkSiteMap: boolean;
|
|
39
|
+
uploadWithSourceMap: boolean;
|
|
40
|
+
codeProtect: boolean;
|
|
41
|
+
};
|
|
42
|
+
compileType: string;
|
|
43
|
+
libVersion: string;
|
|
44
|
+
appid: string;
|
|
45
|
+
debugOptions: {};
|
|
46
|
+
isGameTourist: boolean;
|
|
47
|
+
simulatorType: string;
|
|
48
|
+
simulatorPluginLibVersion: {};
|
|
49
|
+
};
|
|
50
|
+
export declare const builtinMpEvents: string[];
|
|
51
|
+
export declare const nativeCompWhiteList: string[];
|
|
52
|
+
export declare const builtinMpTags: string[];
|
|
53
|
+
export declare const builtinWigetProps: string[];
|
|
54
|
+
export declare function isBuiltinMpTag(tag: string): boolean;
|
|
55
|
+
export declare function getClassAttrName(tag: string): "class" | "className";
|
|
56
|
+
//# sourceMappingURL=mp.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mp.d.ts","sourceRoot":"","sources":["../../../src/generator/config/mp.ts"],"names":[],"mappings":"AAGA,wBAAgB,iBAAiB,CAAC,KAAK,UAAQ;;;;;;;;EAoB9C;AAGD,eAAO,MAAM,YAAY,MAAM,CAAC;AAKhC,eAAO,MAAM,mBAAmB,SAAS,CAAC;AAE1C,eAAO,MAAM,sBAAsB;;;;;;;;;;CAUlC,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;CA0B7B,CAAC;AAGF,eAAO,MAAM,eAAe,UAa3B,CAAC;AAEF,eAAO,MAAM,mBAAmB,UAS/B,CAAC;AAEF,eAAO,MAAM,aAAa,UAQvB,CAAC;AAEJ,eAAO,MAAM,iBAAiB,UAG3B,CAAC;AAEJ,wBAAgB,cAAc,CAAC,GAAG,EAAE,MAAM,WAEzC;AAED,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,MAAM,yBAE3C"}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getClassAttrName = exports.isBuiltinMpTag = exports.builtinWigetProps = exports.builtinMpTags = exports.nativeCompWhiteList = exports.builtinMpEvents = exports.defaultProjConfig = exports.jsonSchemaType2jsClass = exports.textContentPropName = exports.varSeparator = exports.getWxmlDataPrefix = void 0;
|
|
4
|
+
function getWxmlDataPrefix(debug = false) {
|
|
5
|
+
return !debug
|
|
6
|
+
? {
|
|
7
|
+
appState: 'g',
|
|
8
|
+
pageState: 'p',
|
|
9
|
+
appComputed: 't',
|
|
10
|
+
pageComputed: 'c',
|
|
11
|
+
widgetProp: '',
|
|
12
|
+
forItem: 'f',
|
|
13
|
+
forIndex: 'i',
|
|
14
|
+
}
|
|
15
|
+
: {
|
|
16
|
+
appState: 'appState',
|
|
17
|
+
pageState: 'pageState',
|
|
18
|
+
appComputed: 'appComputed',
|
|
19
|
+
pageComputed: 'pageComputed',
|
|
20
|
+
widgetProp: '',
|
|
21
|
+
forItem: 'forItem_',
|
|
22
|
+
forIndex: 'forIndex_',
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
exports.getWxmlDataPrefix = getWxmlDataPrefix;
|
|
26
|
+
exports.varSeparator = '.';
|
|
27
|
+
exports.textContentPropName = 'text';
|
|
28
|
+
exports.jsonSchemaType2jsClass = {
|
|
29
|
+
number: 'Number',
|
|
30
|
+
string: 'String',
|
|
31
|
+
image: 'String',
|
|
32
|
+
color: 'String',
|
|
33
|
+
boolean: 'Boolean',
|
|
34
|
+
object: 'Object',
|
|
35
|
+
array: 'Array',
|
|
36
|
+
time: 'String',
|
|
37
|
+
date: 'String',
|
|
38
|
+
};
|
|
39
|
+
exports.defaultProjConfig = {
|
|
40
|
+
packOptions: {
|
|
41
|
+
ignore: [],
|
|
42
|
+
},
|
|
43
|
+
setting: {
|
|
44
|
+
urlCheck: false,
|
|
45
|
+
es6: true,
|
|
46
|
+
enhance: true,
|
|
47
|
+
postcss: true,
|
|
48
|
+
minified: true,
|
|
49
|
+
newFeature: true,
|
|
50
|
+
nodeModules: true,
|
|
51
|
+
autoAudits: false,
|
|
52
|
+
uglifyFileName: false,
|
|
53
|
+
checkInvalidKey: true,
|
|
54
|
+
checkSiteMap: true,
|
|
55
|
+
uploadWithSourceMap: true,
|
|
56
|
+
codeProtect: false,
|
|
57
|
+
},
|
|
58
|
+
compileType: 'miniprogram',
|
|
59
|
+
libVersion: '2.13.2',
|
|
60
|
+
appid: 'touristappid',
|
|
61
|
+
debugOptions: {},
|
|
62
|
+
isGameTourist: false,
|
|
63
|
+
simulatorType: 'wechat',
|
|
64
|
+
simulatorPluginLibVersion: {},
|
|
65
|
+
};
|
|
66
|
+
exports.builtinMpEvents = [
|
|
67
|
+
'touchstart',
|
|
68
|
+
'touchmove',
|
|
69
|
+
'touchcancel',
|
|
70
|
+
'touchend',
|
|
71
|
+
'tap',
|
|
72
|
+
'longpress',
|
|
73
|
+
'longtap',
|
|
74
|
+
'transitionend',
|
|
75
|
+
'animationstart',
|
|
76
|
+
'animationiteration',
|
|
77
|
+
'animationend',
|
|
78
|
+
'touchforcechange',
|
|
79
|
+
];
|
|
80
|
+
exports.nativeCompWhiteList = [
|
|
81
|
+
'textarea',
|
|
82
|
+
'input',
|
|
83
|
+
'camera',
|
|
84
|
+
'canvas',
|
|
85
|
+
'map',
|
|
86
|
+
'video',
|
|
87
|
+
'live-player',
|
|
88
|
+
'live-pusher',
|
|
89
|
+
];
|
|
90
|
+
exports.builtinMpTags = 'cover-image,cover-view,match-media,movable-area,movable-view,scroll-view,swiper,swiper-item,view,\
|
|
91
|
+
icon,progress,rich-text,text,\
|
|
92
|
+
button,checkbox,checkbox-group,editor,form,input,label,picker,picker-view,picker-view-column,radio,radio-group,slider,switch,textarea,\
|
|
93
|
+
functional-page-navigator,navigator,\
|
|
94
|
+
audio,camera,image,live-player,live-pusher,video,voip-room,map,canvas,\
|
|
95
|
+
ad,ad-custom,official-account,open-data,web-view'.split(',');
|
|
96
|
+
exports.builtinWigetProps = 'id,style,classList,className,parent,children,widgetType,getWidgetsByType'.split(',');
|
|
97
|
+
function isBuiltinMpTag(tag) {
|
|
98
|
+
return exports.builtinMpTags.indexOf(tag) > -1;
|
|
99
|
+
}
|
|
100
|
+
exports.isBuiltinMpTag = isBuiltinMpTag;
|
|
101
|
+
function getClassAttrName(tag) {
|
|
102
|
+
return isBuiltinMpTag(tag) ? 'class' : 'className';
|
|
103
|
+
}
|
|
104
|
+
exports.getClassAttrName = getClassAttrName;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { ActionType, IComponentSchemaJson, IListenerInstance, IMaterialItem, IPageInstance, IWebRuntimeAppData, IExtraData, IBuildType, IWeAppComponentInstance, IComponentLibEntry } from '../../weapps-core';
|
|
2
|
+
import { IComponentsInfoMap, IFileCodeMap } from '../types/common';
|
|
3
|
+
import { Schema } from '@formily/react-schema-renderer';
|
|
4
|
+
import { DEPLOY_MODE, RUNTIME } from '../../types';
|
|
5
|
+
export declare function runGenerateCore(props: {
|
|
6
|
+
appBuildDir: string;
|
|
7
|
+
appData: IWebRuntimeAppData;
|
|
8
|
+
subAppDataList: IWebRuntimeAppData[];
|
|
9
|
+
dependencies: IMaterialItem[];
|
|
10
|
+
appKey: string;
|
|
11
|
+
buildTypeList: IBuildType[];
|
|
12
|
+
basename: string;
|
|
13
|
+
deployMode: DEPLOY_MODE;
|
|
14
|
+
runtime: RUNTIME;
|
|
15
|
+
ignoreInstall: boolean;
|
|
16
|
+
extraData: {
|
|
17
|
+
isComposite: boolean;
|
|
18
|
+
compProps: any;
|
|
19
|
+
};
|
|
20
|
+
i18nConfig: any;
|
|
21
|
+
fileCodeMap: IFileCodeMap;
|
|
22
|
+
isSandbox: boolean;
|
|
23
|
+
}): Promise<void>;
|
|
24
|
+
export interface IOriginKeyInfo {
|
|
25
|
+
sourceKey: string;
|
|
26
|
+
name: string;
|
|
27
|
+
materialName: string;
|
|
28
|
+
materialVersion: string;
|
|
29
|
+
key: string;
|
|
30
|
+
variableName: string;
|
|
31
|
+
type?: ActionType;
|
|
32
|
+
isComposite?: boolean;
|
|
33
|
+
isPlainProps?: boolean;
|
|
34
|
+
entries?: IComponentLibEntry;
|
|
35
|
+
}
|
|
36
|
+
export declare function generateSinglePageJsxFile(pageInstance: IPageInstance, appBuildDir: string, rootPath: string, dependencies: IMaterialItem[] | undefined, extraData: {
|
|
37
|
+
isComposite: boolean;
|
|
38
|
+
compProps: any;
|
|
39
|
+
} | undefined, fileCodeMap: IFileCodeMap, isSandbox: boolean): Promise<void>;
|
|
40
|
+
export declare function getOriginComponentAndActionList(componentSchema: IComponentSchemaJson, dependencies: IMaterialItem[], originComponentList?: IOriginKeyInfo[], originActionList?: IOriginKeyInfo[], genericCompMap?: Record<string, IWeAppComponentInstance['genericComp']>): {
|
|
41
|
+
originComponentList: IOriginKeyInfo[];
|
|
42
|
+
originActionList: IOriginKeyInfo[];
|
|
43
|
+
};
|
|
44
|
+
export declare function pullActionToListByInstances(listenerInstances: any, originActionList: any, fixedDependencies: (IMaterialItem & {
|
|
45
|
+
isPlainProps?: boolean;
|
|
46
|
+
entries?: IComponentLibEntry;
|
|
47
|
+
})[]): void;
|
|
48
|
+
export declare function pullComponentToListByInstance(sourceKey: string, originComponentList: IOriginKeyInfo[], fixedDependencies: IMaterialItem[]): void;
|
|
49
|
+
export declare function isSlot(comp: Schema): boolean | "" | undefined;
|
|
50
|
+
export declare function getComponentSchemaString(componentSchema: IComponentSchemaJson, isComposite?: boolean, componentsInfoMap?: IComponentsInfoMap, wrapperClass?: string): {
|
|
51
|
+
widgets: string;
|
|
52
|
+
dataBinds: string;
|
|
53
|
+
componentSchema: string;
|
|
54
|
+
};
|
|
55
|
+
export declare function getListenersString(listeners?: IListenerInstance[], isComposite?: boolean): string;
|
|
56
|
+
export declare function generateRouterFile(allAppDataList: IWebRuntimeAppData[], appBuildDir: string, basename: string | undefined, fileCodeMap: IFileCodeMap, isSandbox: any): Promise<void>;
|
|
57
|
+
export declare function writeLowCodeFiles(appData: IWebRuntimeAppData, appBuildDir: string, fileCodeMap: IFileCodeMap, rootPath: string): Promise<void>;
|
|
58
|
+
export declare function generateCodeFromTpl(appKey: string, appData: IWebRuntimeAppData, appBuildDir: string, rootPath: string, extraData: IExtraData, i18nConfig: any, fileCodeMap: IFileCodeMap, isSandbox: boolean, subAppDataList: IWebRuntimeAppData[], buildTypeList: IBuildType[], deployMode: DEPLOY_MODE, domain: string): Promise<void>;
|
|
59
|
+
//# sourceMappingURL=generate.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"generate.d.ts","sourceRoot":"","sources":["../../../src/generator/core/generate.ts"],"names":[],"mappings":"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"}
|