vowel 0.1.9 → 0.1.10

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/server.js +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vowel",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "bin": "./bin.js",
5
5
  "scripts": {
6
6
  "dev": "vite dev",
package/server.js CHANGED
@@ -17,7 +17,7 @@ const arg = !isBuild ? process.argv[2] : false;
17
17
  const $home = isBuild ? process.cwd() : directory;
18
18
 
19
19
  const define = {
20
- $home: directory;
20
+ $home: directory
21
21
  };
22
22
 
23
23
  const config = {
@@ -37,7 +37,7 @@ const vercelDefaults = {
37
37
  };
38
38
 
39
39
  async function buildProject() {
40
- console.log("Building...")
40
+ console.log('Building...');
41
41
  const outputDir = join($home[0], '.output');
42
42
  const vercelConfigPath = join($home[0], 'vercel.json');
43
43
  const vercelDirPath = join($home[0], '.vercel');
@@ -52,7 +52,7 @@ async function buildProject() {
52
52
 
53
53
  await build(config);
54
54
 
55
- console.log("Build completed.")
55
+ console.log('Build completed.');
56
56
 
57
57
  if (projectData !== null) {
58
58
  await mkdir(vercelDirPath, { recursive: true });