Skip to content

Commit

Permalink
feat: initial feature commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Amar Shrestha committed Sep 29, 2021
0 parents commit 63ca863
Show file tree
Hide file tree
Showing 10 changed files with 4,901 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .commitlintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": ["@commitlint/config-conventional"]
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
.idea
1 change: 1 addition & 0 deletions .husky/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_
4 changes: 4 additions & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx --no-install commitlint --edit "$1"
15 changes: 15 additions & 0 deletions .versionrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"types": [
{"type": "feat", "section": "Features"},
{"type": "fix", "section": "Bug Fixes"},
{"type": "chore", "hidden": true},
{"type": "docs", "hidden": true},
{"type": "style", "hidden": true},
{"type": "refactor", "hidden": true},
{"type": "perf", "hidden": true},
{"type": "test", "hidden": true}
],
"commitUrlFormat": "https://github.com/mokkapps/changelog-generator-demo/commits/{{hash}}",
"compareUrlFormat": "https://github.com/mokkapps/changelog-generator-demo/compare/{{previousTag}}...{{currentTag}}"
}

31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [1.0.0](https://github.com/mokkapps/changelog-generator-demo/compare/v0.1.0...v1.0.0) (2021-04-24)


### Features

* Show a cool number ([fd993dd](https://github.com/mokkapps/changelog-generator-demo/commits/fd993dd9db77e7f4bf9350172255336529cb1e80))
* standard-version scripts ([4885d08](https://github.com/mokkapps/changelog-generator-demo/commits/4885d08bb0c018d1f73a0e5b8a718de269fca354))
* updated dependencies ([8e353a6](https://github.com/mokkapps/changelog-generator-demo/commits/8e353a6b1f902b48620686846f98c81e21266ee3))


### Bug Fixes

* Add missing exclamation mark ([7417037](https://github.com/mokkapps/changelog-generator-demo/commits/74170373acee78ebf1119ea76680a8f4033bbcea))

## [0.1.0](https://github.com/mokkapps/changelog-generator-demo//compare/v0.0.0...v0.1.0) (2020-09-06)


### Features

* New log message ([a693944](https://github.com/mokkapps/changelog-generator-demo/commits/a693944b0a2d3ac19466df50e0a73d1aa98b8737))

## 0.0.0 (2020-09-06)


### Features

* initial commit ([f31eb5a](https://github.com/mokkapps/changelog-generator-demo/commits/f31eb5a01b7e770a3540d2e5199d556278acfbb4))
2 changes: 2 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
console.log('I am alive!');
console.log('Hello World!');
Loading

0 comments on commit 63ca863

Please sign in to comment.