Skip to content

Commit

Permalink
chore: "Add 'type' field to package.json for module support"
Browse files Browse the repository at this point in the history
  • Loading branch information
bisquit committed Jul 11, 2023
1 parent ceb28e3 commit 87c7255
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "vscode-auto-colorize",
"displayName": "Auto Colorize",
"description": "Automatically color your workspace",
"type": "module",
"version": "0.0.5",
"license": "MIT",
"publisher": "bisquit",
Expand Down Expand Up @@ -76,6 +77,39 @@
"@typescript-eslint/no-non-null-assertion": 0
}
},
"config": {
"commitizen": {
"types": [
{
"value": "feat",
"name": "feat: New feature"
},
{
"value": "fix",
"name": "fix: Bug fix"
},
{
"value": "improve",
"name": "improve: Improves feature or performance"
},
{
"value": "refactor",
"name": "refactor: Code refactoring"
},
{
"value": "docs",
"name": "docs: Documentation only changes"
},
{
"value": "chore",
"name": "chore: Other changes that don't modify src or test files"
}
],
"skipQuestions": [
"scope"
]
}
},
"repository": {
"type": "git",
"url": "https://github.com/bisquit/vscode-auto-colorize.git"
Expand Down

0 comments on commit 87c7255

Please sign in to comment.