@reliverse/relico 1.1.2 → 1.3.0

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,44 +1,30 @@
1
1
  {
2
- "dependencies": {
3
- "@reliverse/runtime": "^1.0.3",
4
- "c12": "^3.0.3",
5
- "pathe": "^2.0.3"
6
- },
2
+ "dependencies": {},
7
3
  "description": "@reliverse/relico is a themeable, chainable, typed, truecolor-powered, modern terminal styling toolkit. Designed to make your CLI output colorful, accessible, and human-friendly. It gives you a flexible way to apply colors and styles — with reliability and a smart developer experience baked in. Built for humans, not just terminals.",
8
4
  "homepage": "https://docs.reliverse.org",
9
5
  "license": "MIT",
10
6
  "name": "@reliverse/relico",
11
7
  "type": "module",
12
- "version": "1.1.2",
8
+ "version": "1.3.0",
9
+ "keywords": [
10
+ "reliverse",
11
+ "cli",
12
+ "command-line",
13
+ "dler"
14
+ ],
13
15
  "author": "reliverse",
14
16
  "bugs": {
15
17
  "email": "blefnk@gmail.com",
16
18
  "url": "https://github.com/reliverse/relico/issues"
17
19
  },
18
- "keywords": [
19
- "reliverse"
20
- ],
21
20
  "repository": {
22
21
  "type": "git",
23
22
  "url": "git+https://github.com/reliverse/relico.git"
24
23
  },
25
- "devDependencies": {
26
- "@biomejs/biome": "1.9.4",
27
- "@eslint/js": "^9.26.0",
28
- "@reliverse/relidler-cfg": "^1.1.3",
29
- "@stylistic/eslint-plugin": "^4.2.0",
30
- "@total-typescript/ts-reset": "^0.6.1",
31
- "@types/bun": "^1.2.13",
32
- "@types/node": "^22.15.18",
33
- "eslint": "^9.26.0",
34
- "eslint-plugin-no-relative-import-paths": "^1.6.1",
35
- "eslint-plugin-perfectionist": "^4.13.0",
36
- "jiti": "^2.4.2",
37
- "knip": "^5.56.0",
38
- "typescript": "^5.8.3",
39
- "typescript-eslint": "^8.32.1",
40
- "vitest": "^3.1.3"
24
+ "bin": {
25
+ "dler": "bin/cli.js"
41
26
  },
27
+ "devDependencies": {},
42
28
  "exports": {
43
29
  ".": "./bin/mod.js"
44
30
  },
@@ -46,11 +32,12 @@
46
32
  "bin",
47
33
  "package.json",
48
34
  "README.md",
49
- "LICENSE"
35
+ "LICENSE",
36
+ "LICENSES"
50
37
  ],
51
38
  "main": "./bin/mod.js",
52
39
  "module": "./bin/mod.js",
53
40
  "publishConfig": {
54
41
  "access": "public"
55
42
  }
56
- }
43
+ }
package/bin/utils.d.ts DELETED
@@ -1,4 +0,0 @@
1
- /**
2
- * Logs a "FATAL" error, triggers a debugger in dev, and throws an error.
3
- */
4
- export declare const shouldNeverHappen: (msg?: string, ...args: any[]) => never;
package/bin/utils.js DELETED
@@ -1,10 +0,0 @@
1
- function isDevEnv() {
2
- return process.env.NODE_ENV === "development";
3
- }
4
- export const shouldNeverHappen = (msg, ...args) => {
5
- console.error(msg, ...args);
6
- if (isDevEnv()) {
7
- debugger;
8
- }
9
- throw new Error(`This should never happen: ${msg}`);
10
- };