@akanjs/cli 0.0.142 → 0.0.144
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/README.md +8 -0
- package/cjs/index.js +2437 -3204
- package/cjs/src/guidelines/___library/sharedUiStructureDescription.en.md +786 -0
- package/cjs/src/guidelines/___library/utilUiStructureDescription.en.md +395 -0
- package/cjs/src/guidelines/___lint/lintRuleDescription.en.md +64 -0
- package/cjs/src/guidelines/___module/moduleStructureDescription.en.md +80 -0
- package/cjs/src/guidelines/componentRule/componentRule.instruction.md +732 -0
- package/cjs/src/guidelines/databaseModule/databaseModule.instruction.md +691 -0
- package/cjs/src/guidelines/enumConstant/enumConstant.instruction.md +232 -0
- package/cjs/src/guidelines/fieldDecorator/fieldDecorator.instruction.md +611 -0
- package/cjs/src/guidelines/framework/framework.instruction.md +1112 -0
- package/cjs/src/guidelines/modelConstant/modelConstant.instruction.md +958 -0
- package/cjs/src/guidelines/modelDictionary/modelDictionary.instruction.md +583 -0
- package/cjs/src/guidelines/modelDocument/modelDocument.instruction.md +683 -0
- package/cjs/src/guidelines/modelService/modelService.instruction.md +935 -0
- package/cjs/src/guidelines/modelSignal/modelSignal.instruction.md +588 -0
- package/cjs/src/guidelines/modelStore/modelStore.instruction.md +591 -0
- package/cjs/src/guidelines/modelTemplate/modelTemplate.instruction.md +577 -0
- package/cjs/src/guidelines/modelUnit/modelUnit.instruction.md +833 -0
- package/cjs/src/guidelines/modelUtil/modelUtil.instruction.md +752 -0
- package/cjs/src/guidelines/modelView/modelView.instruction.md +1005 -0
- package/cjs/src/guidelines/modelZone/modelZone.instruction.md +528 -0
- package/cjs/src/guidelines/scalarConstant/scalarConstant.instruction.md +489 -0
- package/cjs/src/guidelines/scalarDictionary/scalarDictionary.instruction.md +347 -0
- package/cjs/src/guidelines/sharedUiUsage/sharedUiUsage.instruction.md +318 -0
- package/cjs/src/guidelines/utilUiUsage/utilUiUsage.instruction.md +339 -0
- package/cjs/src/templates/module/__model__.dictionary.js +4 -5
- package/esm/index.js +2524 -3286
- package/esm/src/guidelines/___library/sharedUiStructureDescription.en.md +786 -0
- package/esm/src/guidelines/___library/utilUiStructureDescription.en.md +395 -0
- package/esm/src/guidelines/___lint/lintRuleDescription.en.md +64 -0
- package/esm/src/guidelines/___module/moduleStructureDescription.en.md +80 -0
- package/esm/src/guidelines/componentRule/componentRule.instruction.md +732 -0
- package/esm/src/guidelines/databaseModule/databaseModule.instruction.md +691 -0
- package/esm/src/guidelines/enumConstant/enumConstant.instruction.md +232 -0
- package/esm/src/guidelines/fieldDecorator/fieldDecorator.instruction.md +611 -0
- package/esm/src/guidelines/framework/framework.instruction.md +1112 -0
- package/esm/src/guidelines/modelConstant/modelConstant.instruction.md +958 -0
- package/esm/src/guidelines/modelDictionary/modelDictionary.instruction.md +583 -0
- package/esm/src/guidelines/modelDocument/modelDocument.instruction.md +683 -0
- package/esm/src/guidelines/modelService/modelService.instruction.md +935 -0
- package/esm/src/guidelines/modelSignal/modelSignal.instruction.md +588 -0
- package/esm/src/guidelines/modelStore/modelStore.instruction.md +591 -0
- package/esm/src/guidelines/modelTemplate/modelTemplate.instruction.md +577 -0
- package/esm/src/guidelines/modelUnit/modelUnit.instruction.md +833 -0
- package/esm/src/guidelines/modelUtil/modelUtil.instruction.md +752 -0
- package/esm/src/guidelines/modelView/modelView.instruction.md +1005 -0
- package/esm/src/guidelines/modelZone/modelZone.instruction.md +528 -0
- package/esm/src/guidelines/scalarConstant/scalarConstant.instruction.md +489 -0
- package/esm/src/guidelines/scalarDictionary/scalarDictionary.instruction.md +347 -0
- package/esm/src/guidelines/sharedUiUsage/sharedUiUsage.instruction.md +318 -0
- package/esm/src/guidelines/utilUiUsage/utilUiUsage.instruction.md +339 -0
- package/esm/src/templates/module/__model__.dictionary.js +4 -5
- package/package.json +3 -1
- package/src/guideline/guideline.command.d.ts +7 -0
- package/src/guideline/guideline.prompt.d.ts +15 -0
- package/src/guideline/guideline.runner.d.ts +5 -0
- package/src/guideline/guideline.script.d.ts +6 -0
- package/src/guidelines/___library/sharedUiStructureDescription.en.md +786 -0
- package/src/guidelines/___library/utilUiStructureDescription.en.md +395 -0
- package/src/guidelines/___lint/lintRuleDescription.en.md +64 -0
- package/src/guidelines/___module/moduleStructureDescription.en.md +80 -0
- package/src/guidelines/componentRule/componentRule.instruction.md +732 -0
- package/src/guidelines/databaseModule/databaseModule.instruction.md +691 -0
- package/src/guidelines/enumConstant/enumConstant.instruction.md +232 -0
- package/src/guidelines/fieldDecorator/fieldDecorator.instruction.md +611 -0
- package/src/guidelines/framework/framework.instruction.md +1112 -0
- package/src/guidelines/modelConstant/modelConstant.instruction.md +958 -0
- package/src/guidelines/modelDictionary/modelDictionary.instruction.md +583 -0
- package/src/guidelines/modelDocument/modelDocument.instruction.md +683 -0
- package/src/guidelines/modelService/modelService.instruction.md +935 -0
- package/src/guidelines/modelSignal/modelSignal.instruction.md +588 -0
- package/src/guidelines/modelStore/modelStore.instruction.md +591 -0
- package/src/guidelines/modelTemplate/modelTemplate.instruction.md +577 -0
- package/src/guidelines/modelUnit/modelUnit.instruction.md +833 -0
- package/src/guidelines/modelUtil/modelUtil.instruction.md +752 -0
- package/src/guidelines/modelView/modelView.instruction.md +1005 -0
- package/src/guidelines/modelZone/modelZone.instruction.md +528 -0
- package/src/guidelines/scalarConstant/scalarConstant.instruction.md +489 -0
- package/src/guidelines/scalarDictionary/scalarDictionary.instruction.md +347 -0
- package/src/guidelines/sharedUiUsage/sharedUiUsage.instruction.md +318 -0
- package/src/guidelines/utilUiUsage/utilUiUsage.instruction.md +339 -0
- package/src/module/module.command.d.ts +6 -8
- package/src/module/module.prompt.d.ts +2 -15
- package/src/module/module.request.d.ts +22 -18
- package/src/module/module.runner.d.ts +4 -20
- package/src/module/module.script.d.ts +6 -7
- package/src/scalar/scalar.command.d.ts +7 -0
- package/src/scalar/scalar.prompt.d.ts +23 -0
- package/src/scalar/scalar.runner.d.ts +13 -0
- package/src/scalar/scalar.script.d.ts +6 -0
- package/cjs/src/templates/app/app/[lang]/(__appName__)/(public)/forgotpassword/page.js +0 -47
- package/cjs/src/templates/app/app/[lang]/(__appName__)/(public)/page.js +0 -128
- package/cjs/src/templates/app/app/[lang]/(__appName__)/(public)/privacy/page.js +0 -42
- package/cjs/src/templates/app/app/[lang]/(__appName__)/(public)/signin/page.js +0 -50
- package/cjs/src/templates/app/app/[lang]/(__appName__)/(public)/termsofservice/page.js +0 -41
- package/cjs/src/templates/app/app/[lang]/(__appName__)/(public)/unknown/page.js +0 -51
- package/cjs/src/templates/app/app/[lang]/(__appName__)/(user)/layout.js +0 -43
- package/cjs/src/templates/app/app/[lang]/(__appName__)/(user)/self/page.js +0 -60
- package/cjs/src/templates/app/app/[lang]/(__appName__)/layout.js +0 -54
- package/cjs/src/templates/app/app/[lang]/(__appName__)/styles.css.template +0 -19
- package/cjs/src/templates/app/app/[lang]/admin/layout.js +0 -54
- package/cjs/src/templates/app/app/[lang]/admin/page.js +0 -63
- package/cjs/src/templates/app/app/csr.js +0 -34
- package/cjs/src/templates/app/app/index.html.template +0 -13
- package/cjs/src/templates/app/app/layout.js +0 -38
- package/cjs/src/templates/app/capacitor.config.ts.template +0 -8
- package/cjs/src/templates/app/env/env.client.debug.ts.template +0 -7
- package/cjs/src/templates/app/env/env.client.develop.ts.template +0 -7
- package/cjs/src/templates/app/env/env.client.local.ts.template +0 -7
- package/cjs/src/templates/app/env/env.client.main.ts.template +0 -7
- package/cjs/src/templates/app/env/env.client.testing.ts.template +0 -7
- package/cjs/src/templates/app/env/env.server.debug.ts.template +0 -15
- package/cjs/src/templates/app/env/env.server.develop.ts.template +0 -15
- package/cjs/src/templates/app/env/env.server.local.ts.template +0 -15
- package/cjs/src/templates/app/env/env.server.main.ts.template +0 -15
- package/cjs/src/templates/app/env/env.server.testing.ts.template +0 -7
- package/cjs/src/templates/app/lib/setting/Setting.Template.js +0 -57
- package/cjs/src/templates/app/lib/setting/Setting.Unit.js +0 -38
- package/cjs/src/templates/app/lib/setting/Setting.Util.js +0 -34
- package/cjs/src/templates/app/lib/setting/Setting.View.js +0 -51
- package/cjs/src/templates/app/lib/setting/Setting.Zone.js +0 -80
- package/cjs/src/templates/app/lib/setting/index.js +0 -61
- package/cjs/src/templates/app/lib/summary/Summary.Template.js +0 -43
- package/cjs/src/templates/app/lib/summary/Summary.Unit.js +0 -38
- package/cjs/src/templates/app/lib/summary/Summary.Util.js +0 -33
- package/cjs/src/templates/app/lib/summary/Summary.View.js +0 -51
- package/cjs/src/templates/app/lib/summary/Summary.Zone.js +0 -62
- package/cjs/src/templates/app/lib/summary/index.js +0 -67
- package/cjs/src/templates/app/lib/user/User.Template.js +0 -65
- package/cjs/src/templates/app/lib/user/User.Unit.js +0 -38
- package/cjs/src/templates/app/lib/user/User.Util.js +0 -94
- package/cjs/src/templates/app/lib/user/User.View.js +0 -66
- package/cjs/src/templates/app/lib/user/User.Zone.js +0 -74
- package/cjs/src/templates/app/lib/user/index.js +0 -61
- package/cjs/src/templates/app/page.test.ts.template +0 -10
- package/cjs/src/templates/app/playwright.config.ts.template +0 -6
- package/cjs/src/templates/app/postcss.config.js.template +0 -10
- package/cjs/src/templates/app/public/manifest.json.template +0 -67
- package/cjs/src/templates/app/tsconfig.json.template +0 -22
- package/cjs/src/templates/app/tsconfig.spec.json.template +0 -7
- package/cjs/src/templates/app/ui/Footer.js +0 -67
- package/cjs/src/templates/app/ui/MainHeader.js +0 -131
- package/cjs/src/templates/crudPages/[__model__Id]/edit/page.js +0 -73
- package/cjs/src/templates/crudPages/[__model__Id]/page.js +0 -83
- package/cjs/src/templates/crudPages/new/page.js +0 -70
- package/cjs/src/templates/crudPages/page.js +0 -71
- package/cjs/src/templates/libRoot/.gitignore.template +0 -15
- package/cjs/src/templates/libRoot/env/env.server.example.ts.template +0 -7
- package/cjs/src/templates/libRoot/env/env.server.testing.ts.template +0 -7
- package/cjs/src/templates/libRoot/lib/setting/Setting.Template.js +0 -57
- package/cjs/src/templates/libRoot/lib/setting/Setting.Unit.js +0 -38
- package/cjs/src/templates/libRoot/lib/setting/Setting.Util.js +0 -34
- package/cjs/src/templates/libRoot/lib/setting/Setting.View.js +0 -51
- package/cjs/src/templates/libRoot/lib/setting/Setting.Zone.js +0 -80
- package/cjs/src/templates/libRoot/lib/setting/index.js +0 -61
- package/cjs/src/templates/libRoot/lib/summary/Summary.Template.js +0 -43
- package/cjs/src/templates/libRoot/lib/summary/Summary.Unit.js +0 -38
- package/cjs/src/templates/libRoot/lib/summary/Summary.Util.js +0 -33
- package/cjs/src/templates/libRoot/lib/summary/Summary.View.js +0 -51
- package/cjs/src/templates/libRoot/lib/summary/Summary.Zone.js +0 -62
- package/cjs/src/templates/libRoot/lib/summary/index.js +0 -67
- package/cjs/src/templates/libRoot/lib/user/User.Template.js +0 -65
- package/cjs/src/templates/libRoot/lib/user/User.Unit.js +0 -38
- package/cjs/src/templates/libRoot/lib/user/User.Util.js +0 -94
- package/cjs/src/templates/libRoot/lib/user/User.View.js +0 -66
- package/cjs/src/templates/libRoot/lib/user/User.Zone.js +0 -74
- package/cjs/src/templates/libRoot/lib/user/index.js +0 -61
- package/cjs/src/templates/libRoot/package.json.template +0 -4
- package/cjs/src/templates/libRoot/tsconfig.json.template +0 -13
- package/cjs/src/templates/libRoot/tsconfig.spec.json.template +0 -7
- package/cjs/src/templates/localDev/docker-compose.yaml.template +0 -36
- package/cjs/src/templates/module/__Model__.Template.js +0 -54
- package/cjs/src/templates/module/__Model__.Unit.js +0 -42
- package/cjs/src/templates/module/__Model__.Util.js +0 -70
- package/cjs/src/templates/module/__Model__.View.js +0 -48
- package/cjs/src/templates/module/__Model__.Zone.js +0 -83
- package/cjs/src/templates/module/index.js +0 -61
- package/cjs/src/templates/pkgRoot/tsconfig.json.template +0 -15
- package/cjs/src/templates/workspaceRoot/.env.template +0 -20
- package/cjs/src/templates/workspaceRoot/.gitignore.template +0 -118
- package/cjs/src/templates/workspaceRoot/.prettierignore.template +0 -10
- package/cjs/src/templates/workspaceRoot/.prettierrc.json.template +0 -6
- package/cjs/src/templates/workspaceRoot/.swcrc.template +0 -9
- package/cjs/src/templates/workspaceRoot/.vscode/settings.json.template +0 -13
- package/cjs/src/templates/workspaceRoot/README.md.template +0 -37
- package/cjs/src/templates/workspaceRoot/eslint.config.ts.template +0 -3
- package/cjs/src/templates/workspaceRoot/package.json.template +0 -43
- package/cjs/src/templates/workspaceRoot/tsconfig.json.template +0 -29
- package/esm/src/templates/app/app/[lang]/(__appName__)/(public)/forgotpassword/page.js +0 -27
- package/esm/src/templates/app/app/[lang]/(__appName__)/(public)/page.js +0 -108
- package/esm/src/templates/app/app/[lang]/(__appName__)/(public)/privacy/page.js +0 -22
- package/esm/src/templates/app/app/[lang]/(__appName__)/(public)/signin/page.js +0 -30
- package/esm/src/templates/app/app/[lang]/(__appName__)/(public)/termsofservice/page.js +0 -21
- package/esm/src/templates/app/app/[lang]/(__appName__)/(public)/unknown/page.js +0 -31
- package/esm/src/templates/app/app/[lang]/(__appName__)/(user)/layout.js +0 -23
- package/esm/src/templates/app/app/[lang]/(__appName__)/(user)/self/page.js +0 -40
- package/esm/src/templates/app/app/[lang]/(__appName__)/layout.js +0 -34
- package/esm/src/templates/app/app/[lang]/(__appName__)/styles.css.template +0 -19
- package/esm/src/templates/app/app/[lang]/admin/layout.js +0 -34
- package/esm/src/templates/app/app/[lang]/admin/page.js +0 -43
- package/esm/src/templates/app/app/csr.js +0 -14
- package/esm/src/templates/app/app/index.html.template +0 -13
- package/esm/src/templates/app/app/layout.js +0 -18
- package/esm/src/templates/app/capacitor.config.ts.template +0 -8
- package/esm/src/templates/app/env/env.client.debug.ts.template +0 -7
- package/esm/src/templates/app/env/env.client.develop.ts.template +0 -7
- package/esm/src/templates/app/env/env.client.local.ts.template +0 -7
- package/esm/src/templates/app/env/env.client.main.ts.template +0 -7
- package/esm/src/templates/app/env/env.client.testing.ts.template +0 -7
- package/esm/src/templates/app/env/env.server.debug.ts.template +0 -15
- package/esm/src/templates/app/env/env.server.develop.ts.template +0 -15
- package/esm/src/templates/app/env/env.server.local.ts.template +0 -15
- package/esm/src/templates/app/env/env.server.main.ts.template +0 -15
- package/esm/src/templates/app/env/env.server.testing.ts.template +0 -7
- package/esm/src/templates/app/lib/setting/Setting.Template.js +0 -37
- package/esm/src/templates/app/lib/setting/Setting.Unit.js +0 -18
- package/esm/src/templates/app/lib/setting/Setting.Util.js +0 -14
- package/esm/src/templates/app/lib/setting/Setting.View.js +0 -31
- package/esm/src/templates/app/lib/setting/Setting.Zone.js +0 -60
- package/esm/src/templates/app/lib/setting/index.js +0 -41
- package/esm/src/templates/app/lib/summary/Summary.Template.js +0 -23
- package/esm/src/templates/app/lib/summary/Summary.Unit.js +0 -18
- package/esm/src/templates/app/lib/summary/Summary.Util.js +0 -13
- package/esm/src/templates/app/lib/summary/Summary.View.js +0 -31
- package/esm/src/templates/app/lib/summary/Summary.Zone.js +0 -42
- package/esm/src/templates/app/lib/summary/index.js +0 -47
- package/esm/src/templates/app/lib/user/User.Template.js +0 -45
- package/esm/src/templates/app/lib/user/User.Unit.js +0 -18
- package/esm/src/templates/app/lib/user/User.Util.js +0 -74
- package/esm/src/templates/app/lib/user/User.View.js +0 -46
- package/esm/src/templates/app/lib/user/User.Zone.js +0 -54
- package/esm/src/templates/app/lib/user/index.js +0 -41
- package/esm/src/templates/app/page.test.ts.template +0 -10
- package/esm/src/templates/app/playwright.config.ts.template +0 -6
- package/esm/src/templates/app/postcss.config.js.template +0 -10
- package/esm/src/templates/app/public/manifest.json.template +0 -67
- package/esm/src/templates/app/tsconfig.json.template +0 -22
- package/esm/src/templates/app/tsconfig.spec.json.template +0 -7
- package/esm/src/templates/app/ui/Footer.js +0 -47
- package/esm/src/templates/app/ui/MainHeader.js +0 -111
- package/esm/src/templates/crudPages/[__model__Id]/edit/page.js +0 -53
- package/esm/src/templates/crudPages/[__model__Id]/page.js +0 -63
- package/esm/src/templates/crudPages/new/page.js +0 -50
- package/esm/src/templates/crudPages/page.js +0 -51
- package/esm/src/templates/libRoot/.gitignore.template +0 -15
- package/esm/src/templates/libRoot/env/env.server.example.ts.template +0 -7
- package/esm/src/templates/libRoot/env/env.server.testing.ts.template +0 -7
- package/esm/src/templates/libRoot/lib/setting/Setting.Template.js +0 -37
- package/esm/src/templates/libRoot/lib/setting/Setting.Unit.js +0 -18
- package/esm/src/templates/libRoot/lib/setting/Setting.Util.js +0 -14
- package/esm/src/templates/libRoot/lib/setting/Setting.View.js +0 -31
- package/esm/src/templates/libRoot/lib/setting/Setting.Zone.js +0 -60
- package/esm/src/templates/libRoot/lib/setting/index.js +0 -41
- package/esm/src/templates/libRoot/lib/summary/Summary.Template.js +0 -23
- package/esm/src/templates/libRoot/lib/summary/Summary.Unit.js +0 -18
- package/esm/src/templates/libRoot/lib/summary/Summary.Util.js +0 -13
- package/esm/src/templates/libRoot/lib/summary/Summary.View.js +0 -31
- package/esm/src/templates/libRoot/lib/summary/Summary.Zone.js +0 -42
- package/esm/src/templates/libRoot/lib/summary/index.js +0 -47
- package/esm/src/templates/libRoot/lib/user/User.Template.js +0 -45
- package/esm/src/templates/libRoot/lib/user/User.Unit.js +0 -18
- package/esm/src/templates/libRoot/lib/user/User.Util.js +0 -74
- package/esm/src/templates/libRoot/lib/user/User.View.js +0 -46
- package/esm/src/templates/libRoot/lib/user/User.Zone.js +0 -54
- package/esm/src/templates/libRoot/lib/user/index.js +0 -41
- package/esm/src/templates/libRoot/package.json.template +0 -4
- package/esm/src/templates/libRoot/tsconfig.json.template +0 -13
- package/esm/src/templates/libRoot/tsconfig.spec.json.template +0 -7
- package/esm/src/templates/localDev/docker-compose.yaml.template +0 -36
- package/esm/src/templates/module/__Model__.Template.js +0 -34
- package/esm/src/templates/module/__Model__.Unit.js +0 -22
- package/esm/src/templates/module/__Model__.Util.js +0 -50
- package/esm/src/templates/module/__Model__.View.js +0 -28
- package/esm/src/templates/module/__Model__.Zone.js +0 -63
- package/esm/src/templates/module/index.js +0 -41
- package/esm/src/templates/pkgRoot/tsconfig.json.template +0 -15
- package/esm/src/templates/workspaceRoot/.env.template +0 -20
- package/esm/src/templates/workspaceRoot/.gitignore.template +0 -118
- package/esm/src/templates/workspaceRoot/.prettierignore.template +0 -10
- package/esm/src/templates/workspaceRoot/.prettierrc.json.template +0 -6
- package/esm/src/templates/workspaceRoot/.swcrc.template +0 -9
- package/esm/src/templates/workspaceRoot/.vscode/settings.json.template +0 -13
- package/esm/src/templates/workspaceRoot/README.md.template +0 -37
- package/esm/src/templates/workspaceRoot/eslint.config.ts.template +0 -3
- package/esm/src/templates/workspaceRoot/package.json.template +0 -43
- package/esm/src/templates/workspaceRoot/tsconfig.json.template +0 -29
- package/src/application/application.prompt.d.ts +0 -2
- package/src/templates/app/app/[lang]/(__appName__)/(public)/forgotpassword/page.d.ts +0 -9
- package/src/templates/app/app/[lang]/(__appName__)/(public)/page.d.ts +0 -9
- package/src/templates/app/app/[lang]/(__appName__)/(public)/privacy/page.d.ts +0 -9
- package/src/templates/app/app/[lang]/(__appName__)/(public)/signin/page.d.ts +0 -9
- package/src/templates/app/app/[lang]/(__appName__)/(public)/termsofservice/page.d.ts +0 -10
- package/src/templates/app/app/[lang]/(__appName__)/(public)/unknown/page.d.ts +0 -9
- package/src/templates/app/app/[lang]/(__appName__)/(user)/layout.d.ts +0 -9
- package/src/templates/app/app/[lang]/(__appName__)/(user)/self/page.d.ts +0 -9
- package/src/templates/app/app/[lang]/(__appName__)/layout.d.ts +0 -9
- package/src/templates/app/app/[lang]/admin/layout.d.ts +0 -9
- package/src/templates/app/app/[lang]/admin/page.d.ts +0 -9
- package/src/templates/app/app/csr.d.ts +0 -9
- package/src/templates/app/app/layout.d.ts +0 -9
- package/src/templates/app/lib/setting/Setting.Template.d.ts +0 -9
- package/src/templates/app/lib/setting/Setting.Unit.d.ts +0 -9
- package/src/templates/app/lib/setting/Setting.Util.d.ts +0 -9
- package/src/templates/app/lib/setting/Setting.View.d.ts +0 -9
- package/src/templates/app/lib/setting/Setting.Zone.d.ts +0 -9
- package/src/templates/app/lib/setting/index.d.ts +0 -9
- package/src/templates/app/lib/summary/Summary.Template.d.ts +0 -9
- package/src/templates/app/lib/summary/Summary.Unit.d.ts +0 -9
- package/src/templates/app/lib/summary/Summary.Util.d.ts +0 -9
- package/src/templates/app/lib/summary/Summary.View.d.ts +0 -9
- package/src/templates/app/lib/summary/Summary.Zone.d.ts +0 -9
- package/src/templates/app/lib/summary/index.d.ts +0 -9
- package/src/templates/app/lib/user/User.Template.d.ts +0 -9
- package/src/templates/app/lib/user/User.Unit.d.ts +0 -9
- package/src/templates/app/lib/user/User.Util.d.ts +0 -9
- package/src/templates/app/lib/user/User.View.d.ts +0 -9
- package/src/templates/app/lib/user/User.Zone.d.ts +0 -9
- package/src/templates/app/lib/user/index.d.ts +0 -9
- package/src/templates/app/ui/Footer.d.ts +0 -9
- package/src/templates/app/ui/MainHeader.d.ts +0 -10
- package/src/templates/crudPages/[__model__Id]/edit/page.d.ts +0 -11
- package/src/templates/crudPages/[__model__Id]/page.d.ts +0 -11
- package/src/templates/crudPages/new/page.d.ts +0 -11
- package/src/templates/crudPages/page.d.ts +0 -11
- package/src/templates/libRoot/lib/setting/Setting.Template.d.ts +0 -9
- package/src/templates/libRoot/lib/setting/Setting.Unit.d.ts +0 -9
- package/src/templates/libRoot/lib/setting/Setting.Util.d.ts +0 -9
- package/src/templates/libRoot/lib/setting/Setting.View.d.ts +0 -9
- package/src/templates/libRoot/lib/setting/Setting.Zone.d.ts +0 -9
- package/src/templates/libRoot/lib/setting/index.d.ts +0 -9
- package/src/templates/libRoot/lib/summary/Summary.Template.d.ts +0 -9
- package/src/templates/libRoot/lib/summary/Summary.Unit.d.ts +0 -9
- package/src/templates/libRoot/lib/summary/Summary.Util.d.ts +0 -9
- package/src/templates/libRoot/lib/summary/Summary.View.d.ts +0 -9
- package/src/templates/libRoot/lib/summary/Summary.Zone.d.ts +0 -9
- package/src/templates/libRoot/lib/summary/index.d.ts +0 -9
- package/src/templates/libRoot/lib/user/User.Template.d.ts +0 -9
- package/src/templates/libRoot/lib/user/User.Unit.d.ts +0 -9
- package/src/templates/libRoot/lib/user/User.Util.d.ts +0 -9
- package/src/templates/libRoot/lib/user/User.View.d.ts +0 -9
- package/src/templates/libRoot/lib/user/User.Zone.d.ts +0 -9
- package/src/templates/libRoot/lib/user/index.d.ts +0 -9
- package/src/templates/module/__Model__.Template.d.ts +0 -11
- package/src/templates/module/__Model__.Unit.d.ts +0 -11
- package/src/templates/module/__Model__.Util.d.ts +0 -11
- package/src/templates/module/__Model__.View.d.ts +0 -11
- package/src/templates/module/__Model__.Zone.d.ts +0 -11
- package/src/templates/module/index.d.ts +0 -11
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "../../tsconfig.json",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"jsx": "preserve",
|
|
5
|
-
"declaration": true,
|
|
6
|
-
"declarationDir": "dist"
|
|
7
|
-
},
|
|
8
|
-
"files": [],
|
|
9
|
-
"include": ["**/*.ts", "**/*.tsx"],
|
|
10
|
-
"references": [
|
|
11
|
-
{
|
|
12
|
-
"path": "./tsconfig.spec.json"
|
|
13
|
-
}
|
|
14
|
-
]
|
|
15
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
# organization configuration, no need to change
|
|
2
|
-
NEXT_PUBLIC_REPO_NAME=<%= repoName %>
|
|
3
|
-
NEXT_PUBLIC_SERVE_DOMAIN="<%= serveDomain %>"
|
|
4
|
-
|
|
5
|
-
# development branch, debug, develop, main, etc. mainly it changes databases.
|
|
6
|
-
NEXT_PUBLIC_ENV=local
|
|
7
|
-
|
|
8
|
-
# local, cloud, edge it changes the connection point of the clients.
|
|
9
|
-
NEXT_PUBLIC_OPERATION_MODE=local
|
|
10
|
-
# hybrid app specific config, will be depreciated in the future
|
|
11
|
-
APP_OPERATION_MODE=local
|
|
12
|
-
|
|
13
|
-
# backend service mode, federation, batch, all
|
|
14
|
-
SERVER_MODE=federation
|
|
15
|
-
|
|
16
|
-
# analyze the bundle size
|
|
17
|
-
ANALYZE=false
|
|
18
|
-
|
|
19
|
-
# log level, debug, info, warn, error
|
|
20
|
-
NEXT_PUBLIC_LOG_LEVEL=debug
|
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
**/dist
|
|
2
|
-
/node_modules
|
|
3
|
-
/.akan
|
|
4
|
-
.vscode/*
|
|
5
|
-
.DS_Store
|
|
6
|
-
Thumbs.db
|
|
7
|
-
*.env
|
|
8
|
-
**/node_modules
|
|
9
|
-
/data
|
|
10
|
-
apps/*/data
|
|
11
|
-
/releases
|
|
12
|
-
apps/*/scripts
|
|
13
|
-
**/.env
|
|
14
|
-
**/env.client.debug.ts
|
|
15
|
-
**/env.client.develop.ts
|
|
16
|
-
**/env.client.main.ts
|
|
17
|
-
**/env.client.testing.ts
|
|
18
|
-
**/env.server.debug.ts
|
|
19
|
-
**/env.server.develop.ts
|
|
20
|
-
**/env.server.main.ts
|
|
21
|
-
**/env.server.testing.ts
|
|
22
|
-
**/*secrets.yaml
|
|
23
|
-
**/kubeconfig.yaml
|
|
24
|
-
**/secrets.*
|
|
25
|
-
**/.idea
|
|
26
|
-
apps/**/src/schema.gql
|
|
27
|
-
.next
|
|
28
|
-
dump
|
|
29
|
-
local
|
|
30
|
-
|
|
31
|
-
# Xcode
|
|
32
|
-
build/
|
|
33
|
-
*.pbxuser
|
|
34
|
-
!default.pbxuser
|
|
35
|
-
*.mode1v3
|
|
36
|
-
!default.mode1v3
|
|
37
|
-
*.mode2v3
|
|
38
|
-
!default.mode2v3
|
|
39
|
-
*.perspectivev3
|
|
40
|
-
!default.perspectivev3
|
|
41
|
-
xcuserdata
|
|
42
|
-
*.xccheckout
|
|
43
|
-
*.moved-aside
|
|
44
|
-
DerivedData
|
|
45
|
-
*.hmap
|
|
46
|
-
*.ipa
|
|
47
|
-
*.xcuserstate
|
|
48
|
-
|
|
49
|
-
# **/android
|
|
50
|
-
build/
|
|
51
|
-
.gradle
|
|
52
|
-
local.properties
|
|
53
|
-
*.iml
|
|
54
|
-
*.hprof
|
|
55
|
-
.cxx/
|
|
56
|
-
*.keystore
|
|
57
|
-
!debug.keystore
|
|
58
|
-
|
|
59
|
-
**/public/precache.*.*.js
|
|
60
|
-
**/public/sw.js
|
|
61
|
-
**/public/workbox-*.js
|
|
62
|
-
**/public/worker-*.js
|
|
63
|
-
**/public/fallback-*.js
|
|
64
|
-
**/public/precache.*.*.js.map
|
|
65
|
-
**/public/sw.js.map
|
|
66
|
-
**/public/workbox-*.js.map
|
|
67
|
-
**/public/worker-*.js.map
|
|
68
|
-
**/public/fallback-*.js
|
|
69
|
-
**/public/libs
|
|
70
|
-
|
|
71
|
-
**/vendor/bundle/
|
|
72
|
-
**/ios/App/App/public
|
|
73
|
-
**/ios/App/App/Podfile.lock
|
|
74
|
-
**/ios/App/App.pbxproj
|
|
75
|
-
**/*-secret.yaml
|
|
76
|
-
|
|
77
|
-
# Akanjs files
|
|
78
|
-
**/akan.app.json
|
|
79
|
-
**/akan.lib.json
|
|
80
|
-
**/akan.pkg.json
|
|
81
|
-
**/next.config.ts
|
|
82
|
-
**/next-env.d.ts
|
|
83
|
-
apps/**/lib/__lib/**
|
|
84
|
-
libs/**/lib/__lib/**
|
|
85
|
-
apps/*/lib/cnst.ts
|
|
86
|
-
apps/*/lib/cnst_.ts
|
|
87
|
-
apps/*/lib/dict.ts
|
|
88
|
-
apps/*/lib/db.ts
|
|
89
|
-
apps/*/lib/fetch.ts
|
|
90
|
-
apps/*/lib/srv.ts
|
|
91
|
-
apps/*/lib/st.ts
|
|
92
|
-
apps/*/lib/sig.ts
|
|
93
|
-
apps/*/lib/store.ts
|
|
94
|
-
apps/*/lib/usePage.ts
|
|
95
|
-
apps/*/lib/__scalar/_server.ts
|
|
96
|
-
apps/*/client.ts
|
|
97
|
-
apps/*/server.ts
|
|
98
|
-
libs/*/lib/cnst.ts
|
|
99
|
-
libs/*/lib/cnst_.ts
|
|
100
|
-
libs/*/lib/dict.ts
|
|
101
|
-
libs/*/lib/db.ts
|
|
102
|
-
libs/*/lib/fetch.ts
|
|
103
|
-
libs/*/lib/srv.ts
|
|
104
|
-
libs/*/lib/st.ts
|
|
105
|
-
libs/*/lib/sig.ts
|
|
106
|
-
libs/*/lib/store.ts
|
|
107
|
-
libs/*/lib/usePage.ts
|
|
108
|
-
libs/*/lib/__scalar/_server.ts
|
|
109
|
-
libs/*/client.ts
|
|
110
|
-
libs/*/server.ts
|
|
111
|
-
libs/*/index.ts
|
|
112
|
-
# **/capacitor.config.ts
|
|
113
|
-
# **/postcss.config.js
|
|
114
|
-
# **/playwright.config.ts
|
|
115
|
-
# **/jest.config.ts
|
|
116
|
-
# **/next-env.d.ts
|
|
117
|
-
# **/tsconfig.json
|
|
118
|
-
# **/tsconfig.spec.json
|
|
@@ -1,13 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,37 +0,0 @@
|
|
|
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
|
-
```
|
|
@@ -1,43 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,29 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export declare const requestApplication: () => string;
|
|
2
|
-
export declare const indexPagePrompt = "\uB0B4\uAC00 \uC0AC\uC804\uC5D0 \uC124\uBA85\uD55C index \uD398\uC774\uC9C0 \uD15C\uD50C\uB9BF\uC744 \uC55E\uC11C \uC124\uBA85\uD55C \uD504\uB85C\uC81D\uD2B8\uBA85\uACFC \uD504\uB85C\uC81D\uD2B8 \uC124\uBA85\uC5D0 \uB9DE\uAC8C\uB054 \uB9CC\uB4E4\uC5B4\uC918.";
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,10 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|
|
@@ -1,9 +0,0 @@
|
|
|
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 {};
|