create-yeow 0.2.63 → 0.2.64

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-yeow",
3
- "version": "0.2.63",
3
+ "version": "0.2.64",
4
4
  "description": "Scaffold a Yeow plugin project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -17,7 +17,11 @@ if (isTs && cfg.typecheck !== false) {
17
17
  execSync('npx -p typescript tsc --noEmit', { cwd: root, stdio: 'pipe' });
18
18
  console.log(' ✓ Type check passed');
19
19
  } catch (e) {
20
- console.error(' ✗ Type check failed — run with typecheck=false or set "typecheck": false in yeow.config.json');
20
+ const out = e.stdout?.toString().trim();
21
+ const err = e.stderr?.toString().trim();
22
+ if (out) console.error(out);
23
+ if (err) console.error(err);
24
+ if (!out && !err) console.error(' ✗ Type check failed');
21
25
  process.exit(1);
22
26
  }
23
27
  }
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "dependencies": {
10
10
  "yeow-api": "^0.2.48",
11
- "yeow-utils": "^0.1.11"
11
+ "yeow-utils": "^0.1.13"
12
12
  },
13
13
  "devDependencies": {
14
14
  "esbuild": "^0.25.0",
@@ -16,6 +16,6 @@
16
16
  "https-proxy-agent": "^9.0.0",
17
17
  "source-map": "^0.7.4",
18
18
  "ws": "^8.0.0",
19
- "typescript": "^5.0.0"
19
+ "typescript": "^7.0.0"
20
20
  }
21
21
  }
@@ -5,6 +5,7 @@
5
5
  "description": "A Yeow plugin",
6
6
  "api": "1.18",
7
7
  "java": 21,
8
+ "typecheck": true,
8
9
  "dev": {
9
10
  "port": 17367,
10
11
  "memory": "4G"