Skip to content

Commit ec12264

Browse files
authored
[PURIFY] Remove x-pack reference from i18n build (#10) (#9)
1 parent d78af4c commit ec12264

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/dev/i18n/tasks/merge_configs.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@ import { ErrorReporter, I18nConfig, assignConfigFromPath, arrayify } from '..';
2323
export function mergeConfigs(additionalConfigPaths: string | string[] = []) {
2424
const root = join(__dirname, '../../../../');
2525
const kibanaRC = resolve(root, '.i18nrc.json');
26-
const xpackRC = resolve(root, 'x-pack/.i18nrc.json');
2726

28-
const configPaths = [kibanaRC, xpackRC, ...arrayify(additionalConfigPaths)];
27+
const configPaths = [kibanaRC, ...arrayify(additionalConfigPaths)];
2928

3029
return configPaths.map((configPath) => ({
3130
task: async (context: { reporter: ErrorReporter; config?: I18nConfig }) => {

0 commit comments

Comments
 (0)