@symbo.ls/cli 2.31.30 → 2.31.32
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.
- package/bin/fs.js +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.
|
|
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.
|
|
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.
|
|
3
|
+
"version": "2.31.32",
|
|
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.
|
|
19
|
-
"@symbo.ls/init": "^2.31.
|
|
20
|
-
"@symbo.ls/socket": "^2.31.
|
|
18
|
+
"@symbo.ls/fetch": "^2.31.32",
|
|
19
|
+
"@symbo.ls/init": "^2.31.32",
|
|
20
|
+
"@symbo.ls/socket": "^2.31.32",
|
|
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": "
|
|
29
|
+
"gitHead": "6d278f08ee062e0e570071860d2a5662549e6cb4"
|
|
30
30
|
}
|