@w5s/conventional-changelog 1.0.6 → 1.0.8
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/index.d.ts +3 -0
- package/index.js +1 -0
- package/lib/index.js +0 -3
- package/package.json +6 -6
- package/src/index.ts +0 -4
package/index.d.ts
ADDED
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('./lib/index.js').default;
|
package/lib/index.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
/* eslint-disable import/no-import-module-exports */
|
|
4
3
|
const git_raw_commit_opts_1 = require("./git-raw-commit-opts");
|
|
5
4
|
const parser_opts_1 = require("./parser-opts");
|
|
6
5
|
const recommended_bump_opts_1 = require("./recommended-bump-opts");
|
|
@@ -11,5 +10,3 @@ exports.default = {
|
|
|
11
10
|
recommendedBumpOpts: recommended_bump_opts_1.recommendedBumpOpts,
|
|
12
11
|
gitRawCommitOpts: git_raw_commit_opts_1.gitRawCommitOpts,
|
|
13
12
|
};
|
|
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.
|
|
3
|
+
"version": "1.0.8",
|
|
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",
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
"author": "Julien Polo <julien.polo@gmail.com>",
|
|
17
17
|
"type": "commonjs",
|
|
18
18
|
"exports": {
|
|
19
|
-
".": "./
|
|
19
|
+
".": "./index.js",
|
|
20
20
|
"./lib/*": "./lib/*"
|
|
21
21
|
},
|
|
22
|
-
"typings": "./
|
|
22
|
+
"typings": "./index.d.ts",
|
|
23
23
|
"files": [
|
|
24
24
|
"template/*",
|
|
25
25
|
"lib/**/!(*.spec).d.ts",
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@types/conventional-changelog-writer": "4.0.2",
|
|
56
56
|
"@types/conventional-commits-parser": "3.0.3",
|
|
57
|
-
"vite": "4.
|
|
58
|
-
"vitest": "0.
|
|
57
|
+
"vite": "4.3.5",
|
|
58
|
+
"vitest": "0.31.0"
|
|
59
59
|
},
|
|
60
60
|
"engines": {
|
|
61
61
|
"node": ">=16.0.0"
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"publishConfig": {
|
|
64
64
|
"access": "public"
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "377ecc04617c5a5a3d527b1e4553f0328bc22485"
|
|
67
67
|
}
|
package/src/index.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/* eslint-disable import/no-import-module-exports */
|
|
2
1
|
import { gitRawCommitOpts } from './git-raw-commit-opts';
|
|
3
2
|
import { parserOpts } from './parser-opts';
|
|
4
3
|
import { recommendedBumpOpts } from './recommended-bump-opts';
|
|
@@ -10,6 +9,3 @@ export default {
|
|
|
10
9
|
recommendedBumpOpts,
|
|
11
10
|
gitRawCommitOpts,
|
|
12
11
|
};
|
|
13
|
-
|
|
14
|
-
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-member-access
|
|
15
|
-
module.exports = exports.default;
|