@symbo.ls/cli 2.10.244 → 2.10.245
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/convert.js +0 -1
- package/bin/create.js +1 -1
- package/package.json +2 -2
package/bin/convert.js
CHANGED
|
@@ -69,7 +69,6 @@ program
|
|
|
69
69
|
// Convert components
|
|
70
70
|
const componentDirs = await fs.promises.readdir(tmpDirPath)
|
|
71
71
|
for (const componentDir of componentDirs) {
|
|
72
|
-
if (componentDir === 'Atoms') continue
|
|
73
72
|
let importDir = path.join(tmpDirPath, componentDir)
|
|
74
73
|
if ((await fs.promises.stat(importDir)).isDirectory()) {
|
|
75
74
|
// Import the module
|
package/bin/create.js
CHANGED
|
@@ -6,7 +6,7 @@ import { initRepo } from './init-helpers/init-repo.js'
|
|
|
6
6
|
import path from 'path'
|
|
7
7
|
|
|
8
8
|
const REPO_URLS = {
|
|
9
|
-
'domql': 'https://github.com/symbo-ls/
|
|
9
|
+
'domql': 'https://github.com/symbo-ls/starter-kit',
|
|
10
10
|
'react': 'https://github.com/symbo-ls/create-react-app.git',
|
|
11
11
|
'angular': 'https://github.com/symbo-ls/create-angular-app.git',
|
|
12
12
|
'vue2': 'https://github.com/symbo-ls/create-vue2-app.git',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@symbo.ls/cli",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.245",
|
|
4
4
|
"description": "Fetch your Symbols configuration",
|
|
5
5
|
"main": "bin/fetch.js",
|
|
6
6
|
"author": "Symbols",
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"node-fetch": "^3.1.0",
|
|
26
26
|
"v8-compile-cache": "^2.3.0"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "bb2eb71eb02516b41b04e6f30c68254617135ebe"
|
|
29
29
|
}
|