slicejs-cli 1.0.18 → 1.0.21

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.
@@ -0,0 +1,23 @@
1
+
2
+
3
+
4
+ slice-tester {
5
+
6
+
7
+ &.red{
8
+ background-color: red;
9
+ }
10
+
11
+ &.blue{
12
+ background-color: blue;
13
+ }
14
+
15
+ &.green{
16
+ background-color: green;
17
+ }
18
+
19
+
20
+
21
+
22
+
23
+ }
@@ -0,0 +1,14 @@
1
+ @import url("https://fonts.googleapis.com/css2?family=Montserrat&family=Poppins&family=Roboto&display=swap");
2
+
3
+ * {
4
+ font-family: "Roboto", sans-serif;
5
+ }
6
+
7
+ :root {
8
+ --primary-color: #cecece;
9
+ --primary-color-border: rgb(206, 206, 206, 0.5);
10
+ --primary-background-color: #191919;
11
+ --secundary-background-color: #292929;
12
+
13
+ --danger-color: #ff0000;
14
+ }
@@ -0,0 +1,14 @@
1
+ @import url("https://fonts.googleapis.com/css2?family=Montserrat&family=Poppins&family=Roboto&display=swap");
2
+
3
+ * {
4
+ font-family: "Roboto", sans-serif;
5
+ }
6
+
7
+ :root {
8
+ --primary-color: #000;
9
+ --primary-color-border: rgb(0, 0, 0, 0.5);
10
+ --primary-background-color: #fff;
11
+ --secundary-background-color: #dddddd;
12
+
13
+ --danger-color: #ff0000;
14
+ }
@@ -0,0 +1,15 @@
1
+ @import url("https://fonts.googleapis.com/css2?family=Montserrat&family=Poppins&family=Roboto&display=swap");
2
+
3
+ * {
4
+ font-family: "Roboto", sans-serif;
5
+ }
6
+
7
+ :root {
8
+ --primary-color: rgba(67, 83, 52);
9
+ --primary-color-border: rgba(67, 83, 52);
10
+ --primary-background-color: rgba(158, 179, 132);
11
+ --secundary-background-color: rgba(250, 241, 228);
12
+ --secondary-color: rgba(250, 241, 228)
13
+
14
+ --danger-color: #b31313;
15
+ }
@@ -22,8 +22,8 @@ export default async function initializeProject(projectType) {
22
22
  return;
23
23
  }
24
24
 
25
- // Copiar el contenido del directorio de origen al directorio de destino
26
- await fs.copy(sliceDir, destinationDir);
25
+ // Copiar el contenido del directorio de origen al directorio de destino
26
+ await fs.copy(sliceDir, destinationDir, { recursive: true });
27
27
 
28
28
  console.log('Proyecto inicializado correctamente.');
29
29
  } catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slicejs-cli",
3
- "version": "1.0.18",
3
+ "version": "1.0.21",
4
4
  "description": "Command client for developing web applications with Slice.js",
5
5
  "main": "client.js",
6
6
  "scripts": {