Skip to content

Commit

Permalink
refactor: Renamed monorepo.ts file to monorepos.ts (plural) (#29526)
Browse files Browse the repository at this point in the history
  • Loading branch information
ndtashildar committed Jun 10, 2024
1 parent 801d357 commit c552ba9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/config/presets/internal/group.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Preset } from '../types';
import * as monorepos from './monorepo';
import * as monorepos from './monorepos';

const nonPinUpdateTypes = ['digest', 'patch', 'minor', 'major'];

Expand Down
2 changes: 1 addition & 1 deletion lib/config/presets/internal/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import * as dockerPreset from './docker';
import * as groupPreset from './group';
import * as helpersPreset from './helpers';
import * as mergeConfidence from './merge-confidence';
import * as monorepoPreset from './monorepo';
import * as monorepoPreset from './monorepos';
import * as npm from './npm';
import * as packagesPreset from './packages';
import * as previewPreset from './preview';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { presets } from './monorepo';
import { presets } from './monorepos';

const todo = new Set([
'arcus.background-jobs',
Expand All @@ -17,7 +17,7 @@ const todo = new Set([
'vaadinWebComponents',
]);

describe('config/presets/internal/monorepo', () => {
describe('config/presets/internal/monorepos', () => {
it('presets should have right name', () => {
for (const name of Object.keys(presets).filter((name) => !todo.has(name))) {
expect(name).toMatch(/^[a-z0-9-]+$/);
Expand Down
File renamed without changes.

0 comments on commit c552ba9

Please sign in to comment.