create-quasar 1.0.2 → 1.0.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-quasar",
3
- "version": "1.0.2",
3
+ "version": "1.0.5",
4
4
  "description": "Scaffolds Quasar Apps, AppExtensions or UI kits",
5
5
  "author": {
6
6
  "name": "Razvan Stoenescu",
@@ -41,7 +41,7 @@
41
41
  "autoprefixer": "^10.4.2"
42
42
  },
43
43
  "engines": {
44
- "node": ">= 12.22.1",
44
+ "node": "^18 || ^16 || ^14.19",
45
45
  "npm": ">= 6.13.4",
46
46
  "yarn": ">= 1.21.1"
47
47
  }
@@ -12,6 +12,6 @@
12
12
  import { defineComponent } from 'vue'
13
13
 
14
14
  export default defineComponent({
15
- name: 'PageIndex'
15
+ name: 'IndexPage'
16
16
  })
17
17
  </script>
@@ -4,7 +4,7 @@ const routes = [
4
4
  path: '/',
5
5
  component: () => import('layouts/MainLayout.vue'),
6
6
  children: [
7
- { path: '', component: () => import('pages/Index.vue') }
7
+ { path: '', component: () => import('pages/IndexPage.vue') }
8
8
  ]
9
9
  },
10
10
 
@@ -12,7 +12,7 @@ const routes = [
12
12
  // but you can also remove it
13
13
  {
14
14
  path: '/:catchAll(.*)*',
15
- component: () => import('pages/Error404.vue')
15
+ component: () => import('pages/ErrorNotFound.vue')
16
16
  }
17
17
  ]
18
18
 
@@ -12,6 +12,6 @@
12
12
  import { defineComponent } from 'vue'
13
13
 
14
14
  export default defineComponent({
15
- name: 'PageIndex'
15
+ name: 'IndexPage'
16
16
  })
17
17
  </script>
@@ -4,7 +4,7 @@ const routes = [
4
4
  path: '/',
5
5
  component: () => import('layouts/MainLayout.vue'),
6
6
  children: [
7
- { path: '', component: () => import('pages/Index.vue') }
7
+ { path: '', component: () => import('pages/IndexPage.vue') }
8
8
  ]
9
9
  },
10
10
 
@@ -12,7 +12,7 @@ const routes = [
12
12
  // but you can also remove it
13
13
  {
14
14
  path: '/:catchAll(.*)*',
15
- component: () => import('pages/Error404.vue')
15
+ component: () => import('pages/ErrorNotFound.vue')
16
16
  }
17
17
  ]
18
18
 
@@ -46,7 +46,7 @@
46
46
  "typescript": "^4.5.4"
47
47
  },
48
48
  "engines": {
49
- "node": ">= 12.22.1",
49
+ "node": "^18 || ^16 || ^14.19",
50
50
  "npm": ">= 6.13.4",
51
51
  "yarn": ">= 1.21.1"
52
52
  }
@@ -15,7 +15,7 @@ import ExampleComponent from 'components/ExampleComponent.vue';
15
15
  import { defineComponent, ref } from 'vue';
16
16
 
17
17
  export default defineComponent({
18
- name: 'PageIndex',
18
+ name: 'IndexPage',
19
19
  components: { ExampleComponent },
20
20
  setup () {
21
21
  const todos = ref<Todo[]>([
@@ -50,7 +50,7 @@ import ExampleComponent from 'components/ExampleComponent.vue';
50
50
  import { defineComponent } from 'vue';
51
51
 
52
52
  export default defineComponent({
53
- name: 'PageIndex',
53
+ name: 'IndexPage',
54
54
  components: { ExampleComponent },
55
55
  data () {
56
56
  const todos: Todo[] = [
@@ -88,7 +88,7 @@ import ExampleComponent from 'components/ExampleComponent.vue';
88
88
  @Options({
89
89
  components: { ExampleComponent }
90
90
  })
91
- export default class PageIndex extends Vue {
91
+ export default class IndexPage extends Vue {
92
92
  todos: Todo[] = [
93
93
  {
94
94
  id: 1,
@@ -4,14 +4,14 @@ const routes: RouteRecordRaw[] = [
4
4
  {
5
5
  path: '/',
6
6
  component: () => import('layouts/MainLayout.vue'),
7
- children: [{ path: '', component: () => import('pages/Index.vue') }],
7
+ children: [{ path: '', component: () => import('pages/IndexPage.vue') }],
8
8
  },
9
9
 
10
10
  // Always leave this as last one,
11
11
  // but you can also remove it
12
12
  {
13
13
  path: '/:catchAll(.*)*',
14
- component: () => import('pages/Error404.vue'),
14
+ component: () => import('pages/ErrorNotFound.vue'),
15
15
  },
16
16
  ];
17
17
 
@@ -15,7 +15,7 @@ import ExampleComponent from 'components/ExampleComponent.vue';
15
15
  import { defineComponent, ref } from 'vue';
16
16
 
17
17
  export default defineComponent({
18
- name: 'PageIndex',
18
+ name: 'IndexPage',
19
19
  components: { ExampleComponent },
20
20
  setup() {
21
21
  const todos = ref<Todo[]>([
@@ -50,7 +50,7 @@ import ExampleComponent from 'components/ExampleComponent.vue';
50
50
  import { defineComponent } from 'vue';
51
51
 
52
52
  export default defineComponent({
53
- name: 'PageIndex',
53
+ name: 'IndexPage',
54
54
  components: { ExampleComponent },
55
55
  data() {
56
56
  const todos: Todo[] = [
@@ -88,7 +88,7 @@ import ExampleComponent from 'components/ExampleComponent.vue';
88
88
  @Options({
89
89
  components: { ExampleComponent }
90
90
  })
91
- export default class PageIndex extends Vue {
91
+ export default class IndexPage extends Vue {
92
92
  todos: Todo[] = [
93
93
  {
94
94
  id: 1,
@@ -4,14 +4,14 @@ const routes: RouteRecordRaw[] = [
4
4
  {
5
5
  path: '/',
6
6
  component: () => import('layouts/MainLayout.vue'),
7
- children: [{ path: '', component: () => import('pages/Index.vue') }],
7
+ children: [{ path: '', component: () => import('pages/IndexPage.vue') }],
8
8
  },
9
9
 
10
10
  // Always leave this as last one,
11
11
  // but you can also remove it
12
12
  {
13
13
  path: '/:catchAll(.*)*',
14
- component: () => import('pages/Error404.vue'),
14
+ component: () => import('pages/ErrorNotFound.vue'),
15
15
  },
16
16
  ];
17
17
 
package/utils/index.js CHANGED
@@ -142,7 +142,7 @@ Documentation can be found at: https://${verPrefix}quasar.dev
142
142
 
143
143
  Quasar is relying on donations to evolve. We'd be very grateful if you can
144
144
  read our manifest on "Why donations are important": https://${verPrefix}quasar.dev/why-donate
145
- Donation campaign: https://${verPrefix}donate.quasar.dev
145
+ Donation campaign: https://donate.quasar.dev
146
146
  Any amount is very welcomed.
147
147
  If invoices are required, please first contact Razvan Stoenescu.
148
148