mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 21:26:59 +00:00
81978711e4
* feat: multiple apps plugin * feat: multipleAppManager in Application * stage * fix: export error * test: multiple app * application model * feat: create application with plugins * load and install after sub application created * create subApp database beforeInstall * sub apps listen to main app start & stop events * refactor: getPluginName as package name * feat: load apps on mainApp starts * fix: test * feat: beforeGetApplication event * fix: test * fix: test with sqlite memory database * test: lazyLoad application * fix: test with sqlite memory * chore: clone database collection & promise.all
17 lines
455 B
JSON
17 lines
455 B
JSON
{
|
|
"name": "@nocobase/plugin-multiple-apps",
|
|
"version": "0.6.0-alpha.0",
|
|
"main": "lib/index.js",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "rimraf -rf lib esm dist && npm run build:cjs && npm run build:esm",
|
|
"build:cjs": "tsc --project tsconfig.build.json",
|
|
"build:esm": "tsc --project tsconfig.build.json --module es2015 --outDir esm"
|
|
},
|
|
"dependencies": {
|
|
"@nocobase/server": "^0.6.0-alpha.0"
|
|
},
|
|
"devDependencies": {
|
|
}
|
|
}
|