quasarwind 1.0.5 → 1.0.6

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/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # quasarwind
2
2
 
3
- 1. install
3
+ ### 1. install
4
4
  npm i -g quasarwind
5
- 2. execute cli
5
+ ### 2. execute cli
6
6
  quasarwind name_project
7
- 3. Follow instructions
7
+ ### 3. Follow instructions
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quasarwind",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "CLI for generating custom project vite with Quasar and Tailwind",
5
5
  "bin": {
6
6
  "quasarwind": "bin/index.js"
@@ -1,64 +1,66 @@
1
1
  <template>
2
- <div class="q-pa-md q-gutter-md grid grid-cols-4">
3
- <q-card class="my-card">
4
- <q-card-section>
5
- {{ lorem }}
6
- </q-card-section>
7
- </q-card>
8
-
9
- <q-card
10
- class="my-card text-white"
11
- style="background: radial-gradient(circle, #35a2ff 0%, #014a88 100%)"
12
- >
13
- <q-card-section>
14
- <div class="text-h6">Our Changing Planet</div>
15
- <div class="text-subtitle2">by John Doe</div>
16
- </q-card-section>
17
-
18
- <q-card-section class="q-pt-none">21323
19
- {{ lorem }}
20
- </q-card-section>
21
- </q-card>
22
-
23
- <q-card dark bordered class="bg-grey-9 my-card">
24
- <q-card-section>
25
- <div class="text-h6">Our Changing Planet</div>
26
- <div class="text-subtitle2">by John Doe</div>
27
- </q-card-section>
28
-
29
- <q-separator dark inset />
30
-
31
- <q-card-section>
32
- {{ lorem }}
33
- </q-card-section>
34
- </q-card>
35
-
36
- <q-card flat bordered class="my-card">
37
- <q-card-section>
38
- <div class="text-h6">Our Changing Planet</div>
39
- </q-card-section>
40
-
41
- <q-card-section class="q-pt-none">
42
- PPPP Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
43
- tempor incididunt ut labore et dolore magna aliqua. dfsdfsadfsdfsddfsdfsdfsd
44
- </q-card-section>
45
-
46
- <q-separator inset />
47
-
48
- <q-card-section>
49
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
50
- tempor incididunt ut labore et dolore magna aliqua. sdfs
51
- </q-card-section>
52
- </q-card>
53
- </div>
54
-
55
- <div class="text-3xl font-bold underline">
56
- Hello world 1!
57
- </div>
58
-
59
- <q-btn label="click me" color="primary" @click="store.increment">&nbsp;
60
- {{ store.doubleCount }}</q-btn>
61
-
2
+ <div>
3
+ <div class="pl-[10px] text-3xl font-bold underline text-white">
4
+ Hello world 1! - Example aplication
5
+ </div>
6
+
7
+ <div class="q-pa-md q-gutter-md grid grid-cols-4">
8
+ <q-card class="my-card">
9
+ <q-card-section>
10
+ {{ lorem }}
11
+ </q-card-section>
12
+ </q-card>
13
+
14
+ <q-card
15
+ class="my-card text-white"
16
+ style="background: radial-gradient(circle, #35a2ff 0%, #014a88 100%)"
17
+ >
18
+ <q-card-section>
19
+ <div class="text-h6">Our Changing Planet</div>
20
+ <div class="text-subtitle2">by John Doe</div>
21
+ </q-card-section>
22
+
23
+ <q-card-section class="q-pt-none">21323
24
+ {{ lorem }}
25
+ </q-card-section>
26
+ </q-card>
27
+
28
+ <q-card dark bordered class="bg-grey-9 my-card">
29
+ <q-card-section>
30
+ <div class="text-h6">Our Changing Planet</div>
31
+ <div class="text-subtitle2">by John Doe</div>
32
+ </q-card-section>
33
+
34
+ <q-separator dark inset />
35
+
36
+ <q-card-section>
37
+ {{ lorem }}
38
+ </q-card-section>
39
+ </q-card>
40
+
41
+ <q-card flat bordered class="my-card">
42
+ <q-card-section>
43
+ <div class="text-h6">Our Changing Planet</div>
44
+ </q-card-section>
45
+
46
+ <q-card-section class="q-pt-none">
47
+ PPPP Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
48
+ tempor incididunt ut labore et dolore magna aliqua. dfsdfsadfsdfsddfsdfsdfsd
49
+ </q-card-section>
50
+
51
+ <q-separator inset />
52
+
53
+ <q-card-section>
54
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
55
+ tempor incididunt ut labore et dolore magna aliqua. sdfs
56
+ </q-card-section>
57
+ </q-card>
58
+ </div>
59
+
60
+ <q-btn class="q-ml-md" label="click me" color="primary" @click="store.increment">&nbsp;
61
+ {{ store.doubleCount }}
62
+ </q-btn>
63
+ </div>
62
64
  </template>
63
65
 
64
66
  <script setup lang="ts">
@@ -5,7 +5,6 @@
5
5
  </template>
6
6
 
7
7
  <script setup lang="ts">
8
- console.log('DirName:', __dirname)
9
8
  </script>
10
9
 
11
10
  <style scoped></style>