Skip to content

Commit d588e28

Browse files
refactor(*): align script naming
1 parent b6546e4 commit d588e28

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"build:ci": "lerna run build",
1313
"build:lint:ci": "lerna run build:lint:ci",
1414
"format": "lerna run format",
15-
"format:ci": "lerna run format:check",
15+
"format:ci": "lerna run format:ci",
1616
"lint:ci": "lerna run lint:ci",
1717
"prepare": "husky",
1818
"publish-libs": "node packages/publish-helper/dist/publish-lib",

packages/branch-utilities/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
"scripts": {
1717
"prebuild": "rm -rf ./dist",
1818
"build": "tsc",
19-
"format": "npm run prettier:base -- --write",
19+
"format": "npm run format:base -- --write",
2020
"format:base": "prettier --config ../../.prettierrc.yml '{src,e2e,test}/**/*.ts'",
21-
"format:check": "npm run prettier:base -- --check",
21+
"format:ci": "npm run format:base -- --check",
2222
"format:staged": "prettier --write --config ../../.prettierrc.yml",
2323
"lint": "npm run lint:src:fix",
2424
"lint:ci": "npm run lint:src",

packages/eslint-config-recommended/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
"prebuild": "rm -rf ./dist",
2525
"build": "tsc",
2626
"build:lint:ci": "npm run build",
27-
"format": "npm run prettier:base -- --write",
27+
"format": "npm run format:base -- --write",
2828
"format:base": "prettier --config ../../.prettierrc.yml '{src,e2e,test}/**/*.ts'",
29-
"format:check": "npm run prettier:base -- --check",
29+
"format:ci": "npm run format:base -- --check",
3030
"format:staged": "prettier --write --config ../../.prettierrc.yml",
3131
"lint": "npm run lint:src:fix",
3232
"lint:ci": "npm run lint:src",

packages/eslint-plugin-rules/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
"prebuild": "rm -rf ./dist",
1515
"build": "tsc",
1616
"build:lint:ci": "npm run build",
17-
"format": "npm run prettier:base -- --write",
17+
"format": "npm run format:base -- --write",
1818
"format:base": "prettier --config ../../.prettierrc.yml '{src,e2e,test}/**/*.ts'",
19-
"format:check": "npm run prettier:base -- --check",
19+
"format:ci": "npm run format:base -- --check",
2020
"format:staged": "prettier --write --config ../../.prettierrc.yml",
2121
"lint": "npm run lint:src:fix",
2222
"lint:ci": "npm run lint:src",

packages/logger/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
"scripts": {
2121
"prebuild": "rm -rf ./dist",
2222
"build": "tsc",
23-
"format": "npm run prettier:base -- --write",
23+
"format": "npm run format:base -- --write",
2424
"format:base": "prettier --config ../../.prettierrc.yml '{src,e2e,test}/**/*.ts'",
25-
"format:check": "npm run prettier:base -- --check",
25+
"format:ci": "npm run format:base -- --check",
2626
"format:staged": "prettier --write --config ../../.prettierrc.yml",
2727
"lint": "npm run lint:src:fix && npm run lint:test:fix",
2828
"lint:ci": "npm run lint:src && npm run lint:test",

packages/publish-helper/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
"scripts": {
1414
"prebuild": "rm -rf ./dist",
1515
"build": "tsc",
16-
"format": "npm run prettier:base -- --write",
16+
"format": "npm run format:base -- --write",
1717
"format:base": "prettier --config ../../.prettierrc.yml '{src,e2e,test}/**/*.ts'",
18-
"format:check": "npm run prettier:base -- --check",
18+
"format:ci": "npm run format:base -- --check",
1919
"format:staged": "prettier --write --config ../../.prettierrc.yml",
2020
"lint": "npm run lint:src:fix",
2121
"lint:ci": "npm run lint:src",

packages/utilities/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
"scripts": {
1717
"prebuild": "rm -rf ./dist",
1818
"build": "tsc",
19-
"format": "npm run prettier:base -- --write",
19+
"format": "npm run format:base -- --write",
2020
"format:base": "prettier --config ../../.prettierrc.yml '{src,e2e,test}/**/*.ts'",
21-
"format:check": "npm run prettier:base -- --check",
21+
"format:ci": "npm run format:base -- --check",
2222
"format:staged": "prettier --write --config ../../.prettierrc.yml",
2323
"lint": "npm run lint:src:fix",
2424
"lint:ci": "npm run lint:src",

0 commit comments

Comments
 (0)