@theholocron/commitlint-config 1.10.1 → 3.0.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.
package/CHANGELOG.md CHANGED
@@ -1,19 +1,7 @@
1
1
  # @theholocron/commitlint-config
2
2
 
3
- ## 1.10.1
3
+ ## 3.0.0
4
4
 
5
- ### Patch Changes
5
+ ### Major Changes
6
6
 
7
- - [`007712b`](https://github.com/theholocron/configs/commit/007712bdbc200ca9b7bc1c92f4aca5a3600bfcf0) Thanks [@iamnewton](https://github.com/iamnewton)! - another test release
8
-
9
- ## 1.10.0
10
-
11
- ### Minor Changes
12
-
13
- - [`16a5369`](https://github.com/theholocron/configs/commit/16a536930746ee06d1eb882181da7b4834359395) Thanks [@iamnewton](https://github.com/iamnewton)! - Testing out publishing
14
-
15
- ## 0.1.0
16
-
17
- ### Minor Changes
18
-
19
- - [`897b640`](https://github.com/theholocron/configs/commit/897b6402a117e0b1dea3ca7d2cda5acc42ff729d) Thanks [@iamnewton](https://github.com/iamnewton)! - Add CommitLint configuration
7
+ - [`88d7f99`](https://github.com/theholocron/configs/commit/88d7f995dd02cdbe63817ac0d13905d5aea3777a) Thanks [@iamnewton](https://github.com/iamnewton)! - Initial release
@@ -1,5 +1,6 @@
1
1
  /**
2
- * @type {import('@commitlint/types').UserConfig}
2
+ * @see https://commitlint.js.org/reference/configuration.html
3
+ * @type {import("@commitlint/types").UserConfig}
3
4
  */
4
5
  export default {
5
6
  extends: ["@commitlint/config-conventional"],
package/package.json CHANGED
@@ -1,24 +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.0.0",
4
4
  "description": "A CommitLint configuration for writing well-formatted and consistent Git commits.",
5
- "author": "Newton Koumantzelis",
6
- "version": "1.10.1",
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"
12
+ "author": "Newton Koumantzelis",
13
+ "type": "module",
14
+ "main": "commitlint.config.js",
15
+ "scripts": {
16
+ "test": "npx commitlint --from HEAD~1 --to HEAD --verbose"
19
17
  },
20
18
  "dependencies": {
21
19
  "@commitlint/cli": "^19.5.0",
22
20
  "@commitlint/config-conventional": "^19.5.0"
23
- }
21
+ },
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "releases": "https://github.com/theholocron/configs/releases",
26
+ "wiki": "https://github.com/theholocron/configs/wiki"
24
27
  }