Skip to content

Commit

Permalink
fix: 🐛 use @jsverse/transloco-utils (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
kekel87 authored Mar 28, 2024
1 parent 595138b commit 3a433ee
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion __tests__/resolveConfig.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ let mockedGloblConfig;

mockResolveProjectBasePath(sourceRoot);

jest.unstable_mockModule('@ngneat/transloco-utils', () => ({
jest.unstable_mockModule('@jsverse/transloco-utils', () => ({
getGlobalConfig: () => mockedGloblConfig,
}));

Expand Down
48 changes: 24 additions & 24 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
},
"dependencies": {
"@angular/compiler": "17.2.0",
"@ngneat/transloco-utils": "5.0.0",
"@jsverse/transloco-utils": "7.0.0",
"@phenomnomnominal/tsquery": "6.1.3",
"chalk": "5.3.0",
"cheerio": "1.0.0-rc.12",
Expand Down
2 changes: 1 addition & 1 deletion src/keys-detective/compare-keys-to-files.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getGlobalConfig } from '@ngneat/transloco-utils';
import { getGlobalConfig } from '@jsverse/transloco-utils';
import type { DiffDeleted, DiffNew } from 'deep-diff';
import df from 'deep-diff';
import { flatten } from 'flat';
Expand Down
2 changes: 1 addition & 1 deletion src/utils/resolve-config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
getGlobalConfig,
TranslocoGlobalConfig,
} from '@ngneat/transloco-utils';
} from '@jsverse/transloco-utils';
import chalk from 'chalk';
import { existsSync } from 'fs';

Expand Down
2 changes: 1 addition & 1 deletion src/webpack-plugin/generate-keys.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { TranslocoGlobalConfig } from '@ngneat/transloco-utils';
import { TranslocoGlobalConfig } from '@jsverse/transloco-utils';
import { unflatten } from 'flat';
import { sync as globSync } from 'glob';
import { basename } from 'node:path';
Expand Down

0 comments on commit 3a433ee

Please sign in to comment.