@theholocron/commitlint-config 1.16.0 → 3.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +5 -17
  2. package/package.json +12 -12
package/CHANGELOG.md CHANGED
@@ -1,25 +1,13 @@
1
1
  # @theholocron/commitlint-config
2
2
 
3
- ## 1.16.0
3
+ ## 3.1.0
4
4
 
5
5
  ### Minor Changes
6
6
 
7
- - [`4309ce8`](https://github.com/theholocron/configs/commit/4309ce860374743fa4a4ea781820f3875e647a46) Thanks [@iamnewton](https://github.com/iamnewton)! - Releasing more, as a test
7
+ - [`4f8154a`](https://github.com/theholocron/configs/commit/4f8154a534d5d7668cd2659da322448f39646aed) Thanks [@iamnewton](https://github.com/iamnewton)! - Update to include Alex language linting in lint-staging
8
8
 
9
- ## 1.10.1
9
+ ## 3.0.0
10
10
 
11
- ### Patch Changes
11
+ ### Major Changes
12
12
 
13
- - [`007712b`](https://github.com/theholocron/configs/commit/007712bdbc200ca9b7bc1c92f4aca5a3600bfcf0) Thanks [@iamnewton](https://github.com/iamnewton)! - another test release
14
-
15
- ## 1.10.0
16
-
17
- ### Minor Changes
18
-
19
- - [`16a5369`](https://github.com/theholocron/configs/commit/16a536930746ee06d1eb882181da7b4834359395) Thanks [@iamnewton](https://github.com/iamnewton)! - Testing out publishing
20
-
21
- ## 0.1.0
22
-
23
- ### Minor Changes
24
-
25
- - [`897b640`](https://github.com/theholocron/configs/commit/897b6402a117e0b1dea3ca7d2cda5acc42ff729d) Thanks [@iamnewton](https://github.com/iamnewton)! - Add CommitLint configuration
13
+ - [`88d7f99`](https://github.com/theholocron/configs/commit/88d7f995dd02cdbe63817ac0d13905d5aea3777a) Thanks [@iamnewton](https://github.com/iamnewton)! - Initial release
package/package.json CHANGED
@@ -1,27 +1,27 @@
1
1
  {
2
2
  "name": "@theholocron/commitlint-config",
3
- "homepage": "https://github.com/theholocron/configs/tree/main/packages/commitlint-config#readme",
3
+ "version": "3.1.0",
4
4
  "description": "A CommitLint configuration for writing well-formatted and consistent Git commits.",
5
- "author": "Newton Koumantzelis",
6
- "version": "1.16.0",
7
- "main": "commitlint.config.js",
8
- "type": "module",
5
+ "homepage": "https://github.com/theholocron/configs/tree/main/packages/commitlint-config#readme",
6
+ "bugs": "https://github.com/theholocron/configs/issues",
9
7
  "repository": {
10
8
  "type": "git",
11
9
  "url": "git+https://github.com/theholocron/configs.git"
12
10
  },
13
- "bugs": "https://github.com/theholocron/configs/issues",
14
- "releases": "https://github.com/theholocron/configs/releases",
15
- "wiki": "https://github.com/theholocron/configs/wiki",
16
11
  "license": "GPL-3.0",
17
- "publishConfig": {
18
- "access": "public"
19
- },
12
+ "author": "Newton Koumantzelis",
13
+ "type": "module",
14
+ "main": "commitlint.config.js",
20
15
  "scripts": {
21
16
  "test": "npx commitlint --from HEAD~1 --to HEAD --verbose"
22
17
  },
23
18
  "dependencies": {
24
19
  "@commitlint/cli": "^19.5.0",
25
20
  "@commitlint/config-conventional": "^19.5.0"
26
- }
21
+ },
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "releases": "https://github.com/theholocron/configs/releases",
26
+ "wiki": "https://github.com/theholocron/configs/wiki"
27
27
  }