@opinionated-ts/config 1.8.0 → 1.8.2

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.
@@ -1,5 +1,3 @@
1
- import "conventional-changelog-conventionalcommits";
2
- import "semantic-release";
3
1
  //#region src/configs/release.ts
4
2
  const semanticReleaseConfig = {
5
3
  branches: [
package/dist/index.d.mts CHANGED
@@ -1,5 +1,18 @@
1
1
  import semanticReleaseConfig from "./configs/release.mjs";
2
- import { RuleConfigSeverity } from "@commitlint/types";
2
+ //#region node_modules/@commitlint/types/lib/rules.d.ts
3
+ /**
4
+ * Rules always have a severity.
5
+ * Severity indicates what to do if the rule is found to be broken
6
+ * 0 - Disable this rule
7
+ * 1 - Warn for violations
8
+ * 2 - Error for violations
9
+ */
10
+ declare enum RuleConfigSeverity {
11
+ Disabled = 0,
12
+ Warning = 1,
13
+ Error = 2
14
+ }
15
+ //#endregion
3
16
  //#region src/configs/commitlint.d.ts
4
17
  declare const commitlintConfig: {
5
18
  extends: string[];
package/dist/index.mjs CHANGED
@@ -1,6 +1,23 @@
1
1
  import semanticReleaseConfig from "./configs/release.mjs";
2
- import { RuleConfigSeverity } from "@commitlint/types";
3
- import "oxlint";
2
+ //#region node_modules/@commitlint/types/lib/rules.js
3
+ /**
4
+ * Rules always have a severity.
5
+ * Severity indicates what to do if the rule is found to be broken
6
+ * 0 - Disable this rule
7
+ * 1 - Warn for violations
8
+ * 2 - Error for violations
9
+ */
10
+ var RuleConfigSeverity;
11
+ (function(RuleConfigSeverity) {
12
+ RuleConfigSeverity[RuleConfigSeverity["Disabled"] = 0] = "Disabled";
13
+ RuleConfigSeverity[RuleConfigSeverity["Warning"] = 1] = "Warning";
14
+ RuleConfigSeverity[RuleConfigSeverity["Error"] = 2] = "Error";
15
+ })(RuleConfigSeverity || (RuleConfigSeverity = {}));
16
+ var RuleConfigQuality;
17
+ (function(RuleConfigQuality) {
18
+ RuleConfigQuality[RuleConfigQuality["User"] = 0] = "User";
19
+ RuleConfigQuality[RuleConfigQuality["Qualified"] = 1] = "Qualified";
20
+ })(RuleConfigQuality || (RuleConfigQuality = {}));
4
21
  const commitlintConfig = {
5
22
  extends: ["@commitlint/config-conventional"],
6
23
  rules: {
package/package.json CHANGED
@@ -90,5 +90,8 @@
90
90
  "node": "^26.2.0"
91
91
  },
92
92
  "packageManager": "bun@1.4.0",
93
- "version": "1.8.0"
93
+ "inlinedDependencies": {
94
+ "@commitlint/types": "21.2.0"
95
+ },
96
+ "version": "1.8.2"
94
97
  }