@create-node-app/core 0.3.9 → 0.3.11
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/dist/index.d.ts +2 -4
- package/dist/index.js +7178 -315
- package/dist/index.mjs +7176 -291
- package/package.json +5 -3
package/dist/index.d.ts
CHANGED
|
@@ -9,10 +9,9 @@ declare const printEnvInfo: () => Promise<never>;
|
|
|
9
9
|
type CnaOptions = {
|
|
10
10
|
projectName: string;
|
|
11
11
|
info?: boolean;
|
|
12
|
-
interactive?: boolean;
|
|
13
12
|
verbose?: boolean;
|
|
14
13
|
packageManager?: string;
|
|
15
|
-
|
|
14
|
+
install?: boolean;
|
|
16
15
|
template?: string;
|
|
17
16
|
templatesOrExtensions?: TemplateOrExtension[];
|
|
18
17
|
} & {
|
|
@@ -24,11 +23,10 @@ type CnaOptionsTransform = (options: CnaOptions) => Promise<CnaOptions>;
|
|
|
24
23
|
* @param programName - Name of the program to bootstrap the Node application
|
|
25
24
|
* @param options - CnaOptions to bootstrap the Node application
|
|
26
25
|
* @param options.info - Print environment debug info
|
|
27
|
-
* @param options.interactive - Specify if it is needed to use interactive mode or not
|
|
28
26
|
* @param options.verbose - Specify if it is needed to use verbose mode or not
|
|
29
27
|
* @param options.projectName - Project's name
|
|
30
28
|
* @param options.packageManager - Package manager to use
|
|
31
|
-
* @param options.
|
|
29
|
+
* @param options.install - Generate package.json file installing dependencies
|
|
32
30
|
* @param options.template - Template to bootstrap the aplication
|
|
33
31
|
* @param options.extend - Extensions to apply for the boilerplate generation
|
|
34
32
|
* @param options.templatesOrExtensions - Official extensions to apply
|