Skip to content

Commit

Permalink
build: added commitizen
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaz Gatian authored and Chaz Gatian committed Mar 27, 2017
1 parent 4b94ec7 commit 0e6f55b
Show file tree
Hide file tree
Showing 5 changed files with 801 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
npm-debug.log
8 changes: 8 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
"KnisterPeter.vscode-commitizen"
]
}
28 changes: 28 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "conventional-commits",
"version": "1.0.0",
"description": "A sample demonstration of using commitizen and other tooling to generate changelogs and versioning",
"main": "index.js",
"scripts": {
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devboosts/conventional-commits.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/devboosts/conventional-commits/issues"
},
"homepage": "https://github.com/devboosts/conventional-commits#readme",
"devDependencies": {
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}
11 changes: 11 additions & 0 deletions src/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Conventional Commits</title>
</head>
<body>
</body>
</html>
Loading

0 comments on commit 0e6f55b

Please sign in to comment.