squeaky-clean 0.4.0 → 0.4.2

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 (1) hide show
  1. package/package.json +7 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squeaky-clean",
3
- "version": "0.4.0",
3
+ "version": "0.4.2",
4
4
  "description": "✨ Easy, customizable and expandable development cache cleaner CLI with interactive configuration! Smart, safe, and configurable cache management for 25+ development tools.",
5
5
  "main": "dist/cli.js",
6
6
  "bin": {
@@ -10,6 +10,9 @@
10
10
  "scripts": {
11
11
  "build": "tsc --build",
12
12
  "build:watch": "tsc --watch",
13
+ "build:patch": "npm run version:patch && npm run build",
14
+ "build:minor": "npm run version:minor && npm run build",
15
+ "build:major": "npm run version:major && npm run build",
13
16
  "dev": "tsx src/cli.ts",
14
17
  "start": "node dist/cli.js",
15
18
  "test": "vitest",
@@ -21,9 +24,9 @@
21
24
  "clean": "rimraf dist .tsbuildinfo",
22
25
  "prepublishOnly": "npm run clean && tsc --build --force",
23
26
  "release": "npm run test && npm run build && npm pack && npm publish && npm run release:github",
24
- "release:patch": "npm run version:patch && npm run test && npm run build && npm publish",
25
- "release:minor": "npm run version:minor && npm run test && npm run build && npm publish",
26
- "release:major": "npm run version:major && npm run test && npm run build && npm publish",
27
+ "release:patch": "npm run version:patch && npm run test && npm run build && npm publish && npm run release:github",
28
+ "release:minor": "npm run version:minor && npm run test && npm run build && npm publish && npm run release:github",
29
+ "release:major": "npm run version:major && npm run test && npm run build && npm publish && npm run release:github",
27
30
  "remove-self-dependency": "node scripts/remove-self-dependency.js",
28
31
  "version:patch": "npm version patch && npm run remove-self-dependency && node scripts/update-version.js",
29
32
  "version:minor": "npm version minor && npm run remove-self-dependency && node scripts/update-version.js",