create-harper 1.3.4 → 1.4.0

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.
@@ -3,6 +3,7 @@ import colors from 'picocolors';
3
3
  const {
4
4
  blue,
5
5
  cyan,
6
+ green,
6
7
  yellow,
7
8
  } = colors;
8
9
 
@@ -60,4 +61,21 @@ export const frameworks = [
60
61
  },
61
62
  ],
62
63
  },
64
+ {
65
+ name: 'vue',
66
+ display: 'Vue',
67
+ color: green,
68
+ variants: [
69
+ {
70
+ name: 'vue-ts',
71
+ display: 'TypeScript',
72
+ color: blue,
73
+ },
74
+ {
75
+ name: 'vue',
76
+ display: 'JavaScript',
77
+ color: yellow,
78
+ },
79
+ ],
80
+ },
63
81
  ];
@@ -2,6 +2,7 @@ import colors from 'picocolors';
2
2
 
3
3
  const {
4
4
  cyan,
5
+ green,
5
6
  yellow,
6
7
  } = colors;
7
8
 
@@ -32,4 +33,5 @@ If you are going to deploy your application to https://fabric.harper.fast/, you
32
33
 
33
34
  Available templates:
34
35
  ${yellow('vanilla-ts vanilla')}
35
- ${cyan('react-ts react')}`;
36
+ ${cyan('react-ts react')}
37
+ ${green('vue-ts vue')}`;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-harper",
3
3
  "description": "Scaffold a new Harper project in JavaScript or TypeScript.",
4
- "version": "1.3.4",
4
+ "version": "1.4.0",
5
5
  "type": "module",
6
6
  "author": {
7
7
  "name": "HarperDB",