@w5s/conventional-changelog 3.24.0 → 3.25.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.d.ts CHANGED
@@ -91,8 +91,8 @@ interface WriterOptions {
91
91
  }
92
92
  //#endregion
93
93
  //#region src/gitmoji.d.ts
94
- type Emoji = Emoji.Text | Emoji.Unicode;
95
- declare namespace Emoji {
94
+ export type Emoji = Emoji.Text | Emoji.Unicode;
95
+ export declare namespace Emoji {
96
96
  type Text = string & {
97
97
  '@@EmojiStyle': 'text';
98
98
  };
@@ -106,17 +106,17 @@ declare function isUnicode(anyValue: string): anyValue is Emoji.Unicode;
106
106
  /**
107
107
  * @namespace
108
108
  */
109
- declare const Emoji: Readonly<{
109
+ export declare const Emoji: Readonly<{
110
110
  hasInstance: typeof hasInstance;
111
111
  isText: typeof isText;
112
112
  isUnicode: typeof isUnicode;
113
113
  reEmojiText: RegExp;
114
114
  reEmojiUnicode: RegExp;
115
115
  }>;
116
- type GitmojiCode = Emoji & {
116
+ export type GitmojiCode = Emoji & {
117
117
  '@@Gitmoji': true;
118
118
  };
119
- declare namespace GitmojiCode {
119
+ export declare namespace GitmojiCode {
120
120
  type Emoji = Emoji.Text & {
121
121
  '@@Gitmoji': true;
122
122
  };
@@ -129,7 +129,7 @@ declare function toConventionalCommitType(gitmoji: GitmojiCode): CommitConventio
129
129
  /**
130
130
  * @namespace
131
131
  */
132
- declare const GitmojiCode: Readonly<{
132
+ export declare const GitmojiCode: Readonly<{
133
133
  isValid: typeof isValid;
134
134
  toConventionalCommitType: typeof toConventionalCommitType;
135
135
  }>;
@@ -148,11 +148,11 @@ declare function createPreset(): Promise<{
148
148
  }>;
149
149
  //#endregion
150
150
  //#region src/meta.d.ts
151
- declare const meta: Readonly<{
151
+ export declare const meta: Readonly<{
152
152
  buildNumber: number;
153
153
  name: string;
154
154
  version: string;
155
155
  }>;
156
156
  //#endregion
157
- export { Emoji, GitmojiCode, createPreset as default, meta };
157
+ export { createPreset as default };
158
158
  //# sourceMappingURL=index.d.ts.map
package/dist/index.js CHANGED
@@ -316,9 +316,9 @@ async function createPreset() {
316
316
  //#endregion
317
317
  //#region src/meta.ts
318
318
  const meta = Object.freeze({
319
- buildNumber: 1788368808,
319
+ buildNumber: 1788793943,
320
320
  name: "@w5s/conventional-changelog",
321
- version: "3.24.0"
321
+ version: "3.25.0"
322
322
  });
323
323
  //#endregion
324
324
  export { Emoji, GitmojiCode, createPreset as default, meta };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/conventional-changelog",
3
- "version": "3.24.0",
3
+ "version": "3.25.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",
@@ -44,5 +44,5 @@
44
44
  "publishConfig": {
45
45
  "access": "public"
46
46
  },
47
- "gitHead": "de5aba704f6744ba64973b010a848d2b2150341d"
47
+ "gitHead": "f01e374782fdf338f411115d7e82a0353540282b"
48
48
  }