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 +4 -4
- package/dist/commands/pr/index.js +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
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
|
|
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
|
|
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
|
|
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
|
|
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
|
}
|
package/oclif.manifest.json
CHANGED