bod 5.14.1 → 5.14.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 +1 -1
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  [![Node Version](https://img.shields.io/node/v/bod?logo=node.js&style=for-the-badge)](https://www.npmjs.com/package/bod)
7
7
  [![NPM Version](https://img.shields.io/npm/v/bod?logo=npm&style=for-the-badge)](https://www.npmjs.com/package/bod)
8
- [![CDN](https://img.shields.io/npm/v/bod?label=CDN&logo=cloudflare&style=for-the-badge)](https://unpkg.com/browse/bod@latest/)
8
+ [![CDN](https://img.shields.io/npm/v/bod?label=CDN&logo=cloudflare&style=for-the-badge)](https://cdn.jsdelivr.net/npm/bod@latest/)
9
9
 
10
10
  [![CI](https://img.shields.io/github/actions/workflow/status/sabertazimi/bod/ci.yml?branch=main&style=for-the-badge&logo=github)](https://github.com/sabertazimi/bod/actions/workflows/ci.yml)
11
11
  [![Jest Coverage](https://img.shields.io/codecov/c/github/sabertazimi/bod?logo=codecov&style=for-the-badge)](https://codecov.io/gh/sabertazimi/bod)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bod",
3
- "version": "5.14.1",
3
+ "version": "5.14.3",
4
4
  "description": "Boilerplate CLI App",
5
5
  "author": "sabertazimi <sabertazimi@gmail.com>",
6
6
  "license": "MIT",
@@ -40,22 +40,22 @@
40
40
  "node": ">=18.0.0"
41
41
  },
42
42
  "scripts": {
43
- "build": "yarn clean && yarn compile",
43
+ "build": "pnpm clean && pnpm compile",
44
44
  "clean": "rimraf ./dist/",
45
45
  "compile": "tsc",
46
46
  "dev": "ts-node ./src/bod.ts",
47
47
  "format": "prettier --write src/**/*.ts",
48
- "lint": "yarn lint:style && yarn lint:type-check",
48
+ "lint": "pnpm lint:style && pnpm lint:type-check",
49
49
  "lint:style": "eslint --ext .ts ./src",
50
50
  "lint:type-check": "tsc --noEmit",
51
- "start": "yarn dev"
51
+ "start": "pnpm dev"
52
52
  },
53
53
  "dependencies": {
54
54
  "chalk": "^4.1.2",
55
- "commander": "^11.1.0",
55
+ "commander": "^12.0.0",
56
56
  "consola": "^3.2.3",
57
57
  "cross-spawn": "^7.0.3",
58
- "envinfo": "^7.11.0",
58
+ "envinfo": "^7.11.1",
59
59
  "inquirer": "^8.2.6",
60
60
  "tslib": "^2.6.2"
61
61
  },
@@ -67,5 +67,5 @@
67
67
  "ci-info": "^4.0.0",
68
68
  "rimraf": "^5.0.5"
69
69
  },
70
- "gitHead": "1a0755c8a29f557f83e7cc963acf96f23f857093"
70
+ "gitHead": "3f177b8193bf87570e413294a1d0a29930837a32"
71
71
  }