@akanjs/cli 0.0.148 → 0.0.150
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/cjs/index.js +58 -11
- package/cjs/src/guidelines/___library/sharedUiStructureDescription.en.md +0 -18
- package/cjs/src/guidelines/componentRule/componentRule.generate.json +131 -0
- package/cjs/src/guidelines/cssRule/cssRule.generate.json +93 -0
- package/cjs/src/guidelines/databaseModule/databaseModule.generate.json +51 -0
- package/cjs/src/guidelines/docPageRule/docPageRule.generate.json +72 -0
- package/cjs/src/guidelines/enumConstant/enumConstant.generate.json +24 -0
- package/cjs/src/guidelines/fieldDecorator/fieldDecorator.generate.json +135 -0
- package/cjs/src/guidelines/framework/framework.generate.json +119 -0
- package/cjs/src/guidelines/howToUseStore/howToUseStore.generate.json +0 -0
- package/cjs/src/guidelines/modelConstant/modelConstant.generate.json +135 -0
- package/cjs/src/guidelines/modelDictionary/modelDictionary.generate.json +115 -0
- package/cjs/src/guidelines/modelDocument/modelDocument.generate.json +129 -0
- package/cjs/src/guidelines/modelService/modelService.generate.json +179 -0
- package/cjs/src/guidelines/modelSignal/modelSignal.generate.json +202 -0
- package/cjs/src/guidelines/modelStore/modelStore.generate.json +130 -0
- package/cjs/src/guidelines/modelTemplate/modelTemplate.generate.json +104 -0
- package/cjs/src/guidelines/modelUnit/modelUnit.generate.json +92 -0
- package/cjs/src/guidelines/modelUtil/modelUtil.generate.json +93 -0
- package/cjs/src/guidelines/modelView/modelView.generate.json +80 -0
- package/cjs/src/guidelines/modelZone/modelZone.generate.json +126 -0
- package/cjs/src/guidelines/scalarConstant/scalarConstant.generate.json +102 -0
- package/cjs/src/guidelines/scalarDictionary/scalarDictionary.generate.json +83 -0
- package/cjs/src/guidelines/scalarModule/scalarModule.generate.json +35 -0
- package/cjs/src/guidelines/sharedUiUsage/sharedUiUsage.generate.json +115 -0
- package/cjs/src/guidelines/utilUiUsage/utilUiUsage.generate.json +140 -0
- package/cjs/src/templates/app/app/[lang]/(__appName__)/(public)/forgotpassword/page.js +47 -0
- package/cjs/src/templates/app/app/[lang]/(__appName__)/(public)/page.js +128 -0
- package/cjs/src/templates/app/app/[lang]/(__appName__)/(public)/privacy/page.js +42 -0
- package/cjs/src/templates/app/app/[lang]/(__appName__)/(public)/signin/page.js +50 -0
- package/cjs/src/templates/app/app/[lang]/(__appName__)/(public)/termsofservice/page.js +41 -0
- package/cjs/src/templates/app/app/[lang]/(__appName__)/(public)/unknown/page.js +51 -0
- package/cjs/src/templates/app/app/[lang]/(__appName__)/(user)/layout.js +43 -0
- package/cjs/src/templates/app/app/[lang]/(__appName__)/(user)/self/page.js +60 -0
- package/cjs/src/templates/app/app/[lang]/(__appName__)/layout.js +54 -0
- package/cjs/src/templates/app/app/[lang]/(__appName__)/styles.css.template +19 -0
- package/cjs/src/templates/app/app/[lang]/admin/layout.js +54 -0
- package/cjs/src/templates/app/app/[lang]/admin/page.js +63 -0
- package/cjs/src/templates/app/app/csr.js +34 -0
- package/cjs/src/templates/app/app/index.html.template +13 -0
- package/cjs/src/templates/app/app/layout.js +38 -0
- package/cjs/src/templates/app/capacitor.config.ts.template +8 -0
- package/cjs/src/templates/app/env/env.client.debug.ts.template +7 -0
- package/cjs/src/templates/app/env/env.client.develop.ts.template +7 -0
- package/cjs/src/templates/app/env/env.client.local.ts.template +7 -0
- package/cjs/src/templates/app/env/env.client.main.ts.template +7 -0
- package/cjs/src/templates/app/env/env.client.testing.ts.template +7 -0
- package/cjs/src/templates/app/env/env.server.debug.ts.template +15 -0
- package/cjs/src/templates/app/env/env.server.develop.ts.template +15 -0
- package/cjs/src/templates/app/env/env.server.local.ts.template +15 -0
- package/cjs/src/templates/app/env/env.server.main.ts.template +15 -0
- package/cjs/src/templates/app/env/env.server.testing.ts.template +7 -0
- package/cjs/src/templates/app/lib/setting/Setting.Template.js +57 -0
- package/cjs/src/templates/app/lib/setting/Setting.Unit.js +38 -0
- package/cjs/src/templates/app/lib/setting/Setting.Util.js +34 -0
- package/cjs/src/templates/app/lib/setting/Setting.View.js +51 -0
- package/cjs/src/templates/app/lib/setting/Setting.Zone.js +80 -0
- package/cjs/src/templates/app/lib/setting/index.js +61 -0
- package/cjs/src/templates/app/lib/summary/Summary.Template.js +43 -0
- package/cjs/src/templates/app/lib/summary/Summary.Unit.js +38 -0
- package/cjs/src/templates/app/lib/summary/Summary.Util.js +33 -0
- package/cjs/src/templates/app/lib/summary/Summary.View.js +51 -0
- package/cjs/src/templates/app/lib/summary/Summary.Zone.js +62 -0
- package/cjs/src/templates/app/lib/summary/index.js +67 -0
- package/cjs/src/templates/app/lib/user/User.Template.js +65 -0
- package/cjs/src/templates/app/lib/user/User.Unit.js +38 -0
- package/cjs/src/templates/app/lib/user/User.Util.js +94 -0
- package/cjs/src/templates/app/lib/user/User.View.js +66 -0
- package/cjs/src/templates/app/lib/user/User.Zone.js +74 -0
- package/cjs/src/templates/app/lib/user/index.js +61 -0
- package/cjs/src/templates/app/main.js +2 -1
- package/cjs/src/templates/app/page.test.ts.template +10 -0
- package/cjs/src/templates/app/playwright.config.ts.template +6 -0
- package/cjs/src/templates/app/postcss.config.js.template +10 -0
- package/cjs/src/templates/app/public/favicon.ico +0 -0
- package/cjs/src/templates/app/public/icons/icon-128x128.png +0 -0
- package/cjs/src/templates/app/public/icons/icon-144x144.png +0 -0
- package/cjs/src/templates/app/public/icons/icon-152x152.png +0 -0
- package/cjs/src/templates/app/public/icons/icon-192x192.png +0 -0
- package/cjs/src/templates/app/public/icons/icon-256x256.png +0 -0
- package/cjs/src/templates/app/public/icons/icon-384x384.png +0 -0
- package/cjs/src/templates/app/public/icons/icon-48x48.png +0 -0
- package/cjs/src/templates/app/public/icons/icon-512x512.png +0 -0
- package/cjs/src/templates/app/public/icons/icon-72x72.png +0 -0
- package/cjs/src/templates/app/public/icons/icon-96x96.png +0 -0
- package/cjs/src/templates/app/public/logo.svg +70 -0
- package/cjs/src/templates/app/public/manifest.json.template +67 -0
- package/cjs/src/templates/app/tsconfig.json.template +22 -0
- package/cjs/src/templates/app/tsconfig.spec.json.template +7 -0
- package/cjs/src/templates/app/ui/Footer.js +67 -0
- package/cjs/src/templates/app/ui/MainHeader.js +131 -0
- package/cjs/src/templates/crudPages/[__model__Id]/edit/page.js +73 -0
- package/cjs/src/templates/crudPages/[__model__Id]/page.js +83 -0
- package/cjs/src/templates/crudPages/new/page.js +70 -0
- package/cjs/src/templates/crudPages/page.js +71 -0
- package/cjs/src/templates/libRoot/.gitignore.template +15 -0
- package/cjs/src/templates/libRoot/env/env.server.example.ts.template +7 -0
- package/cjs/src/templates/libRoot/env/env.server.testing.ts.template +7 -0
- package/cjs/src/templates/libRoot/lib/setting/Setting.Template.js +57 -0
- package/cjs/src/templates/libRoot/lib/setting/Setting.Unit.js +38 -0
- package/cjs/src/templates/libRoot/lib/setting/Setting.Util.js +34 -0
- package/cjs/src/templates/libRoot/lib/setting/Setting.View.js +51 -0
- package/cjs/src/templates/libRoot/lib/setting/Setting.Zone.js +80 -0
- package/cjs/src/templates/libRoot/lib/setting/index.js +61 -0
- package/cjs/src/templates/libRoot/lib/summary/Summary.Template.js +43 -0
- package/cjs/src/templates/libRoot/lib/summary/Summary.Unit.js +38 -0
- package/cjs/src/templates/libRoot/lib/summary/Summary.Util.js +33 -0
- package/cjs/src/templates/libRoot/lib/summary/Summary.View.js +51 -0
- package/cjs/src/templates/libRoot/lib/summary/Summary.Zone.js +62 -0
- package/cjs/src/templates/libRoot/lib/summary/index.js +67 -0
- package/cjs/src/templates/libRoot/lib/user/User.Template.js +65 -0
- package/cjs/src/templates/libRoot/lib/user/User.Unit.js +38 -0
- package/cjs/src/templates/libRoot/lib/user/User.Util.js +94 -0
- package/cjs/src/templates/libRoot/lib/user/User.View.js +66 -0
- package/cjs/src/templates/libRoot/lib/user/User.Zone.js +74 -0
- package/cjs/src/templates/libRoot/lib/user/index.js +61 -0
- package/cjs/src/templates/libRoot/package.json.template +4 -0
- package/cjs/src/templates/libRoot/tsconfig.json.template +13 -0
- package/cjs/src/templates/libRoot/tsconfig.spec.json.template +7 -0
- package/cjs/src/templates/localDev/docker-compose.yaml.template +36 -0
- package/cjs/src/templates/module/__Model__.Template.js +54 -0
- package/cjs/src/templates/module/__Model__.Unit.js +42 -0
- package/cjs/src/templates/module/__Model__.Util.js +70 -0
- package/cjs/src/templates/module/__Model__.View.js +48 -0
- package/cjs/src/templates/module/__Model__.Zone.js +83 -0
- package/cjs/src/templates/module/index.js +61 -0
- package/cjs/src/templates/pkgRoot/tsconfig.json.template +15 -0
- package/cjs/src/templates/workspaceRoot/.env.template +20 -0
- package/cjs/src/templates/workspaceRoot/.gitignore.template +118 -0
- package/cjs/src/templates/workspaceRoot/.prettierignore.template +10 -0
- package/cjs/src/templates/workspaceRoot/.prettierrc.json.template +6 -0
- package/cjs/src/templates/workspaceRoot/.swcrc.template +9 -0
- package/cjs/src/templates/workspaceRoot/.vscode/settings.json.template +13 -0
- package/cjs/src/templates/workspaceRoot/README.md.template +37 -0
- package/cjs/src/templates/workspaceRoot/eslint.config.ts.template +3 -0
- package/cjs/src/templates/workspaceRoot/package.json.template +43 -0
- package/cjs/src/templates/workspaceRoot/tsconfig.json.template +29 -0
- package/esm/index.js +59 -12
- package/esm/src/guidelines/___library/sharedUiStructureDescription.en.md +0 -18
- package/esm/src/guidelines/componentRule/componentRule.generate.json +131 -0
- package/esm/src/guidelines/cssRule/cssRule.generate.json +93 -0
- package/esm/src/guidelines/databaseModule/databaseModule.generate.json +51 -0
- package/esm/src/guidelines/docPageRule/docPageRule.generate.json +72 -0
- package/esm/src/guidelines/enumConstant/enumConstant.generate.json +24 -0
- package/esm/src/guidelines/fieldDecorator/fieldDecorator.generate.json +135 -0
- package/esm/src/guidelines/framework/framework.generate.json +119 -0
- package/esm/src/guidelines/howToUseStore/howToUseStore.generate.json +0 -0
- package/esm/src/guidelines/modelConstant/modelConstant.generate.json +135 -0
- package/esm/src/guidelines/modelDictionary/modelDictionary.generate.json +115 -0
- package/esm/src/guidelines/modelDocument/modelDocument.generate.json +129 -0
- package/esm/src/guidelines/modelService/modelService.generate.json +179 -0
- package/esm/src/guidelines/modelSignal/modelSignal.generate.json +202 -0
- package/esm/src/guidelines/modelStore/modelStore.generate.json +130 -0
- package/esm/src/guidelines/modelTemplate/modelTemplate.generate.json +104 -0
- package/esm/src/guidelines/modelUnit/modelUnit.generate.json +92 -0
- package/esm/src/guidelines/modelUtil/modelUtil.generate.json +93 -0
- package/esm/src/guidelines/modelView/modelView.generate.json +80 -0
- package/esm/src/guidelines/modelZone/modelZone.generate.json +126 -0
- package/esm/src/guidelines/scalarConstant/scalarConstant.generate.json +102 -0
- package/esm/src/guidelines/scalarDictionary/scalarDictionary.generate.json +83 -0
- package/esm/src/guidelines/scalarModule/scalarModule.generate.json +35 -0
- package/esm/src/guidelines/sharedUiUsage/sharedUiUsage.generate.json +115 -0
- package/esm/src/guidelines/utilUiUsage/utilUiUsage.generate.json +140 -0
- package/esm/src/templates/app/app/[lang]/(__appName__)/(public)/forgotpassword/page.js +27 -0
- package/esm/src/templates/app/app/[lang]/(__appName__)/(public)/page.js +108 -0
- package/esm/src/templates/app/app/[lang]/(__appName__)/(public)/privacy/page.js +22 -0
- package/esm/src/templates/app/app/[lang]/(__appName__)/(public)/signin/page.js +30 -0
- package/esm/src/templates/app/app/[lang]/(__appName__)/(public)/termsofservice/page.js +21 -0
- package/esm/src/templates/app/app/[lang]/(__appName__)/(public)/unknown/page.js +31 -0
- package/esm/src/templates/app/app/[lang]/(__appName__)/(user)/layout.js +23 -0
- package/esm/src/templates/app/app/[lang]/(__appName__)/(user)/self/page.js +40 -0
- package/esm/src/templates/app/app/[lang]/(__appName__)/layout.js +34 -0
- package/esm/src/templates/app/app/[lang]/(__appName__)/styles.css.template +19 -0
- package/esm/src/templates/app/app/[lang]/admin/layout.js +34 -0
- package/esm/src/templates/app/app/[lang]/admin/page.js +43 -0
- package/esm/src/templates/app/app/csr.js +14 -0
- package/esm/src/templates/app/app/index.html.template +13 -0
- package/esm/src/templates/app/app/layout.js +18 -0
- package/esm/src/templates/app/capacitor.config.ts.template +8 -0
- package/esm/src/templates/app/env/env.client.debug.ts.template +7 -0
- package/esm/src/templates/app/env/env.client.develop.ts.template +7 -0
- package/esm/src/templates/app/env/env.client.local.ts.template +7 -0
- package/esm/src/templates/app/env/env.client.main.ts.template +7 -0
- package/esm/src/templates/app/env/env.client.testing.ts.template +7 -0
- package/esm/src/templates/app/env/env.server.debug.ts.template +15 -0
- package/esm/src/templates/app/env/env.server.develop.ts.template +15 -0
- package/esm/src/templates/app/env/env.server.local.ts.template +15 -0
- package/esm/src/templates/app/env/env.server.main.ts.template +15 -0
- package/esm/src/templates/app/env/env.server.testing.ts.template +7 -0
- package/esm/src/templates/app/lib/setting/Setting.Template.js +37 -0
- package/esm/src/templates/app/lib/setting/Setting.Unit.js +18 -0
- package/esm/src/templates/app/lib/setting/Setting.Util.js +14 -0
- package/esm/src/templates/app/lib/setting/Setting.View.js +31 -0
- package/esm/src/templates/app/lib/setting/Setting.Zone.js +60 -0
- package/esm/src/templates/app/lib/setting/index.js +41 -0
- package/esm/src/templates/app/lib/summary/Summary.Template.js +23 -0
- package/esm/src/templates/app/lib/summary/Summary.Unit.js +18 -0
- package/esm/src/templates/app/lib/summary/Summary.Util.js +13 -0
- package/esm/src/templates/app/lib/summary/Summary.View.js +31 -0
- package/esm/src/templates/app/lib/summary/Summary.Zone.js +42 -0
- package/esm/src/templates/app/lib/summary/index.js +47 -0
- package/esm/src/templates/app/lib/user/User.Template.js +45 -0
- package/esm/src/templates/app/lib/user/User.Unit.js +18 -0
- package/esm/src/templates/app/lib/user/User.Util.js +74 -0
- package/esm/src/templates/app/lib/user/User.View.js +46 -0
- package/esm/src/templates/app/lib/user/User.Zone.js +54 -0
- package/esm/src/templates/app/lib/user/index.js +41 -0
- package/esm/src/templates/app/main.js +2 -1
- package/esm/src/templates/app/page.test.ts.template +10 -0
- package/esm/src/templates/app/playwright.config.ts.template +6 -0
- package/esm/src/templates/app/postcss.config.js.template +10 -0
- package/esm/src/templates/app/public/favicon.ico +0 -0
- package/esm/src/templates/app/public/icons/icon-128x128.png +0 -0
- package/esm/src/templates/app/public/icons/icon-144x144.png +0 -0
- package/esm/src/templates/app/public/icons/icon-152x152.png +0 -0
- package/esm/src/templates/app/public/icons/icon-192x192.png +0 -0
- package/esm/src/templates/app/public/icons/icon-256x256.png +0 -0
- package/esm/src/templates/app/public/icons/icon-384x384.png +0 -0
- package/esm/src/templates/app/public/icons/icon-48x48.png +0 -0
- package/esm/src/templates/app/public/icons/icon-512x512.png +0 -0
- package/esm/src/templates/app/public/icons/icon-72x72.png +0 -0
- package/esm/src/templates/app/public/icons/icon-96x96.png +0 -0
- package/esm/src/templates/app/public/logo.svg +70 -0
- package/esm/src/templates/app/public/manifest.json.template +67 -0
- package/esm/src/templates/app/tsconfig.json.template +22 -0
- package/esm/src/templates/app/tsconfig.spec.json.template +7 -0
- package/esm/src/templates/app/ui/Footer.js +47 -0
- package/esm/src/templates/app/ui/MainHeader.js +111 -0
- package/esm/src/templates/crudPages/[__model__Id]/edit/page.js +53 -0
- package/esm/src/templates/crudPages/[__model__Id]/page.js +63 -0
- package/esm/src/templates/crudPages/new/page.js +50 -0
- package/esm/src/templates/crudPages/page.js +51 -0
- package/esm/src/templates/libRoot/.gitignore.template +15 -0
- package/esm/src/templates/libRoot/env/env.server.example.ts.template +7 -0
- package/esm/src/templates/libRoot/env/env.server.testing.ts.template +7 -0
- package/esm/src/templates/libRoot/lib/setting/Setting.Template.js +37 -0
- package/esm/src/templates/libRoot/lib/setting/Setting.Unit.js +18 -0
- package/esm/src/templates/libRoot/lib/setting/Setting.Util.js +14 -0
- package/esm/src/templates/libRoot/lib/setting/Setting.View.js +31 -0
- package/esm/src/templates/libRoot/lib/setting/Setting.Zone.js +60 -0
- package/esm/src/templates/libRoot/lib/setting/index.js +41 -0
- package/esm/src/templates/libRoot/lib/summary/Summary.Template.js +23 -0
- package/esm/src/templates/libRoot/lib/summary/Summary.Unit.js +18 -0
- package/esm/src/templates/libRoot/lib/summary/Summary.Util.js +13 -0
- package/esm/src/templates/libRoot/lib/summary/Summary.View.js +31 -0
- package/esm/src/templates/libRoot/lib/summary/Summary.Zone.js +42 -0
- package/esm/src/templates/libRoot/lib/summary/index.js +47 -0
- package/esm/src/templates/libRoot/lib/user/User.Template.js +45 -0
- package/esm/src/templates/libRoot/lib/user/User.Unit.js +18 -0
- package/esm/src/templates/libRoot/lib/user/User.Util.js +74 -0
- package/esm/src/templates/libRoot/lib/user/User.View.js +46 -0
- package/esm/src/templates/libRoot/lib/user/User.Zone.js +54 -0
- package/esm/src/templates/libRoot/lib/user/index.js +41 -0
- package/esm/src/templates/libRoot/package.json.template +4 -0
- package/esm/src/templates/libRoot/tsconfig.json.template +13 -0
- package/esm/src/templates/libRoot/tsconfig.spec.json.template +7 -0
- package/esm/src/templates/localDev/docker-compose.yaml.template +36 -0
- package/esm/src/templates/module/__Model__.Template.js +34 -0
- package/esm/src/templates/module/__Model__.Unit.js +22 -0
- package/esm/src/templates/module/__Model__.Util.js +50 -0
- package/esm/src/templates/module/__Model__.View.js +28 -0
- package/esm/src/templates/module/__Model__.Zone.js +63 -0
- package/esm/src/templates/module/index.js +41 -0
- package/esm/src/templates/pkgRoot/tsconfig.json.template +15 -0
- package/esm/src/templates/workspaceRoot/.env.template +20 -0
- package/esm/src/templates/workspaceRoot/.gitignore.template +118 -0
- package/esm/src/templates/workspaceRoot/.prettierignore.template +10 -0
- package/esm/src/templates/workspaceRoot/.prettierrc.json.template +6 -0
- package/esm/src/templates/workspaceRoot/.swcrc.template +9 -0
- package/esm/src/templates/workspaceRoot/.vscode/settings.json.template +13 -0
- package/esm/src/templates/workspaceRoot/README.md.template +37 -0
- package/esm/src/templates/workspaceRoot/eslint.config.ts.template +3 -0
- package/esm/src/templates/workspaceRoot/package.json.template +43 -0
- package/esm/src/templates/workspaceRoot/tsconfig.json.template +29 -0
- package/package.json +1 -1
- package/src/application/application.command.d.ts +1 -0
- package/src/application/application.runner.d.ts +6 -1
- package/src/application/application.script.d.ts +3 -1
- package/src/guidelines/___library/sharedUiStructureDescription.en.md +0 -18
- package/src/templates/app/app/[lang]/(__appName__)/(public)/forgotpassword/page.d.ts +9 -0
- package/src/templates/app/app/[lang]/(__appName__)/(public)/page.d.ts +9 -0
- package/src/templates/app/app/[lang]/(__appName__)/(public)/privacy/page.d.ts +9 -0
- package/src/templates/app/app/[lang]/(__appName__)/(public)/signin/page.d.ts +9 -0
- package/src/templates/app/app/[lang]/(__appName__)/(public)/termsofservice/page.d.ts +10 -0
- package/src/templates/app/app/[lang]/(__appName__)/(public)/unknown/page.d.ts +9 -0
- package/src/templates/app/app/[lang]/(__appName__)/(user)/layout.d.ts +9 -0
- package/src/templates/app/app/[lang]/(__appName__)/(user)/self/page.d.ts +9 -0
- package/src/templates/app/app/[lang]/(__appName__)/layout.d.ts +9 -0
- package/src/templates/app/app/[lang]/admin/layout.d.ts +9 -0
- package/src/templates/app/app/[lang]/admin/page.d.ts +9 -0
- package/src/templates/app/app/csr.d.ts +9 -0
- package/src/templates/app/app/layout.d.ts +9 -0
- package/src/templates/app/lib/setting/Setting.Template.d.ts +9 -0
- package/src/templates/app/lib/setting/Setting.Unit.d.ts +9 -0
- package/src/templates/app/lib/setting/Setting.Util.d.ts +9 -0
- package/src/templates/app/lib/setting/Setting.View.d.ts +9 -0
- package/src/templates/app/lib/setting/Setting.Zone.d.ts +9 -0
- package/src/templates/app/lib/setting/index.d.ts +9 -0
- package/src/templates/app/lib/summary/Summary.Template.d.ts +9 -0
- package/src/templates/app/lib/summary/Summary.Unit.d.ts +9 -0
- package/src/templates/app/lib/summary/Summary.Util.d.ts +9 -0
- package/src/templates/app/lib/summary/Summary.View.d.ts +9 -0
- package/src/templates/app/lib/summary/Summary.Zone.d.ts +9 -0
- package/src/templates/app/lib/summary/index.d.ts +9 -0
- package/src/templates/app/lib/user/User.Template.d.ts +9 -0
- package/src/templates/app/lib/user/User.Unit.d.ts +9 -0
- package/src/templates/app/lib/user/User.Util.d.ts +9 -0
- package/src/templates/app/lib/user/User.View.d.ts +9 -0
- package/src/templates/app/lib/user/User.Zone.d.ts +9 -0
- package/src/templates/app/lib/user/index.d.ts +9 -0
- package/src/templates/app/ui/Footer.d.ts +9 -0
- package/src/templates/app/ui/MainHeader.d.ts +10 -0
- package/src/templates/crudPages/[__model__Id]/edit/page.d.ts +11 -0
- package/src/templates/crudPages/[__model__Id]/page.d.ts +11 -0
- package/src/templates/crudPages/new/page.d.ts +11 -0
- package/src/templates/crudPages/page.d.ts +11 -0
- package/src/templates/libRoot/lib/setting/Setting.Template.d.ts +9 -0
- package/src/templates/libRoot/lib/setting/Setting.Unit.d.ts +9 -0
- package/src/templates/libRoot/lib/setting/Setting.Util.d.ts +9 -0
- package/src/templates/libRoot/lib/setting/Setting.View.d.ts +9 -0
- package/src/templates/libRoot/lib/setting/Setting.Zone.d.ts +9 -0
- package/src/templates/libRoot/lib/setting/index.d.ts +9 -0
- package/src/templates/libRoot/lib/summary/Summary.Template.d.ts +9 -0
- package/src/templates/libRoot/lib/summary/Summary.Unit.d.ts +9 -0
- package/src/templates/libRoot/lib/summary/Summary.Util.d.ts +9 -0
- package/src/templates/libRoot/lib/summary/Summary.View.d.ts +9 -0
- package/src/templates/libRoot/lib/summary/Summary.Zone.d.ts +9 -0
- package/src/templates/libRoot/lib/summary/index.d.ts +9 -0
- package/src/templates/libRoot/lib/user/User.Template.d.ts +9 -0
- package/src/templates/libRoot/lib/user/User.Unit.d.ts +9 -0
- package/src/templates/libRoot/lib/user/User.Util.d.ts +9 -0
- package/src/templates/libRoot/lib/user/User.View.d.ts +9 -0
- package/src/templates/libRoot/lib/user/User.Zone.d.ts +9 -0
- package/src/templates/libRoot/lib/user/index.d.ts +9 -0
- package/src/templates/module/__Model__.Template.d.ts +11 -0
- package/src/templates/module/__Model__.Unit.d.ts +11 -0
- package/src/templates/module/__Model__.Util.d.ts +11 -0
- package/src/templates/module/__Model__.View.d.ts +11 -0
- package/src/templates/module/__Model__.Zone.d.ts +11 -0
- package/src/templates/module/index.d.ts +11 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"testing.saveBeforeTest": false,
|
|
3
|
+
"jest.autoRun": "false",
|
|
4
|
+
"jestTestExplorer.flattenExplorer": false,
|
|
5
|
+
"eslint.validate": ["json"],
|
|
6
|
+
"prettier.configPath": ".prettierrc.json",
|
|
7
|
+
"tailwindCSS.classAttributes": ["class", "className", ".*Class", ".*ClassName"],
|
|
8
|
+
"colorize.languages": ["typescript", "javascript", "css", "scss"],
|
|
9
|
+
"typescript.tsserver.maxTsServerMemory": 16384,
|
|
10
|
+
"typescript.enablePromptUseWorkspaceTsdk": true,
|
|
11
|
+
"typescript.tsdk": "node_modules/typescript/lib",
|
|
12
|
+
"eslint.useFlatConfig": true
|
|
13
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
## Get Started
|
|
2
|
+
|
|
3
|
+
Run the code below.
|
|
4
|
+
|
|
5
|
+
```
|
|
6
|
+
npm run downloadEnv # Need to register your public key
|
|
7
|
+
|
|
8
|
+
npm i -g akan pnpm
|
|
9
|
+
|
|
10
|
+
pnpm i
|
|
11
|
+
|
|
12
|
+
cat <<EOF >> .env
|
|
13
|
+
# organization configuration, no need to change
|
|
14
|
+
NEXT_PUBLIC_REPO_NAME=<%= repoName %>
|
|
15
|
+
NEXT_PUBLIC_SERVE_DOMAIN="<%= serveDomain %>"
|
|
16
|
+
|
|
17
|
+
# development branch, debug, develop, main, etc. mainly it changes databases.
|
|
18
|
+
NEXT_PUBLIC_ENV=debug
|
|
19
|
+
|
|
20
|
+
# local, cloud, edge it changes the connection point of the clients.
|
|
21
|
+
NEXT_PUBLIC_OPERATION_MODE=local
|
|
22
|
+
# hybrid app specific config, will be depreciated in the future
|
|
23
|
+
APP_OPERATION_MODE=local
|
|
24
|
+
|
|
25
|
+
# backend service mode, federation, batch, all
|
|
26
|
+
SERVER_MODE=federation
|
|
27
|
+
|
|
28
|
+
# analyze the bundle size
|
|
29
|
+
ANALYZE=false
|
|
30
|
+
|
|
31
|
+
# log level, debug, info, warn, error
|
|
32
|
+
NEXT_PUBLIC_LOG_LEVEL=debug
|
|
33
|
+
EOF
|
|
34
|
+
|
|
35
|
+
akan serve-backend <%= appName %>
|
|
36
|
+
# or akan serve-frontend <%= appName %>, etc
|
|
37
|
+
```
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "<%= repoName %>",
|
|
3
|
+
"description": "<%= repoName %> workspace",
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"dependencies": {
|
|
6
|
+
"next": "15.3.2",
|
|
7
|
+
"react": "18.3.1",
|
|
8
|
+
"react-dom": "18.3.1",
|
|
9
|
+
"tailwindcss": "^4.1.7",
|
|
10
|
+
"daisyui": "^5.0.35"
|
|
11
|
+
},
|
|
12
|
+
"devDependencies": {
|
|
13
|
+
"@tailwindcss/postcss": "^4.1.7",
|
|
14
|
+
"@types/react": "18.3.1",
|
|
15
|
+
"@types/react-dom": "18.3.1",
|
|
16
|
+
"crypto-browserify": "^3.12.1",
|
|
17
|
+
"eslint": "^9.19.0",
|
|
18
|
+
"https-browserify": "^1.0.0",
|
|
19
|
+
"jest": "^29.7.0",
|
|
20
|
+
"jiti": "^2.4.2",
|
|
21
|
+
"os-browserify": "^0.3.0",
|
|
22
|
+
"prettier": "^3.5.3",
|
|
23
|
+
"prettier-plugin-tailwindcss": "^0.6.11",
|
|
24
|
+
"process": "^0.11.10",
|
|
25
|
+
"stream-browserify": "^3.0.0",
|
|
26
|
+
"stream-http": "^3.2.0",
|
|
27
|
+
"tailwind-scrollbar": "4.0.2",
|
|
28
|
+
"tailwindcss-animation-delay": "^2.0.2",
|
|
29
|
+
"tailwindcss-radix": "^4.0.2",
|
|
30
|
+
"ts-jest": "^29.3.4",
|
|
31
|
+
"url-polyfill": "^1.1.13",
|
|
32
|
+
"vite": "^6.3.5",
|
|
33
|
+
"vite-plugin-commonjs": "^0.10.4",
|
|
34
|
+
"vite-plugin-node-polyfills": "^0.23.0",
|
|
35
|
+
"vite-tsconfig-paths": "^5.1.4",
|
|
36
|
+
"vm-browserify": "^1.1.2"
|
|
37
|
+
},
|
|
38
|
+
"packageManager": "pnpm@10.11.0",
|
|
39
|
+
"engines": {
|
|
40
|
+
"node": ">=22",
|
|
41
|
+
"pnpm": ">=10"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compileOnSave": false,
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"rootDir": ".",
|
|
5
|
+
"sourceMap": true,
|
|
6
|
+
"declaration": false,
|
|
7
|
+
"moduleResolution": "node",
|
|
8
|
+
"emitDecoratorMetadata": true,
|
|
9
|
+
"isolatedModules": true,
|
|
10
|
+
"esModuleInterop": true,
|
|
11
|
+
"experimentalDecorators": true,
|
|
12
|
+
"noPropertyAccessFromIndexSignature": false,
|
|
13
|
+
"importHelpers": false,
|
|
14
|
+
"target": "es2022",
|
|
15
|
+
"module": "esnext",
|
|
16
|
+
"types": ["node", "webpack-env", "vite/client", "kakao.maps.d.ts", "jest"],
|
|
17
|
+
"lib": ["es2017", "dom", "webworker"],
|
|
18
|
+
"skipLibCheck": true,
|
|
19
|
+
"skipDefaultLibCheck": true,
|
|
20
|
+
"strictNullChecks": true,
|
|
21
|
+
"baseUrl": ".",
|
|
22
|
+
"jsx": "preserve",
|
|
23
|
+
"resolveJsonModule": true,
|
|
24
|
+
"paths": {
|
|
25
|
+
"@/*": ["*"]
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"exclude": ["**/node_modules", "tmp", "**/ios", "**/android"]
|
|
29
|
+
}
|
package/package.json
CHANGED
|
@@ -5,6 +5,7 @@ export declare class ApplicationCommand {
|
|
|
5
5
|
createApplication(appName: string, start: boolean, workspace: Workspace): Promise<void>;
|
|
6
6
|
removeApplication(app: App): Promise<void>;
|
|
7
7
|
syncApplication(app: App): Promise<void>;
|
|
8
|
+
script(app: App, filename: string | null): Promise<void>;
|
|
8
9
|
build(app: App): Promise<void>;
|
|
9
10
|
buildBackend(app: App): Promise<void>;
|
|
10
11
|
buildFrontend(app: App): Promise<void>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { type AppConfigResult } from "@akanjs/config";
|
|
2
2
|
import { App, AppExecutor, type Workspace } from "@akanjs/devkit";
|
|
3
|
+
import type { SpawnOptions } from "child_process";
|
|
3
4
|
export interface ReleaseSourceOptions {
|
|
4
5
|
rebuild?: boolean;
|
|
5
6
|
buildNum?: number;
|
|
@@ -12,12 +13,16 @@ export declare class ApplicationRunner {
|
|
|
12
13
|
removeApplication(app: App): Promise<void>;
|
|
13
14
|
getConfig(app: App): Promise<AppConfigResult>;
|
|
14
15
|
scanSync(app: App, akanConfig: AppConfigResult): Promise<import("@akanjs/config").AppScanResult | import("@akanjs/config").LibScanResult>;
|
|
16
|
+
getScriptFilename(app: App): Promise<string>;
|
|
17
|
+
runScript(app: App, filename: string): Promise<void>;
|
|
15
18
|
buildBackend(app: App): Promise<void>;
|
|
16
19
|
startBackend(app: App, { open, onStart }?: {
|
|
17
20
|
open?: boolean;
|
|
18
21
|
onStart?: () => void;
|
|
19
22
|
}): Promise<void>;
|
|
20
|
-
buildFrontend(app: App
|
|
23
|
+
buildFrontend(app: App, { spawnOptions }?: {
|
|
24
|
+
spawnOptions?: SpawnOptions;
|
|
25
|
+
}): Promise<void>;
|
|
21
26
|
startFrontend(app: App, { open, turbo, onStart }?: {
|
|
22
27
|
open?: boolean;
|
|
23
28
|
turbo?: boolean;
|
|
@@ -9,6 +9,7 @@ export declare class ApplicationScript {
|
|
|
9
9
|
}): Promise<void>;
|
|
10
10
|
removeApplication(app: App): Promise<void>;
|
|
11
11
|
syncApplication(app: App): Promise<import("@akanjs/config").AppScanResult | import("@akanjs/config").LibScanResult>;
|
|
12
|
+
script(app: App, filename: string | null): Promise<void>;
|
|
12
13
|
build(app: App): Promise<void>;
|
|
13
14
|
start(app: App, { open }?: {
|
|
14
15
|
open?: boolean;
|
|
@@ -21,8 +22,9 @@ export declare class ApplicationScript {
|
|
|
21
22
|
dbup?: boolean;
|
|
22
23
|
sync?: boolean;
|
|
23
24
|
}): Promise<void>;
|
|
24
|
-
buildFrontend(app: App, { sync }?: {
|
|
25
|
+
buildFrontend(app: App, { sync, standalone }?: {
|
|
25
26
|
sync?: boolean;
|
|
27
|
+
standalone?: boolean;
|
|
26
28
|
}): Promise<void>;
|
|
27
29
|
startFrontend(app: App, { open, turbo, sync }?: {
|
|
28
30
|
open?: boolean;
|
|
@@ -559,24 +559,6 @@ Key features:
|
|
|
559
559
|
- Simultaneous Korean/English address provision
|
|
560
560
|
- Modal address search
|
|
561
561
|
|
|
562
|
-
### 26. Field.KoreanCityDistrict
|
|
563
|
-
|
|
564
|
-
\`\`\`typescript
|
|
565
|
-
interface KoreanCityDistrictProps {
|
|
566
|
-
city: string | null;
|
|
567
|
-
onChangeCity: (city: string | null) => void;
|
|
568
|
-
district: string | null;
|
|
569
|
-
onChangeDistrict: (district: string | null) => void;
|
|
570
|
-
disabled?: boolean;
|
|
571
|
-
}
|
|
572
|
-
\`\`\`
|
|
573
|
-
Key features:
|
|
574
|
-
|
|
575
|
-
- Hardcoded Korean region data
|
|
576
|
-
- Two-level selection (city/province → district/county)
|
|
577
|
-
- Includes detailed regions: 25 districts in Seoul, 16 in Busan, etc.
|
|
578
|
-
- Linked selection (district activates after city selection)
|
|
579
|
-
|
|
580
562
|
## Common Patterns and Features
|
|
581
563
|
|
|
582
564
|
### 1. Caching System
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
[key: string]: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict?: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
appName: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
CompanyName: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
appName: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
CompanyName: string;
|
|
4
|
+
AppName: string;
|
|
5
|
+
}
|
|
6
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
7
|
+
filename: string;
|
|
8
|
+
content: string;
|
|
9
|
+
};
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
appName: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
appName: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
appName: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
appName: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
appName: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
appName: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
appName: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
appName: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
appName: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
[key: string]: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict?: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
[key: string]: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict?: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
appName: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
appName: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
[key: string]: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict?: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
appName: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
[key: string]: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict?: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
[key: string]: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict?: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
appName: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
appName: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
[key: string]: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict?: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
appName: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
[key: string]: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict?: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
appName: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
appName: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
appName: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
[key: string]: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict?: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
CompanyName: string;
|
|
4
|
+
}
|
|
5
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
6
|
+
filename: string;
|
|
7
|
+
content: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
appName: string;
|
|
4
|
+
AppName: string;
|
|
5
|
+
}
|
|
6
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
7
|
+
filename: string;
|
|
8
|
+
content: string;
|
|
9
|
+
};
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
Model: string;
|
|
4
|
+
model: string;
|
|
5
|
+
appName: string;
|
|
6
|
+
}
|
|
7
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
8
|
+
filename: string;
|
|
9
|
+
content: string;
|
|
10
|
+
};
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
Model: string;
|
|
4
|
+
model: string;
|
|
5
|
+
appName: string;
|
|
6
|
+
}
|
|
7
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
8
|
+
filename: string;
|
|
9
|
+
content: string;
|
|
10
|
+
};
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
Model: string;
|
|
4
|
+
model: string;
|
|
5
|
+
appName: string;
|
|
6
|
+
}
|
|
7
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
8
|
+
filename: string;
|
|
9
|
+
content: string;
|
|
10
|
+
};
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { AppScanResult, LibScanResult } from "@akanjs/config";
|
|
2
|
+
interface Dict {
|
|
3
|
+
Model: string;
|
|
4
|
+
model: string;
|
|
5
|
+
appName: string;
|
|
6
|
+
}
|
|
7
|
+
export default function getContent(scanResult: AppScanResult | LibScanResult | null, dict: Dict): {
|
|
8
|
+
filename: string;
|
|
9
|
+
content: string;
|
|
10
|
+
};
|
|
11
|
+
export {};
|