Rename generateSrcMainResources -> generateResources

This commit is contained in:
Joseph Garrone
2024-06-12 14:48:08 +02:00
parent a78af5080a
commit 0bc3f08cc1
10 changed files with 13 additions and 13 deletions

View File

@ -1,4 +1,4 @@
import { generateSrcMainResources } from "./generateSrcMainResources";
import { generateResources } from "./generateResources";
import { join as pathJoin, relative as pathRelative, sep as pathSep } from "path";
import * as child_process from "child_process";
import * as fs from "fs";
@ -82,7 +82,7 @@ export async function command(params: { cliCommandOptions: CliCommandOptions })
const resourcesDirPath = pathJoin(buildContext.keycloakifyBuildDirPath, "resources");
await generateSrcMainResources({
await generateResources({
resourcesDirPath,
buildContext
});