mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 13:46:45 +00:00
d7dc8fa4cf
Some checks are pending
Build Docker Image / build-and-push (push) Waiting to run
Build Pro Image / build-and-push (push) Waiting to run
E2E / Build (push) Waiting to run
E2E / Core and plugins (push) Blocked by required conditions
E2E / plugin-workflow (push) Blocked by required conditions
E2E / plugin-workflow-approval (push) Blocked by required conditions
E2E / plugin-data-source-main (push) Blocked by required conditions
E2E / Comment on PR (push) Blocked by required conditions
NocoBase Backend Test / sqlite-test (20, false) (push) Waiting to run
NocoBase Backend Test / sqlite-test (20, true) (push) Waiting to run
NocoBase Backend Test / postgres-test (public, 20, nocobase, false) (push) Waiting to run
NocoBase Backend Test / postgres-test (public, 20, nocobase, true) (push) Waiting to run
NocoBase Backend Test / postgres-test (public, 20, public, false) (push) Waiting to run
NocoBase Backend Test / postgres-test (public, 20, public, true) (push) Waiting to run
NocoBase Backend Test / postgres-test (user_schema, 20, nocobase, false) (push) Waiting to run
NocoBase Backend Test / postgres-test (user_schema, 20, nocobase, true) (push) Waiting to run
NocoBase Backend Test / postgres-test (user_schema, 20, public, false) (push) Waiting to run
NocoBase Backend Test / postgres-test (user_schema, 20, public, true) (push) Waiting to run
NocoBase Backend Test / mysql-test (20, false) (push) Waiting to run
NocoBase Backend Test / mysql-test (20, true) (push) Waiting to run
NocoBase Backend Test / mariadb-test (20, false) (push) Waiting to run
NocoBase Backend Test / mariadb-test (20, true) (push) Waiting to run
NocoBase FrontEnd Test / frontend-test (18) (push) Waiting to run
Test on Windows / build (push) Waiting to run
* feat: auto download pro * feat: improve code * feat: improve code * feat: improve code * feat: improve code * fix: test error * fix: improve code * fix: yarn install error * fix: build error * fix: generatePlugins * fix: test error * fix: download pro command * fix: run error * feat: version * fix: require packageJson * fix: improve code * feat: improve code * fix: improve code * fix: test error * fix: test error * fix: improve code * fix: removable * fix: error * fix: error
29 lines
642 B
TypeScript
29 lines
642 B
TypeScript
export declare function getUmiConfig(): {
|
|
alias: Record<string, string>;
|
|
define: {
|
|
'process.env.API_BASE_URL': string;
|
|
};
|
|
proxy: {
|
|
[x: string]:
|
|
| {
|
|
target: string;
|
|
changeOrigin: boolean;
|
|
}
|
|
| {
|
|
target: string;
|
|
changeOrigin: boolean;
|
|
pathRewrite: {
|
|
[x: string]: string;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
export declare function resolveNocobasePackagesAlias(config: any): {};
|
|
export declare class IndexGenerator {
|
|
constructor(outputPath: string, pluginsPath: string[]): void;
|
|
generate(): void;
|
|
};
|
|
|
|
export declare function generatePlugins(): {}
|