@lark-apaas/fullstack-cli 1.1.45-alpha.0 → 1.1.45-alpha.1

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": "@lark-apaas/fullstack-cli",
3
- "version": "1.1.45-alpha.0",
3
+ "version": "1.1.45-alpha.1",
4
4
  "description": "CLI tool for fullstack template management",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -7,7 +7,7 @@ const path = require('node:path');
7
7
 
8
8
  const SEP = ' ' + '─'.repeat(36);
9
9
  const LOG_DIR = process.env.FULLSTACK_LOG_DIR || '/tmp';
10
- const READ_LOG_TYPES = ['server-std', 'client-std', 'dev-std', 'install-dep-std', 'browser'];
10
+ const READ_LOG_TYPES = ['server-std', 'client-std'];
11
11
 
12
12
  function logFileFor(type) {
13
13
  return type.endsWith('-std') ? type.slice(0, -4) + '.std.log' : type + '.log';