@w5s/conventional-changelog 1.1.5 → 1.2.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/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- const git_raw_commit_opts_1 = require("./git-raw-commit-opts");
3
+ const git_raw_commit_opts_js_1 = require("./git-raw-commit-opts.js");
4
4
  const parser_opts_js_1 = require("./parser-opts.js");
5
5
  const recommended_bump_opts_js_1 = require("./recommended-bump-opts.js");
6
6
  const writer_opts_js_1 = require("./writer-opts.js");
@@ -8,5 +8,5 @@ exports.default = {
8
8
  parserOpts: parser_opts_js_1.parserOpts,
9
9
  writerOpts: writer_opts_js_1.writerOpts,
10
10
  recommendedBumpOpts: recommended_bump_opts_js_1.recommendedBumpOpts,
11
- gitRawCommitOpts: git_raw_commit_opts_1.gitRawCommitOpts,
11
+ gitRawCommitOpts: git_raw_commit_opts_js_1.gitRawCommitOpts,
12
12
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/conventional-changelog",
3
- "version": "1.1.5",
3
+ "version": "1.2.0",
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",
@@ -30,37 +30,18 @@
30
30
  "!**/__tests__/**"
31
31
  ],
32
32
  "scripts": {
33
- "build": "concurrently \"npm:build:*\" \":\"",
34
- "build:tsc": "tsc -b tsconfig.build.json",
35
- "clean": "concurrently \"npm:clean:*\" \":\"",
36
- "clean:tsc": "rm -rf dist",
37
- "docs": "node ../../markdown.mjs",
38
- "format": "concurrently \"npm:format:*\" \":\"",
39
- "format:src": "eslint . --fix --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml",
40
- "lint": "concurrently \"npm:lint:*\" \":\"",
41
- "lint:src": "eslint . --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml",
42
- "prepare": "concurrently \"npm:prepare:*\" \":\"",
43
- "prepublishOnly": "npm run clean;npm run build",
44
- "spellcheck": "cspell --no-progress '**'",
45
- "test": "concurrently \"npm:test:*\" \":\"",
46
- "test:src": "vitest run"
33
+ "postpack": "npx clean-package restore"
47
34
  },
48
35
  "dependencies": {
49
36
  "@commitlint/types": "^17.0.0",
50
37
  "emoji-regex": "^10.2.1",
51
38
  "gitmojis": "^3.13.4"
52
39
  },
53
- "devDependencies": {
54
- "@types/conventional-changelog-writer": "4.0.3",
55
- "@types/conventional-commits-parser": "3.0.3",
56
- "vite": "4.4.7",
57
- "vitest": "0.33.0"
58
- },
59
40
  "engines": {
60
41
  "node": ">=16.0.0"
61
42
  },
62
43
  "publishConfig": {
63
44
  "access": "public"
64
45
  },
65
- "gitHead": "024ef9515d39f1c6eb891d7e7427212b2b06c952"
46
+ "gitHead": "16aaafb3d78f8485ca110ee2842005e6b938111b"
66
47
  }
package/src/index.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { gitRawCommitOpts } from './git-raw-commit-opts';
1
+ import { gitRawCommitOpts } from './git-raw-commit-opts.js';
2
2
  import { parserOpts } from './parser-opts.js';
3
3
  import { recommendedBumpOpts } from './recommended-bump-opts.js';
4
4
  import { writerOpts } from './writer-opts.js';