cleanup(core): hyphenate npm script names (#3672)

separate words in npm scripts with hyphen for consistency
This commit is contained in:
Vivek 2020-10-01 23:12:32 -04:00 committed by GitHub
parent e339ece224
commit b04158b671
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 11 deletions

View File

@ -84,13 +84,13 @@ jobs:
command: yarn documentation command: yarn documentation
- run: - run:
name: Check Imports name: Check Imports
command: yarn checkimports command: yarn check-imports
- run: - run:
name: Check Formatting name: Check Formatting
command: yarn checkformat command: yarn check-format
- run: - run:
name: Check Commit Message Format name: Check Commit Message Format
command: yarn checkcommit command: yarn check-commit
- run: - run:
name: Run linting name: Run linting
command: yarn lint command: yarn lint

View File

@ -135,7 +135,7 @@ Please follow the following guidelines:
- Make sure you run `yarn format` - Make sure you run `yarn format`
- Update documentation with `yarn documentation`. For documentation, check for spelling and grammatical errors. - Update documentation with `yarn documentation`. For documentation, check for spelling and grammatical errors.
- Update your commit message to follow the guidelines below (use `yarn commit` to automate compliance) - Update your commit message to follow the guidelines below (use `yarn commit` to automate compliance)
- `yarn checkcommit` will check to make sure your commit messages are formatted correctly - `yarn check-commit` will check to make sure your commit messages are formatted correctly
#### Commit Message Guidelines #### Commit Message Guidelines

View File

@ -8,16 +8,16 @@
"scripts": { "scripts": {
"build": "./scripts/package.sh --local", "build": "./scripts/package.sh --local",
"commit": "git-cz", "commit": "git-cz",
"checkcommit": "node ./scripts/commit-lint.js", "check-commit": "node ./scripts/commit-lint.js",
"check-format": "scripts/check-format.sh",
"check-imports": "node ./scripts/check-imports.js",
"check-versions": "ts-node -P ./scripts/tsconfig.scripts.json ./scripts/check-versions.ts",
"e2e": "./scripts/e2e.sh", "e2e": "./scripts/e2e.sh",
"e2e-ci": "./scripts/e2e-ci.sh", "e2e-ci": "./scripts/e2e-ci.sh",
"format": "./scripts/format.sh", "format": "./scripts/format.sh",
"nx-release": "./scripts/nx-release.js", "nx-release": "./scripts/nx-release.js",
"test": "nx run-many --target=test --all --parallel", "test": "nx run-many --target=test --all --parallel",
"lint": "nx run-many --target=lint --all --parallel", "lint": "nx run-many --target=lint --all --parallel",
"checkformat": "scripts/check-format.sh",
"checkimports": "node ./scripts/check-imports.js",
"checkversions": "ts-node -P ./scripts/tsconfig.scripts.json ./scripts/check-versions.ts",
"depcheck": "ts-node -P ./scripts/tsconfig.scripts.json ./scripts/depcheck.ts", "depcheck": "ts-node -P ./scripts/tsconfig.scripts.json ./scripts/depcheck.ts",
"local-registry": "./scripts/local-registry.sh", "local-registry": "./scripts/local-registry.sh",
"documentation": "./scripts/documentation/documentation.sh && ./scripts/documentation/check-documentation.sh", "documentation": "./scripts/documentation/documentation.sh && ./scripts/documentation/check-documentation.sh",
@ -251,7 +251,7 @@
}, },
"husky": { "husky": {
"hooks": { "hooks": {
"pre-push": "yarn checkcommit && yarn documentation && pretty-quick --check" "pre-push": "yarn check-commit && yarn documentation && pretty-quick --check"
} }
} }
} }

View File

@ -3,13 +3,13 @@
* It uses naming conventions to transform constants to matching node module name. * It uses naming conventions to transform constants to matching node module name.
* *
* Usage: * Usage:
* yarn checkversions [file] * yarn check-versions [file]
* *
* Positional arg: * Positional arg:
* - [file]: relative or absolute file path to the versions file. * - [file]: relative or absolute file path to the versions file.
* *
* Example: * Example:
* yarn checkversions packages/react/src/utils/versions * yarn check-versions packages/react/src/utils/versions
*/ */
import { join } from 'path'; import { join } from 'path';