czg 0.0.1 → 0.0.4

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/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "czg",
3
- "version": "0.0.1",
3
+ "version": "0.0.4",
4
4
  "description": "Interactive Commitizen CLI that generate standardized commit messages",
5
5
  "keywords": [
6
6
  "commit",
7
7
  "commit message",
8
- "commitizen-cli",
9
8
  "commitizen",
9
+ "commitizen-cli",
10
10
  "cli",
11
11
  "cz-git",
12
12
  "cz-customizable"
@@ -23,14 +23,19 @@
23
23
  "license": "MIT",
24
24
  "author": "Zhengqbbb <zhengqbbb@gmail.com> (https://github.com/Zhengqbbb)",
25
25
  "bin": {
26
- "czgit": "lib/index.js"
26
+ "czg": "bin/index.js"
27
+ },
28
+ "files": [
29
+ "bin"
30
+ ],
31
+ "devDependencies": {
32
+ "cz-git": "1.3.5",
33
+ "inquirer": "8.2.0",
34
+ "rimraf": "3.0.2"
27
35
  },
28
36
  "scripts": {
29
37
  "build": "pnpm clean && tsup",
30
38
  "clean": "rimraf *.tsbuildinfo lib dist",
31
39
  "release:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
32
- },
33
- "devDependencies": {
34
- "rimraf": "3.0.2"
35
40
  }
36
- }
41
+ }
package/CHANGELOG.md DELETED
File without changes
package/lib/index.js DELETED
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node
2
- var o="hello world";console.log(o);
package/src/index.ts DELETED
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env node
2
- const nice = "hello world";
3
- console.log(nice);
package/tsconfig.json DELETED
@@ -1,11 +0,0 @@
1
- {
2
- "extends": "../../tsconfig.base.json",
3
- "compilerOptions": {
4
- "rootDir": "./src",
5
- "outDir": "./lib",
6
- "noUnusedLocals": false,
7
- "noUnusedParameters": false,
8
- },
9
- "exclude": ["node_modules", "./dist", "./lib"],
10
- "include": ["./src"]
11
- }
package/tsup.config.ts DELETED
@@ -1,12 +0,0 @@
1
- import { defineConfig } from "tsup";
2
- import baseConfig from "../../tsup.config";
3
-
4
- export default defineConfig(() => {
5
- return {
6
- ...baseConfig,
7
- minify: true,
8
- entry: ["./src/index.ts"],
9
- tsconfig: "./tsconfig.json",
10
- dts: false
11
- };
12
- });