mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-19 14:04:28 +00:00
chore: 修复 KeyType 定义错误
This commit is contained in:
parent
07d3a79845
commit
2ab953db61
@ -21,7 +21,6 @@
|
|||||||
"setup:skip-build": "./scripts/setup-skip-build.sh",
|
"setup:skip-build": "./scripts/setup-skip-build.sh",
|
||||||
"start": "./scripts/start.sh",
|
"start": "./scripts/start.sh",
|
||||||
"start:demo": "./scripts/start.sh @ali/lowcode-demo",
|
"start:demo": "./scripts/start.sh @ali/lowcode-demo",
|
||||||
"start:server": "./scripts/start-server.sh",
|
|
||||||
"test": "lerna run test --stream",
|
"test": "lerna run test --stream",
|
||||||
"test:snapshot": "lerna run test:snapshot",
|
"test:snapshot": "lerna run test:snapshot",
|
||||||
"watchdog:build": "node ./scripts/watchdog.js",
|
"watchdog:build": "node ./scripts/watchdog.js",
|
||||||
|
|||||||
@ -3,7 +3,7 @@ import { ReactNode, ComponentType } from 'react';
|
|||||||
import { NpmInfo } from './npm';
|
import { NpmInfo } from './npm';
|
||||||
import { RegisterOptions } from 'power-di';
|
import { RegisterOptions } from 'power-di';
|
||||||
|
|
||||||
export type KeyType = new (...args: any[]) => any | symbol | string;
|
export type KeyType = (new (...args: any[]) => any) | symbol | string;
|
||||||
export type ClassType = new (...args: any[]) => any;
|
export type ClassType = new (...args: any[]) => any;
|
||||||
export interface GetOptions {
|
export interface GetOptions {
|
||||||
forceNew?: boolean;
|
forceNew?: boolean;
|
||||||
|
|||||||
@ -1,5 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# FIXME! do not run build
|
|
||||||
lerna exec --scope @ali/lowcode-code-generator -- npm run build
|
|
||||||
# lerna exec --scope @ali/lowcode-demo-server -- npm start
|
|
||||||
Loading…
x
Reference in New Issue
Block a user