Skip to content

Commit

Permalink
package.json,CI.yml: add devDependencies
Browse files Browse the repository at this point in the history
These are packages that are only needed for local development
and testing and adding them will make it easier to develop
your application. They are not required when your application
is deployed in production. Also print the typescript version
on the CI as well.
  • Loading branch information
Mersho committed Jan 9, 2024
1 parent f12be3d commit a76a394
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ jobs:
git --version
node --version
npm --version
npx tsc --version
npx commitlint --version
yarn --version
- name: Run tests to validate our plugins
Expand Down
7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
{
"dependencies": {
"cosmiconfig": "8.0.0"
"cosmiconfig": "8.0.0"
},
"devDependencies": {
"@commitlint/types": "^17.4.4",
"@types/jest": "^29.5.5",
"@types/node": "^20.6.2"
}
}

0 comments on commit a76a394

Please sign in to comment.