zerozeeker 2.3.1 → 2.3.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 (2) hide show
  1. package/dist/index.js +3 -1
  2. package/package.json +6 -2
package/dist/index.js CHANGED
@@ -3,10 +3,12 @@
3
3
  // index.ts
4
4
  import { Command } from "commander";
5
5
  import { execSync } from "child_process";
6
+ import { createRequire } from "module";
6
7
  import ora from "ora";
7
8
  import chalk from "chalk";
9
+ var _require = createRequire(import.meta.url);
10
+ var { version: VERSION } = _require("./package.json");
8
11
  var REGISTRY_URL = "https://www.zerozeeker.com/r";
9
- var VERSION = "2.3.1";
10
12
  var REGISTRY = [
11
13
  // Buttons
12
14
  { name: "rainbow-button", category: "Buttons", desc: "Animated rainbow gradient border" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zerozeeker",
3
- "version": "2.3.1",
3
+ "version": "2.3.2",
4
4
  "description": "CLI for installing ZeroZeeker UI components",
5
5
  "type": "module",
6
6
  "bin": {
@@ -13,7 +13,11 @@
13
13
  "scripts": {
14
14
  "build": "tsup index.ts --format esm --dts --clean",
15
15
  "dev": "tsup index.ts --format esm --watch",
16
- "prepublishOnly": "npm run build"
16
+ "prepublishOnly": "npm run build",
17
+ "version:patch": "npm version patch --no-git-tag-version",
18
+ "version:minor": "npm version minor --no-git-tag-version",
19
+ "version:major": "npm version major --no-git-tag-version",
20
+ "release": "npm publish --access public"
17
21
  },
18
22
  "keywords": [
19
23
  "shadcn",