Skip to content

Commit 4cc50dd

Browse files
committed
chore: remove redundant --config=code-pushup.config.ts argument
1 parent 1309588 commit 4cc50dd

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

examples/plugins/src/package-json/src/package-json.plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export type PluginOptions = {
6060
* }
6161
*
6262
* // terminal
63-
* npx code-pushup --config code-pushup.config.ts
63+
* npx code-pushup
6464
*/
6565
export function create(options: PluginOptions): PluginConfig {
6666
return {

project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
}
3030
},
3131
"run-collect": {
32-
"command": "npx dist/packages/cli collect --config=code-pushup.config.ts",
32+
"command": "npx dist/packages/cli collect",
3333
"dependsOn": [
3434
{
3535
"projects": [
@@ -43,7 +43,7 @@
4343
]
4444
},
4545
"run-upload": {
46-
"command": "npx dist/packages/cli upload --config=code-pushup.config.ts",
46+
"command": "npx dist/packages/cli upload",
4747
"dependsOn": [
4848
{
4949
"projects": [
@@ -57,7 +57,7 @@
5757
]
5858
},
5959
"run-autorun": {
60-
"command": "npx dist/packages/cli autorun --config=code-pushup.config.ts",
60+
"command": "npx dist/packages/cli autorun",
6161
"dependsOn": [
6262
{
6363
"projects": [

0 commit comments

Comments
 (0)