@symbo.ls/cli 2.10.244 → 2.10.246

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 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/create-domql-app.git',
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.244",
3
+ "version": "2.10.246",
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": "c2da617bd6c0178f314e8183dbcf07f0e8b51f78"
28
+ "gitHead": "f8be6c9e69e843494b2cf048309cb82ef0e6e1e8"
29
29
  }