@w5s/conventional-changelog 1.0.5 → 1.0.6

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/lib/index.js CHANGED
@@ -1,5 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ /* eslint-disable import/no-import-module-exports */
3
4
  const git_raw_commit_opts_1 = require("./git-raw-commit-opts");
4
5
  const parser_opts_1 = require("./parser-opts");
5
6
  const recommended_bump_opts_1 = require("./recommended-bump-opts");
@@ -10,3 +11,5 @@ exports.default = {
10
11
  recommendedBumpOpts: recommended_bump_opts_1.recommendedBumpOpts,
11
12
  gitRawCommitOpts: git_raw_commit_opts_1.gitRawCommitOpts,
12
13
  };
14
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-member-access
15
+ module.exports = exports.default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/conventional-changelog",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Conventional changelog plugin for @w5s",
5
5
  "keywords": [],
6
6
  "homepage": "https://github.com/w5s/project-config/blob/main/packages/conventional-changelog#readme",
@@ -63,5 +63,5 @@
63
63
  "publishConfig": {
64
64
  "access": "public"
65
65
  },
66
- "gitHead": "12f2f65750a6ddd1b9746e7e09a7a77919b33eba"
66
+ "gitHead": "671bd237313bd60ed2ce5bf61604c8b1e99bb1fa"
67
67
  }
package/src/index.ts CHANGED
@@ -1,3 +1,4 @@
1
+ /* eslint-disable import/no-import-module-exports */
1
2
  import { gitRawCommitOpts } from './git-raw-commit-opts';
2
3
  import { parserOpts } from './parser-opts';
3
4
  import { recommendedBumpOpts } from './recommended-bump-opts';
@@ -9,3 +10,6 @@ export default {
9
10
  recommendedBumpOpts,
10
11
  gitRawCommitOpts,
11
12
  };
13
+
14
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-member-access
15
+ module.exports = exports.default;