@symbo.ls/cli 2.31.30 → 2.31.31

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.
Files changed (2) hide show
  1. package/bin/fs.js +2 -2
  2. package/package.json +5 -5
package/bin/fs.js CHANGED
@@ -165,7 +165,7 @@ export async function createFs(
165
165
  childKey.includes('-') || childKey.includes('/')
166
166
  ? removeChars(toCamelCase(childKey))
167
167
  : childKey
168
- const filePath = path.join(dirPath, `${childKey.replace('/', '-')}.js`)
168
+ const filePath = path.join(dirPath, `${childKey.replaceAll('/', '-')}.js`)
169
169
 
170
170
  if (!update && fs.existsSync(filePath)) {
171
171
  return
@@ -314,7 +314,7 @@ async function generateIndexjsFile(dirs, dirPath, key) {
314
314
  d.includes('-') || d.includes('/')
315
315
  ? removeChars(toCamelCase(d))
316
316
  : d
317
- } } from './${d.replace('/', '-')}';`
317
+ } } from './${d.replaceAll('/', '-')}';`
318
318
  )
319
319
  .join('\n') +
320
320
  '\n' +
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@symbo.ls/cli",
3
- "version": "2.31.30",
3
+ "version": "2.31.31",
4
4
  "description": "Fetch your Symbols configuration",
5
5
  "main": "bin/fetch.js",
6
6
  "author": "Symbols",
@@ -15,9 +15,9 @@
15
15
  "vpatch": "npm version patch && npm publish"
16
16
  },
17
17
  "dependencies": {
18
- "@symbo.ls/fetch": "^2.31.30",
19
- "@symbo.ls/init": "^2.31.30",
20
- "@symbo.ls/socket": "^2.31.30",
18
+ "@symbo.ls/fetch": "^2.31.31",
19
+ "@symbo.ls/init": "^2.31.31",
20
+ "@symbo.ls/socket": "^2.31.31",
21
21
  "chalk": "^5.4.1",
22
22
  "commander": "^13.1.0",
23
23
  "diff": "^5.2.0",
@@ -26,5 +26,5 @@
26
26
  "node-fetch": "^3.3.2",
27
27
  "v8-compile-cache": "^2.4.0"
28
28
  },
29
- "gitHead": "2cf6e94eae0ea19763d2acac8bebb9b640f4dceb"
29
+ "gitHead": "a87c7ae3e84fbab1a9ee130d6d03f384e94260ab"
30
30
  }