Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: standardize npm script names #446

Merged
merged 1 commit into from Aug 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/generate-transcript.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Install dependencies
run: npm install
- name: Generate transcript
run: npm run generate-transcript
run: npm run generate:transcript
env:
TOKEN: ${{ secrets.DISCORD_BOT_TOKEN }}
ID: ${{ secrets.DISCORD_CHANNEL_ID }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"generate-transcript": "node ./scripts/generate-transcript"
"generate:transcript": "node ./scripts/generate-transcript"
},
"repository": "eslint/tsc-meetings",
"funding": "https://opencollective.com/eslint",
Expand Down