@teispace/next-maker 1.11.0 → 1.12.0
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/CHANGELOG.md +27 -0
- package/README.md +196 -272
- package/dist/index.js +341 -223
- package/dist/index.js.map +4 -4
- package/dist/src/commands/component.d.ts +3 -0
- package/dist/src/commands/component.d.ts.map +1 -0
- package/dist/src/commands/feature.d.ts.map +1 -1
- package/dist/src/commands/hook.d.ts +3 -0
- package/dist/src/commands/hook.d.ts.map +1 -0
- package/dist/src/commands/index.d.ts.map +1 -1
- package/dist/src/commands/locale.d.ts +3 -0
- package/dist/src/commands/locale.d.ts.map +1 -0
- package/dist/src/commands/page.d.ts +3 -0
- package/dist/src/commands/page.d.ts.map +1 -0
- package/dist/src/commands/service.d.ts.map +1 -1
- package/dist/src/commands/slice.d.ts.map +1 -1
- package/dist/src/config/paths.d.ts +4 -0
- package/dist/src/config/paths.d.ts.map +1 -1
- package/dist/src/detection/existence.checker.d.ts +9 -0
- package/dist/src/detection/existence.checker.d.ts.map +1 -0
- package/dist/src/detection/index.d.ts +4 -0
- package/dist/src/detection/index.d.ts.map +1 -0
- package/dist/src/{services/feature/detection.service.d.ts → detection/project.detector.d.ts} +1 -2
- package/dist/src/detection/project.detector.d.ts.map +1 -0
- package/dist/src/generators/component.generator.d.ts +9 -0
- package/dist/src/generators/component.generator.d.ts.map +1 -0
- package/dist/src/generators/crud-service.generator.d.ts +6 -0
- package/dist/src/generators/crud-service.generator.d.ts.map +1 -0
- package/dist/src/generators/feature.generator.d.ts +7 -0
- package/dist/src/generators/feature.generator.d.ts.map +1 -0
- package/dist/src/generators/hook.generator.d.ts +8 -0
- package/dist/src/generators/hook.generator.d.ts.map +1 -0
- package/dist/src/generators/index.d.ts +14 -0
- package/dist/src/generators/index.d.ts.map +1 -0
- package/dist/src/generators/locale.generator.d.ts +10 -0
- package/dist/src/generators/locale.generator.d.ts.map +1 -0
- package/dist/src/generators/page.generator.d.ts +10 -0
- package/dist/src/generators/page.generator.d.ts.map +1 -0
- package/dist/src/generators/service.generator.d.ts +6 -0
- package/dist/src/generators/service.generator.d.ts.map +1 -0
- package/dist/src/generators/slice.generator.d.ts +11 -0
- package/dist/src/generators/slice.generator.d.ts.map +1 -0
- package/dist/src/generators/templates/barrel.template.d.ts +12 -0
- package/dist/src/generators/templates/barrel.template.d.ts.map +1 -0
- package/dist/src/generators/templates/component.template.d.ts +5 -0
- package/dist/src/generators/templates/component.template.d.ts.map +1 -0
- package/dist/src/generators/templates/crud-service.template.d.ts +10 -0
- package/dist/src/generators/templates/crud-service.template.d.ts.map +1 -0
- package/dist/src/generators/templates/custom-hook.template.d.ts +5 -0
- package/dist/src/generators/templates/custom-hook.template.d.ts.map +1 -0
- package/dist/src/generators/templates/hook.template.d.ts +9 -0
- package/dist/src/generators/templates/hook.template.d.ts.map +1 -0
- package/dist/src/generators/templates/page.template.d.ts +18 -0
- package/dist/src/generators/templates/page.template.d.ts.map +1 -0
- package/dist/src/generators/templates/persist.template.d.ts +6 -0
- package/dist/src/generators/templates/persist.template.d.ts.map +1 -0
- package/dist/src/generators/templates/selectors.template.d.ts +6 -0
- package/dist/src/generators/templates/selectors.template.d.ts.map +1 -0
- package/dist/src/generators/templates/service.template.d.ts +5 -0
- package/dist/src/generators/templates/service.template.d.ts.map +1 -0
- package/dist/src/generators/templates/shared-component.template.d.ts +10 -0
- package/dist/src/generators/templates/shared-component.template.d.ts.map +1 -0
- package/dist/src/generators/templates/slice.template.d.ts +6 -0
- package/dist/src/generators/templates/slice.template.d.ts.map +1 -0
- package/dist/src/generators/templates/types.template.d.ts +5 -0
- package/dist/src/generators/templates/types.template.d.ts.map +1 -0
- package/dist/src/generators/types.d.ts +19 -0
- package/dist/src/generators/types.d.ts.map +1 -0
- package/dist/src/modifiers/api-registration.modifier.d.ts +6 -0
- package/dist/src/modifiers/api-registration.modifier.d.ts.map +1 -0
- package/dist/src/modifiers/app-paths.modifier.d.ts +5 -0
- package/dist/src/modifiers/app-paths.modifier.d.ts.map +1 -0
- package/dist/src/modifiers/crud-api-registration.modifier.d.ts +5 -0
- package/dist/src/modifiers/crud-api-registration.modifier.d.ts.map +1 -0
- package/dist/src/modifiers/helpers.d.ts +14 -0
- package/dist/src/modifiers/helpers.d.ts.map +1 -0
- package/dist/src/modifiers/index.d.ts +7 -0
- package/dist/src/modifiers/index.d.ts.map +1 -0
- package/dist/src/modifiers/root-reducer.modifier.d.ts +7 -0
- package/dist/src/modifiers/root-reducer.modifier.d.ts.map +1 -0
- package/dist/src/modifiers/translation.modifier.d.ts +5 -0
- package/dist/src/modifiers/translation.modifier.d.ts.map +1 -0
- package/dist/src/modifiers/types.d.ts +15 -0
- package/dist/src/modifiers/types.d.ts.map +1 -0
- package/dist/src/pipelines/feature.pipeline.d.ts +14 -0
- package/dist/src/pipelines/feature.pipeline.d.ts.map +1 -0
- package/dist/src/pipelines/index.d.ts +9 -0
- package/dist/src/pipelines/index.d.ts.map +1 -0
- package/dist/src/pipelines/runner.d.ts +7 -0
- package/dist/src/pipelines/runner.d.ts.map +1 -0
- package/dist/src/pipelines/service.pipeline.d.ts +8 -0
- package/dist/src/pipelines/service.pipeline.d.ts.map +1 -0
- package/dist/src/pipelines/slice.pipeline.d.ts +9 -0
- package/dist/src/pipelines/slice.pipeline.d.ts.map +1 -0
- package/dist/src/pipelines/types.d.ts +12 -0
- package/dist/src/pipelines/types.d.ts.map +1 -0
- package/dist/src/prompts/component.prompt.d.ts +6 -0
- package/dist/src/prompts/component.prompt.d.ts.map +1 -0
- package/dist/src/prompts/hook.prompt.d.ts +5 -0
- package/dist/src/prompts/hook.prompt.d.ts.map +1 -0
- package/dist/src/prompts/locale.prompt.d.ts +9 -0
- package/dist/src/prompts/locale.prompt.d.ts.map +1 -0
- package/dist/src/prompts/page.prompt.d.ts +7 -0
- package/dist/src/prompts/page.prompt.d.ts.map +1 -0
- package/dist/src/services/init/cleanup/dark-mode.cleanup.d.ts +3 -0
- package/dist/src/services/init/cleanup/dark-mode.cleanup.d.ts.map +1 -0
- package/dist/src/services/init/cleanup/http.cleanup.d.ts +3 -0
- package/dist/src/services/init/cleanup/http.cleanup.d.ts.map +1 -0
- package/dist/src/services/init/cleanup/i18n.cleanup.d.ts +3 -0
- package/dist/src/services/init/cleanup/i18n.cleanup.d.ts.map +1 -0
- package/dist/src/services/init/cleanup/index.d.ts +3 -0
- package/dist/src/services/init/cleanup/index.d.ts.map +1 -0
- package/dist/src/services/init/cleanup/misc.cleanup.d.ts +13 -0
- package/dist/src/services/init/cleanup/misc.cleanup.d.ts.map +1 -0
- package/dist/src/services/init/cleanup/redux.cleanup.d.ts +3 -0
- package/dist/src/services/init/cleanup/redux.cleanup.d.ts.map +1 -0
- package/package.json +9 -7
- package/dist/src/services/common/api-registration.service.d.ts +0 -7
- package/dist/src/services/common/api-registration.service.d.ts.map +0 -1
- package/dist/src/services/feature/detection.service.d.ts.map +0 -1
- package/dist/src/services/feature/registration.service.d.ts +0 -6
- package/dist/src/services/feature/registration.service.d.ts.map +0 -1
- package/dist/src/services/feature/templates.service.d.ts +0 -11
- package/dist/src/services/feature/templates.service.d.ts.map +0 -1
- package/dist/src/services/init/cleanup.service.d.ts +0 -3
- package/dist/src/services/init/cleanup.service.d.ts.map +0 -1
- package/dist/src/services/service/detection.service.d.ts +0 -2
- package/dist/src/services/service/detection.service.d.ts.map +0 -1
- package/dist/src/services/service/service.service.d.ts +0 -8
- package/dist/src/services/service/service.service.d.ts.map +0 -1
- package/dist/src/services/slice/detection.service.d.ts +0 -2
- package/dist/src/services/slice/detection.service.d.ts.map +0 -1
- package/dist/src/services/slice/slice.service.d.ts +0 -7
- package/dist/src/services/slice/slice.service.d.ts.map +0 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { PipelineContext, PipelineStep } from './types';
|
|
2
|
+
export interface ServicePipelineContext extends PipelineContext {
|
|
3
|
+
serviceName: string;
|
|
4
|
+
servicePath: string;
|
|
5
|
+
httpClient: 'axios' | 'fetch';
|
|
6
|
+
}
|
|
7
|
+
export declare const createServicePipelineSteps: () => PipelineStep<ServicePipelineContext>[];
|
|
8
|
+
//# sourceMappingURL=service.pipeline.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"service.pipeline.d.ts","sourceRoot":"","sources":["../../../src/pipelines/service.pipeline.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAE7D,MAAM,WAAW,sBAAuB,SAAQ,eAAe;IAC7D,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,OAAO,GAAG,OAAO,CAAC;CAC/B;AAED,eAAO,MAAM,0BAA0B,QAAO,YAAY,CAAC,sBAAsB,CAAC,EAsBjF,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { PipelineContext, PipelineStep } from './types';
|
|
2
|
+
export interface SlicePipelineContext extends PipelineContext {
|
|
3
|
+
sliceName: string;
|
|
4
|
+
basePath: string;
|
|
5
|
+
slicePath: string;
|
|
6
|
+
persistSlice: boolean;
|
|
7
|
+
}
|
|
8
|
+
export declare const createSlicePipelineSteps: () => PipelineStep<SlicePipelineContext>[];
|
|
9
|
+
//# sourceMappingURL=slice.pipeline.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"slice.pipeline.d.ts","sourceRoot":"","sources":["../../../src/pipelines/slice.pipeline.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAE7D,MAAM,WAAW,oBAAqB,SAAQ,eAAe;IAC3D,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE,OAAO,CAAC;CACvB;AAED,eAAO,MAAM,wBAAwB,QAAO,YAAY,CAAC,oBAAoB,CAAC,EAwB7E,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { Ora } from 'ora';
|
|
2
|
+
export interface PipelineContext {
|
|
3
|
+
projectPath: string;
|
|
4
|
+
spinner: Ora;
|
|
5
|
+
}
|
|
6
|
+
export interface PipelineStep<TContext extends PipelineContext> {
|
|
7
|
+
name: string;
|
|
8
|
+
spinnerText: string;
|
|
9
|
+
execute: (context: TContext) => Promise<void>;
|
|
10
|
+
shouldSkip?: (context: TContext) => boolean;
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/pipelines/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAE/B,MAAM,WAAW,eAAe;IAC9B,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,GAAG,CAAC;CACd;AAED,MAAM,WAAW,YAAY,CAAC,QAAQ,SAAS,eAAe;IAC5D,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,CAAC,OAAO,EAAE,QAAQ,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IAC9C,UAAU,CAAC,EAAE,CAAC,OAAO,EAAE,QAAQ,KAAK,OAAO,CAAC;CAC7C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"component.prompt.d.ts","sourceRoot":"","sources":["../../../src/prompts/component.prompt.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,qBAAqB;IACpC,aAAa,EAAE,MAAM,CAAC;IACtB,QAAQ,EAAE,OAAO,CAAC;CACnB;AAED,eAAO,MAAM,yBAAyB,GAAU,OAAO,MAAM,KAAG,OAAO,CAAC,qBAAqB,CA+B5F,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hook.prompt.d.ts","sourceRoot":"","sources":["../../../src/prompts/hook.prompt.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,gBAAgB;IAC/B,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,eAAO,MAAM,oBAAoB,GAAU,OAAO,MAAM,KAAG,OAAO,CAAC,gBAAgB,CAiBlF,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export interface LocalePromptResult {
|
|
2
|
+
code: string;
|
|
3
|
+
name: string;
|
|
4
|
+
country: string;
|
|
5
|
+
flag: string;
|
|
6
|
+
copyTranslations: boolean;
|
|
7
|
+
}
|
|
8
|
+
export declare const promptForLocaleDetails: (code?: string) => Promise<LocalePromptResult>;
|
|
9
|
+
//# sourceMappingURL=locale.prompt.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"locale.prompt.d.ts","sourceRoot":"","sources":["../../../src/prompts/locale.prompt.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,kBAAkB;IACjC,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;IACb,gBAAgB,EAAE,OAAO,CAAC;CAC3B;AAED,eAAO,MAAM,sBAAsB,GAAU,OAAO,MAAM,KAAG,OAAO,CAAC,kBAAkB,CAsDtF,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"page.prompt.d.ts","sourceRoot":"","sources":["../../../src/prompts/page.prompt.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,gBAAgB;IAC/B,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,EAAE,OAAO,CAAC;IACrB,SAAS,EAAE,OAAO,CAAC;CACpB;AAED,eAAO,MAAM,oBAAoB,GAAU,OAAO,MAAM,KAAG,OAAO,CAAC,gBAAgB,CAwClF,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dark-mode.cleanup.d.ts","sourceRoot":"","sources":["../../../../../src/services/init/cleanup/dark-mode.cleanup.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AAEzE,eAAO,MAAM,eAAe,GAC1B,aAAa,MAAM,EACnB,SAAS,cAAc,KACtB,OAAO,CAAC,IAAI,CAUd,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"http.cleanup.d.ts","sourceRoot":"","sources":["../../../../../src/services/init/cleanup/http.cleanup.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AAEzE,eAAO,MAAM,iBAAiB,GAC5B,aAAa,MAAM,EACnB,SAAS,cAAc,KACtB,OAAO,CAAC,IAAI,CAWd,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"i18n.cleanup.d.ts","sourceRoot":"","sources":["../../../../../src/services/init/cleanup/i18n.cleanup.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AAEzE,eAAO,MAAM,WAAW,GAAU,aAAa,MAAM,EAAE,SAAS,cAAc,KAAG,OAAO,CAAC,IAAI,CAO5F,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/services/init/cleanup/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AAazE,eAAO,MAAM,eAAe,GAC1B,aAAa,MAAM,EACnB,SAAS,cAAc,KACtB,OAAO,CAAC,IAAI,CAiBd,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { ProjectPrompts } from '../../../prompts/create-app.prompt';
|
|
2
|
+
export declare const cleanupSecureStorage: (projectPath: string, answers: ProjectPrompts) => Promise<void>;
|
|
3
|
+
export declare const cleanupLicense: (projectPath: string) => Promise<void>;
|
|
4
|
+
export declare const cleanupChangelog: (projectPath: string) => Promise<void>;
|
|
5
|
+
export declare const cleanupConfig: (projectPath: string) => Promise<void>;
|
|
6
|
+
/**
|
|
7
|
+
* Remove template-specific directories that should not ship in generated projects.
|
|
8
|
+
* - .claude/ — Claude Code workspace config from the starter template
|
|
9
|
+
* - docs/ — Starter template documentation (structure.md etc.)
|
|
10
|
+
* - .vscode/ — IDE-specific settings from the starter
|
|
11
|
+
*/
|
|
12
|
+
export declare const cleanupTemplateArtifacts: (projectPath: string) => Promise<void>;
|
|
13
|
+
//# sourceMappingURL=misc.cleanup.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"misc.cleanup.d.ts","sourceRoot":"","sources":["../../../../../src/services/init/cleanup/misc.cleanup.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AAEzE,eAAO,MAAM,oBAAoB,GAC/B,aAAa,MAAM,EACnB,SAAS,cAAc,KACtB,OAAO,CAAC,IAAI,CAKd,CAAC;AAEF,eAAO,MAAM,cAAc,GAAU,aAAa,MAAM,KAAG,OAAO,CAAC,IAAI,CAEtE,CAAC;AAEF,eAAO,MAAM,gBAAgB,GAAU,aAAa,MAAM,KAAG,OAAO,CAAC,IAAI,CAExE,CAAC;AAEF,eAAO,MAAM,aAAa,GAAU,aAAa,MAAM,KAAG,OAAO,CAAC,IAAI,CAGrE,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,wBAAwB,GAAU,aAAa,MAAM,KAAG,OAAO,CAAC,IAAI,CAIhF,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"redux.cleanup.d.ts","sourceRoot":"","sources":["../../../../../src/services/init/cleanup/redux.cleanup.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AAEzE,eAAO,MAAM,YAAY,GAAU,aAAa,MAAM,EAAE,SAAS,cAAc,KAAG,OAAO,CAAC,IAAI,CAS7F,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teispace/next-maker",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.12.0",
|
|
4
4
|
"description": "Create a new Teispace Next.js application with interactive setup.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"nextjs",
|
|
@@ -36,20 +36,22 @@
|
|
|
36
36
|
"build": "tsx build.ts && ../../node_modules/.bin/tsc --emitDeclarationOnly --outDir dist",
|
|
37
37
|
"start": "node dist/index.js",
|
|
38
38
|
"dev": "tsx --watch src/index.ts",
|
|
39
|
-
"test": "
|
|
39
|
+
"test": "vitest run",
|
|
40
|
+
"test:watch": "vitest"
|
|
40
41
|
},
|
|
41
42
|
"dependencies": {
|
|
42
|
-
"commander": "^14.0.
|
|
43
|
+
"commander": "^14.0.3",
|
|
43
44
|
"degit": "^2.8.4",
|
|
44
45
|
"enquirer": "^2.4.1",
|
|
45
|
-
"ora": "^9.
|
|
46
|
+
"ora": "^9.3.0",
|
|
46
47
|
"picocolors": "^1.1.1"
|
|
47
48
|
},
|
|
48
49
|
"devDependencies": {
|
|
49
50
|
"@types/degit": "^2.8.6",
|
|
50
|
-
"@types/node": "^
|
|
51
|
-
"esbuild": "^0.27.
|
|
52
|
-
"tsx": "^4.21.0"
|
|
51
|
+
"@types/node": "^25.5.0",
|
|
52
|
+
"esbuild": "^0.27.5",
|
|
53
|
+
"tsx": "^4.21.0",
|
|
54
|
+
"vitest": "^4.1.2"
|
|
53
55
|
},
|
|
54
56
|
"engines": {
|
|
55
57
|
"node": ">=20.0.0"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"api-registration.service.d.ts","sourceRoot":"","sources":["../../../../src/services/common/api-registration.service.ts"],"names":[],"mappings":"AAIA,UAAU,kBAAkB;IAC1B,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,eAAO,MAAM,oBAAoB,GAAU,SAAS,kBAAkB,KAAG,OAAO,CAAC,IAAI,CA4DpF,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"detection.service.d.ts","sourceRoot":"","sources":["../../../../src/services/feature/detection.service.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,gBAAgB;IAC/B,QAAQ,EAAE,OAAO,CAAC;IAClB,UAAU,EAAE,OAAO,GAAG,OAAO,GAAG,MAAM,GAAG,MAAM,CAAC;IAChD,OAAO,EAAE,OAAO,CAAC;CAClB;AAED,eAAO,MAAM,kBAAkB,GAAU,aAAa,MAAM,KAAG,OAAO,CAAC,gBAAgB,CAgEtF,CAAC;AAEF,eAAO,MAAM,aAAa,GACxB,aAAa,MAAM,EACnB,aAAa,MAAM,EACnB,WAAU,MAAqC,KAC9C,OAAO,CAAC,OAAO,CAQjB,CAAC"}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
export declare const registerFeatureInRootReducer: (projectPath: string, featureName: string, withPersist: boolean, basePath?: string) => Promise<void>;
|
|
2
|
-
/**
|
|
3
|
-
* Register a slice in rootReducer (imports from index.ts, not store/)
|
|
4
|
-
*/
|
|
5
|
-
export declare const registerSliceInRootReducer: (projectPath: string, sliceName: string, withPersist: boolean, basePath: string) => Promise<void>;
|
|
6
|
-
//# sourceMappingURL=registration.service.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"registration.service.d.ts","sourceRoot":"","sources":["../../../../src/services/feature/registration.service.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,4BAA4B,GACvC,aAAa,MAAM,EACnB,aAAa,MAAM,EACnB,aAAa,OAAO,EACpB,WAAU,MAAqC,KAC9C,OAAO,CAAC,IAAI,CAyDd,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,0BAA0B,GACrC,aAAa,MAAM,EACnB,WAAW,MAAM,EACjB,aAAa,OAAO,EACpB,UAAU,MAAM,KACf,OAAO,CAAC,IAAI,CAyDd,CAAC"}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export interface FeatureGenerationOptions {
|
|
2
|
-
featureName: string;
|
|
3
|
-
featurePath: string;
|
|
4
|
-
createStore: boolean;
|
|
5
|
-
persistStore: boolean;
|
|
6
|
-
createService: boolean;
|
|
7
|
-
httpClient?: 'axios' | 'fetch';
|
|
8
|
-
}
|
|
9
|
-
export declare const generateFeatureStructure: (options: FeatureGenerationOptions) => Promise<void>;
|
|
10
|
-
export declare const getProjectPathFromFeaturePath: (featurePath: string) => string;
|
|
11
|
-
//# sourceMappingURL=templates.service.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"templates.service.d.ts","sourceRoot":"","sources":["../../../../src/services/feature/templates.service.ts"],"names":[],"mappings":"AAIA,MAAM,WAAW,wBAAwB;IACvC,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,OAAO,CAAC;IACrB,YAAY,EAAE,OAAO,CAAC;IACtB,aAAa,EAAE,OAAO,CAAC;IACvB,UAAU,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC;CAChC;AAED,eAAO,MAAM,wBAAwB,GACnC,SAAS,wBAAwB,KAChC,OAAO,CAAC,IAAI,CA6Bd,CAAC;AAEF,eAAO,MAAM,6BAA6B,GAAI,aAAa,MAAM,KAAG,MAQnE,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"cleanup.service.d.ts","sourceRoot":"","sources":["../../../../src/services/init/cleanup.service.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,cAAc,EAAE,MAAM,iCAAiC,CAAC;AAQjE,eAAO,MAAM,eAAe,GAC1B,aAAa,MAAM,EACnB,SAAS,cAAc,KACtB,OAAO,CAAC,IAAI,CAgBd,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"detection.service.d.ts","sourceRoot":"","sources":["../../../../src/services/service/detection.service.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,aAAa,GACxB,aAAa,MAAM,EACnB,aAAa,MAAM,EACnB,UAAU,MAAM,KACf,OAAO,CAAC,OAAO,CAGjB,CAAC"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
interface GenerateServiceOptions {
|
|
2
|
-
serviceName: string;
|
|
3
|
-
servicePath: string;
|
|
4
|
-
httpClient: 'axios' | 'fetch';
|
|
5
|
-
}
|
|
6
|
-
export declare const generateServiceFiles: (options: GenerateServiceOptions) => Promise<void>;
|
|
7
|
-
export {};
|
|
8
|
-
//# sourceMappingURL=service.service.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"service.service.d.ts","sourceRoot":"","sources":["../../../../src/services/service/service.service.ts"],"names":[],"mappings":"AAIA,UAAU,sBAAsB;IAC9B,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,OAAO,GAAG,OAAO,CAAC;CAC/B;AAED,eAAO,MAAM,oBAAoB,GAAU,SAAS,sBAAsB,KAAG,OAAO,CAAC,IAAI,CAExF,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"detection.service.d.ts","sourceRoot":"","sources":["../../../../src/services/slice/detection.service.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,WAAW,GACtB,aAAa,MAAM,EACnB,WAAW,MAAM,EACjB,WAAU,MAA4C,KACrD,OAAO,CAAC,OAAO,CAQjB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"slice.service.d.ts","sourceRoot":"","sources":["../../../../src/services/slice/slice.service.ts"],"names":[],"mappings":"AAIA,MAAM,WAAW,sBAAsB;IACrC,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE,OAAO,CAAC;CACvB;AAED,eAAO,MAAM,kBAAkB,GAAU,SAAS,sBAAsB,KAAG,OAAO,CAAC,IAAI,CAyBtF,CAAC"}
|