slicejs-cli 1.0.41 → 1.0.43

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.
@@ -12,8 +12,8 @@ export default class Slice {
12
12
  this.controller = new Controller();
13
13
  this.stylesManager = new StylesManager();
14
14
  this.paths = {
15
- components: "./Components",
16
- themes:"./Themes"
15
+ components: "../../../../Slice/Components",
16
+ themes: "../../../../Slice/Themes"
17
17
  };
18
18
 
19
19
 
@@ -10,7 +10,7 @@ export default async function initializeProject(projectType) {
10
10
  let sliceDir;
11
11
  let basicPosibilities = ["basic", "Basic", "-b", "-B", "b", "B"];
12
12
  if (basicPosibilities.includes(projectType)) {
13
- sliceDir = path.join(__dirname, '../../PROJECT_TEMPLATES/Basic');
13
+ sliceDir = path.join(__dirname, '../../PROJECT_TEMPLATES/Basic/Slice');
14
14
  }
15
15
 
16
16
  // Directorio de destino en la raíz del proyecto
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slicejs-cli",
3
- "version": "1.0.41",
3
+ "version": "1.0.43",
4
4
  "description": "Command client for developing web applications with Slice.js framework",
5
5
  "main": "client.js",
6
6
  "scripts": {