@opinionated-ts/config 1.8.3 → 1.8.4

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,4 +1,4 @@
1
- //#region src/configs/release.d.ts
1
+ //#region src/configs/semanticReleaseConfig.d.ts
2
2
  declare const semanticReleaseConfig: {
3
3
  branches: (string | {
4
4
  name: string;
@@ -1,4 +1,4 @@
1
- //#region src/configs/release.ts
1
+ //#region src/configs/semanticReleaseConfig.ts
2
2
  const semanticReleaseConfig = {
3
3
  branches: [
4
4
  "main",
package/dist/index.d.mts CHANGED
@@ -1,4 +1,4 @@
1
- import semanticReleaseConfig from "./configs/release.mjs";
1
+ import semanticReleaseConfig from "./configs/semanticReleaseConfig.mjs";
2
2
  //#region node_modules/@commitlint/types/lib/rules.d.ts
3
3
  /**
4
4
  * Rules always have a severity.
@@ -62,4 +62,4 @@ declare const oxlintConfig: {
62
62
  plugins: ("import" | "jsx-a11y" | "node" | "oxc" | "promise" | "react" | "react-perf" | "typescript" | "unicorn")[];
63
63
  };
64
64
  //#endregion
65
- export { commitlintConfig, cspellConfig, oxfmtConfig, oxlintConfig, semanticReleaseConfig as release };
65
+ export { commitlintConfig, cspellConfig, oxfmtConfig, oxlintConfig, semanticReleaseConfig };
package/dist/index.mjs CHANGED
@@ -1,4 +1,4 @@
1
- import semanticReleaseConfig from "./configs/release.mjs";
1
+ import semanticReleaseConfig from "./configs/semanticReleaseConfig.mjs";
2
2
  //#region node_modules/@commitlint/types/lib/rules.js
3
3
  /**
4
4
  * Rules always have a severity.
@@ -132,4 +132,4 @@ const oxlintConfig = {
132
132
  ]
133
133
  };
134
134
  //#endregion
135
- export { commitlintConfig, cspellConfig, oxfmtConfig, oxlintConfig, semanticReleaseConfig as release };
135
+ export { commitlintConfig, cspellConfig, oxfmtConfig, oxlintConfig, semanticReleaseConfig };
package/package.json CHANGED
@@ -49,7 +49,7 @@
49
49
  "./package.json": "./package.json",
50
50
  "./lefthook.yml": "./lefthook.yml",
51
51
  "./tsconfig.json": "./tsconfig.json",
52
- "./release": "./dist/configs/release.mjs"
52
+ "./release": "./dist/configs/semanticReleaseConfig.mjs"
53
53
  },
54
54
  "publishConfig": {
55
55
  "access": "public"
@@ -73,13 +73,13 @@
73
73
  "lefthook": "^2.1.10",
74
74
  "oxfmt": "^0.64.0",
75
75
  "oxlint": "^1.79.0",
76
- "oxlint-tsgolint": "^7.0.2001"
76
+ "oxlint-tsgolint": "^7.0.2001",
77
+ "semantic-release": "^25.0.9"
77
78
  },
78
79
  "devDependencies": {
79
80
  "@types/bun": "^1.4.0",
80
81
  "@types/node": "^26.2.0",
81
82
  "conventional-changelog-conventionalcommits": "^10.4.0",
82
- "semantic-release": "^25.0.9",
83
83
  "tsdown": "^0.22.14"
84
84
  },
85
85
  "peerDependencies": {
@@ -93,5 +93,5 @@
93
93
  "inlinedDependencies": {
94
94
  "@commitlint/types": "21.2.0"
95
95
  },
96
- "version": "1.8.3"
96
+ "version": "1.8.4"
97
97
  }