We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbf3ce6 commit dbd84acCopy full SHA for dbd84ac
scripts/globals.ts
@@ -1,7 +1,7 @@
1
-import { lodash } from '@walrus/shared-utils';
+import { _ } from '@walrus/shared-utils';
2
3
interface AnyObject {
4
- [key: string]: any
+ [key: string]: any;
5
}
6
7
/**
@@ -23,9 +23,9 @@ function getGlobals(): AnyObject {
23
24
Object.keys(dependencies).forEach((item: string) => {
25
if (isPansyPackage(item)) {
26
- globals[item] = lodash.camelCase(item.split('/')[1]);
+ globals[item] = _.camelCase(item.split('/')[1]);
27
28
- })
+ });
29
30
return globals;
31
0 commit comments