meocli 0.0.9 → 0.1.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.
package/README.md CHANGED
@@ -43,7 +43,7 @@ $ npm install -g meocli
43
43
  $ me COMMAND
44
44
  running command...
45
45
  $ me (--version)
46
- meocli/0.0.9 win32-x64 node-v24.12.0
46
+ meocli/0.1.0 win32-x64 node-v24.12.0
47
47
  $ me --help [COMMAND]
48
48
  USAGE
49
49
  $ me COMMAND
@@ -91,7 +91,7 @@ EXAMPLES
91
91
  hello friend from oclif! (./src/commands/hello/index.ts)
92
92
  ```
93
93
 
94
- _See code: [src/commands/hello/index.ts](https://github.com/meme2046/meocli/blob/v0.0.9/src/commands/hello/index.ts)_
94
+ _See code: [src/commands/hello/index.ts](https://github.com/meme2046/meocli/blob/v0.1.0/src/commands/hello/index.ts)_
95
95
 
96
96
  ## `me hello world`
97
97
 
@@ -109,7 +109,7 @@ EXAMPLES
109
109
  hello world! (./src/commands/hello/world.ts)
110
110
  ```
111
111
 
112
- _See code: [src/commands/hello/world.ts](https://github.com/meme2046/meocli/blob/v0.0.9/src/commands/hello/world.ts)_
112
+ _See code: [src/commands/hello/world.ts](https://github.com/meme2046/meocli/blob/v0.1.0/src/commands/hello/world.ts)_
113
113
 
114
114
  ## `me help [COMMAND]`
115
115
 
@@ -448,5 +448,5 @@ EXAMPLES
448
448
  $ me pr ./src/file.ts --config ./.prettierrc.yaml
449
449
  ```
450
450
 
451
- _See code: [src/commands/pr/index.ts](https://github.com/meme2046/meocli/blob/v0.0.9/src/commands/pr/index.ts)_
451
+ _See code: [src/commands/pr/index.ts](https://github.com/meme2046/meocli/blob/v0.1.0/src/commands/pr/index.ts)_
452
452
  <!-- commandsstop -->
@@ -90,7 +90,7 @@ export default class Prettier extends Command {
90
90
  toYamlFile(configPath, DEFAULT_CONFIG);
91
91
  }
92
92
  // 根据包管理器类型构建参数
93
- const prettierArgs = ['--write', filePath];
93
+ const prettierArgs = ['--no-color', '--write', filePath];
94
94
  if (ignore === 'built_in') {
95
95
  prettierArgs.unshift('--ignore-path', ignorePath);
96
96
  }
@@ -123,5 +123,5 @@
123
123
  ]
124
124
  }
125
125
  },
126
- "version": "0.0.9"
126
+ "version": "0.1.0"
127
127
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "meocli",
3
3
  "description": "A new CLI generated with oclif",
4
- "version": "0.0.9",
4
+ "version": "0.1.0",
5
5
  "author": "meme2046",
6
6
  "bin": {
7
7
  "me": "./bin/run.js"