Skip to content

Commit

Permalink
revert back to regular lodash
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoerge committed Sep 20, 2024
1 parent ac80585 commit f10259a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/doc-report/docReport.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import fs from 'node:fs/promises'
import path from 'node:path'

import {groupBy} from 'lodash-es'
import {groupBy} from 'lodash'
import prettier from 'prettier'
import {combineLatest, map} from 'rxjs'

Expand Down
2 changes: 1 addition & 1 deletion scripts/normalizePackageFields.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {uniq} from 'lodash-es'
import {uniq} from 'lodash'

import {type PackageManifest} from './types'
import transformPkgs from './utils/transformPkgs'
Expand Down
2 changes: 1 addition & 1 deletion scripts/utils/sanityIdify.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {deburr} from 'lodash-es'
import {deburr} from 'lodash'

export function sanityIdify(input: string): string {
return deburr(input)
Expand Down

0 comments on commit f10259a

Please sign in to comment.