@dckj-npm/lowcode-plugin-code-generator 1.0.6 → 1.0.8
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/es/index.d.ts +1 -1
- package/lib/index.d.ts +1 -1
- package/package.json +2 -1
package/es/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export declare type CodeGenPluginOptions = {
|
|
|
9
9
|
declare const codeGeneratorPlugin: {
|
|
10
10
|
(ctx: any, options?: CodeGenPluginOptions): {
|
|
11
11
|
exports(): {
|
|
12
|
-
generateCode:
|
|
12
|
+
generateCode: typeof CodeGenerator.generateCode;
|
|
13
13
|
};
|
|
14
14
|
init(): Promise<void>;
|
|
15
15
|
destroy(): void;
|
package/lib/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export declare type CodeGenPluginOptions = {
|
|
|
9
9
|
declare const codeGeneratorPlugin: {
|
|
10
10
|
(ctx: any, options?: CodeGenPluginOptions): {
|
|
11
11
|
exports(): {
|
|
12
|
-
generateCode:
|
|
12
|
+
generateCode: typeof CodeGenerator.generateCode;
|
|
13
13
|
};
|
|
14
14
|
init(): Promise<void>;
|
|
15
15
|
destroy(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dckj-npm/lowcode-plugin-code-generator",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "集团低代码引擎 - 浏览器出码插件",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
"@alilc/lowcode-code-generator": "^1.0.4",
|
|
36
36
|
"@alilc/lowcode-plugin-base-monaco-editor": "^1.0.0",
|
|
37
37
|
"@alilc/lowcode-types": "^1.0.0",
|
|
38
|
+
"@dckj-npm/lowcode-code-generator": "^1.0.9",
|
|
38
39
|
"@types/file-saver": "^2.0.4",
|
|
39
40
|
"@types/js-base64": "^3.3.1",
|
|
40
41
|
"@types/string-natural-compare": "^3.0.2",
|