ide-assi 0.186.0 → 0.188.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -193338,7 +193338,7 @@ class IdeUtils
193338
193338
  input
193339
193339
  .split('/')
193340
193340
  .slice(0, -1)
193341
- .map(toCamelCase)
193341
+ .map(IdeUtils.toCamelCase)
193342
193342
  .join('.');
193343
193343
 
193344
193344
 
@@ -193334,7 +193334,7 @@ class IdeUtils
193334
193334
  input
193335
193335
  .split('/')
193336
193336
  .slice(0, -1)
193337
- .map(toCamelCase)
193337
+ .map(IdeUtils.toCamelCase)
193338
193338
  .join('.');
193339
193339
 
193340
193340
 
@@ -28,7 +28,7 @@ export class IdeUtils
28
28
  input
29
29
  .split('/')
30
30
  .slice(0, -1)
31
- .map(toCamelCase)
31
+ .map(IdeUtils.toCamelCase)
32
32
  .join('.');
33
33
 
34
34
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.186.0",
4
+ "version": "0.188.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -28,7 +28,7 @@ export class IdeUtils
28
28
  input
29
29
  .split('/')
30
30
  .slice(0, -1)
31
- .map(toCamelCase)
31
+ .map(IdeUtils.toCamelCase)
32
32
  .join('.');
33
33
 
34
34