czg 1.6.2-beta.2 → 1.6.2-beta.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/lib/index.js +174 -168
  2. package/package.json +19 -14
package/package.json CHANGED
@@ -1,7 +1,18 @@
1
1
  {
2
2
  "name": "czg",
3
- "version": "1.6.2-beta.2",
3
+ "version": "1.6.2-beta.3",
4
4
  "description": "Interactive Commitizen CLI that generate standardized git commit message",
5
+ "author": "Zhengqbbb <zhengqbbb@gmail.com> (https://github.com/Zhengqbbb)",
6
+ "license": "MIT",
7
+ "homepage": "https://cz-git.qbb.sh/cli/",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/Zhengqbbb/cz-git",
11
+ "directory": "packages/cli"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/Zhengqbbb/cz-git/issues"
15
+ },
5
16
  "keywords": [
6
17
  "openai",
7
18
  "commit",
@@ -13,17 +24,11 @@
13
24
  "cz-git",
14
25
  "cz-customizable"
15
26
  ],
16
- "homepage": "https://cz-git.qbb.sh/cli/",
17
- "bugs": {
18
- "url": "https://github.com/Zhengqbbb/cz-git/issues"
19
- },
20
- "repository": {
21
- "type": "git",
22
- "url": "https://github.com/Zhengqbbb/cz-git",
23
- "directory": "packages/cli"
27
+ "exports": {
28
+ ".": "./lib/index.js",
29
+ "./package.json": "./package.json"
24
30
  },
25
- "license": "MIT",
26
- "author": "Zhengqbbb <zhengqbbb@gmail.com> (https://github.com/Zhengqbbb)",
31
+ "main": "lib/index.js",
27
32
  "bin": {
28
33
  "czg": "bin/index.js",
29
34
  "git-czg": "bin/index.js"
@@ -39,11 +44,11 @@
39
44
  "inquirer": "8.2.4",
40
45
  "minimist": "^1.2.8",
41
46
  "rimraf": "3.0.2",
42
- "cz-git": "1.6.2-beta.2"
47
+ "cz-git": "1.6.2-beta.3"
43
48
  },
44
49
  "scripts": {
45
- "build": "pnpm clean && tsup",
46
- "clean": "rimraf '*.tsbuildinfo' lib",
50
+ "build": "tsup",
51
+ "clean": "rimraf lib",
47
52
  "release:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
48
53
  }
49
54
  }