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.
  • Loading branch information
Mersho committed Jan 31, 2024
1 parent 66e239a commit 76fea05
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 @@ -141,6 +141,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,5 +1,10 @@
{
"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 76fea05

Please sign in to comment.