Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: codeandcats/compare-lists
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.8
Choose a base ref
...
head repository: codeandcats/compare-lists
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.0.9
Choose a head ref
Loading
Showing with 3,079 additions and 2,250 deletions.
  1. +3 −1 CHANGELOG.md
  2. +67 −0 commitlint.config.json
  3. +2,992 −2,232 package-lock.json
  4. +15 −15 package.json
  5. +2 −2 src/index.ts
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Change Log
# 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.9](https://github.com/codeandcats/compare-lists/compare/v1.0.8...v1.0.9) (2019-09-01)

<a name="1.0.8"></a>
## [1.0.8](https://github.com/codeandcats/compare-lists/compare/v1.0.7...v1.0.8) (2019-06-23)

67 changes: 67 additions & 0 deletions commitlint.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
{
"rules": {
"body-leading-blank": [
1,
"always"
],
"footer-leading-blank": [
1,
"always"
],
"header-max-length": [
2,
"always",
72
],
"scope-case": [
2,
"always",
"lower-case"
],
"subject-case": [
2,
"never",
[
"sentence-case",
"start-case",
"pascal-case",
"upper-case"
]
],
"subject-empty": [
2,
"never"
],
"subject-full-stop": [
2,
"never",
"."
],
"type-case": [
2,
"always",
"lower-case"
],
"type-empty": [
2,
"never"
],
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test"
]
]
}
}
Loading