githublogen 0.3.3 → 0.3.5

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.
Files changed (2) hide show
  1. package/dist/cli.mjs +2 -1
  2. package/package.json +19 -11
package/dist/cli.mjs CHANGED
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env node
2
+ import process from 'node:process';
2
3
  import cac from 'cac';
3
4
  import { cyan, green, red, yellow, dim, blue, bold } from 'kolorist';
4
5
  import { getChangelogMarkdown } from '@soybeanjs/changelog';
@@ -481,7 +482,7 @@ function createConsola(options = {}) {
481
482
  }
482
483
  const consola = createConsola();
483
484
 
484
- const version = "0.3.3";
485
+ const version = "0.3.5";
485
486
 
486
487
  function getHeaders(githubToken) {
487
488
  return {
package/package.json CHANGED
@@ -1,16 +1,20 @@
1
1
  {
2
2
  "name": "githublogen",
3
3
  "type": "module",
4
- "version": "0.3.3",
5
- "sideEffects": false,
4
+ "version": "0.3.5",
5
+ "packageManager": "pnpm@8.12.0",
6
6
  "author": {
7
7
  "name": "Soybean",
8
8
  "email": "soybeanjs@outlook.com",
9
9
  "url": "https://github.com/soybeanjs"
10
10
  },
11
11
  "license": "MIT",
12
- "publishConfig": {
13
- "registry": "https://registry.npmjs.org/"
12
+ "homepage": "https://github.com/soybeanjs/changelog/tree/main/packages/githublogen",
13
+ "repository": {
14
+ "url": "https://github.com/soybeanjs/changelog.git"
15
+ },
16
+ "bugs": {
17
+ "url": "https://github.com/soybeanjs/changelog/issues"
14
18
  },
15
19
  "keywords": [
16
20
  "github",
@@ -20,6 +24,10 @@
20
24
  "changelog",
21
25
  "log"
22
26
  ],
27
+ "publishConfig": {
28
+ "registry": "https://registry.npmjs.org/"
29
+ },
30
+ "sideEffects": false,
23
31
  "bin": {
24
32
  "githublogen": "./dist/cli.mjs"
25
33
  },
@@ -30,21 +38,21 @@
30
38
  "node": ">=12.0.0"
31
39
  },
32
40
  "dependencies": {
33
- "c12": "1.4.2",
41
+ "c12": "1.5.1",
34
42
  "cac": "6.7.14",
35
43
  "execa": "8.0.1",
36
44
  "kolorist": "1.8.0",
37
- "ofetch": "1.2.1",
38
- "@soybeanjs/changelog": "0.3.3"
45
+ "ofetch": "1.3.3",
46
+ "@soybeanjs/changelog": "0.3.5"
39
47
  },
40
48
  "devDependencies": {
41
- "@soybeanjs/cli": "0.7.1",
42
- "@types/node": "20.5.3",
43
- "typescript": "5.1.6",
49
+ "@soybeanjs/cli": "0.8.8",
50
+ "@types/node": "20.10.4",
51
+ "typescript": "5.3.3",
44
52
  "unbuild": "2.0.0"
45
53
  },
46
54
  "scripts": {
47
- "build": "pnpm typecheck && unbuild",
55
+ "build": "unbuild",
48
56
  "stub": "pnpm unbuild --stub",
49
57
  "typecheck": "tsc --noEmit --skipLibCheck"
50
58
  }