@zqw-cli/qenv 1.0.2 → 1.0.3

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/README.md +3 -2
  2. package/package.json +12 -2
package/README.md CHANGED
@@ -7,6 +7,7 @@
7
7
  <p align="center">
8
8
  <a href="https://www.npmjs.com/package/@zqw-cli/qenv"><img src="https://img.shields.io/npm/v/@zqw-cli/qenv.svg?style=flat-square" alt="npm version" /></a>
9
9
  <a href="https://nodejs.org"><img src="https://img.shields.io/node/v/@zqw-cli/qenv.svg?style=flat-square" alt="node version" /></a>
10
+ <a href="https://github.com/af-zqw/qenv"><img src="https://img.shields.io/badge/GitHub-af--zqw%2Fqenv-181717?style=flat-square&logo=github" alt="GitHub" /></a>
10
11
  <a href="LICENSE"><img src="https://img.shields.io/badge/License-MIT-blue.svg?style=flat-square" alt="license" /></a>
11
12
  </p>
12
13
  </p>
@@ -765,7 +766,7 @@ qenv clean --force
765
766
  ### 环境准备
766
767
 
767
768
  ```bash
768
- git clone https://github.com/user/qenv.git
769
+ git clone https://github.com/af-zqw/qenv.git
769
770
  cd qenv
770
771
  npm install
771
772
  ```
@@ -864,4 +865,4 @@ qenv/
864
865
 
865
866
  ## License
866
867
 
867
- [MIT](LICENSE) © 2026
868
+ [MIT](LICENSE) © 2026 [af-zqw](https://github.com/af-zqw)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zqw-cli/qenv",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Cross-platform CLI for managing environment variables",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -27,7 +27,17 @@
27
27
  "build": "tsup",
28
28
  "dev": "tsup --watch",
29
29
  "test": "vitest",
30
- "prepublishOnly": "npm run build && npm test"
30
+ "prepublishOnly": "npm run build && npm test",
31
+ "preversion": "npm test",
32
+ "postversion": "git push && git push --tags && npm publish --access public"
33
+ },
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "git+https://github.com/af-zqw/qenv.git"
37
+ },
38
+ "homepage": "https://github.com/af-zqw/qenv#readme",
39
+ "bugs": {
40
+ "url": "https://github.com/af-zqw/qenv/issues"
31
41
  },
32
42
  "devDependencies": {
33
43
  "@types/node": "^20.11.0",