Skip to content

Commit 0b1fce3

Browse files
Nick WDominikPieper
Nick W
authored andcommitted
#1168 make-lib-buildable.ts format
1 parent e6bb928 commit 0b1fce3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

packages/stencil/src/generators/make-lib-buildable/make-lib-buildable.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import { assertNotUsingTsSolutionSetup } from '@nx/js/src/utils/typescript/ts-so
2222

2323
function normalize(
2424
host: Tree,
25-
options: MakeLibBuildableSchema,
25+
options: MakeLibBuildableSchema
2626
): MakeLibBuildableSchema {
2727
options.projectRoot = readProjectConfiguration(host, options.name).root;
2828

@@ -37,7 +37,7 @@ function createFiles(host: Tree, options: MakeLibBuildableSchema) {
3737
host,
3838
joinPathFragments(__dirname, './files/lib'),
3939
options.projectRoot,
40-
options,
40+
options
4141
);
4242
}
4343

@@ -50,15 +50,15 @@ function updateProjectConfig(host: Tree, options: MakeLibBuildableSchema) {
5050
projectConfig.targets.e2e = getE2eTarget(AppType.library, options);
5151
projectConfig.targets.lint = getLintTarget(
5252
AppType.library,
53-
options.projectRoot,
53+
options.projectRoot
5454
);
5555

5656
updateProjectConfiguration(host, options.name, projectConfig);
5757
}
5858

5959
export async function makeLibBuildableGenerator(
6060
host: Tree,
61-
schema: MakeLibBuildableSchema,
61+
schema: MakeLibBuildableSchema
6262
) {
6363
assertNotUsingTsSolutionSetup(host, '@nxext/stencil', 'make-lib-buildable');
6464

@@ -69,7 +69,7 @@ export async function makeLibBuildableGenerator(
6969
addStylePluginToConfig(
7070
host,
7171
joinPathFragments(options.projectRoot, 'stencil.config.ts'),
72-
options.style,
72+
options.style
7373
);
7474
addToOutputTargets(
7575
host,
@@ -98,7 +98,7 @@ export async function makeLibBuildableGenerator(
9898
includeGlobalScripts: false,
9999
}`,
100100
],
101-
joinPathFragments(options.projectRoot, 'stencil.config.ts'),
101+
joinPathFragments(options.projectRoot, 'stencil.config.ts')
102102
);
103103
updateTsConfig(host, options);
104104

0 commit comments

Comments
 (0)