chop-logic-components 3.4.0 → 3.5.1
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/README.md +7 -2
- package/dist/index.cjs.js +4 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +36 -5
- package/dist/index.es.js +1996 -1682
- package/dist/index.es.js.map +1 -1
- package/package.json +17 -8
package/README.md
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
[](CODE_OF_CONDUCT.md)
|
|
11
11
|
[](https://conventionalcommits.org)
|
|
12
12
|
[](https://biomejs.dev)
|
|
13
|
+
[](https://prettier.io)
|
|
13
14
|
|
|
14
15
|
Welcome to **Chop Logic Components**, a React components library packed with a variety of **styled
|
|
15
16
|
components** and **custom hooks** that are easy to integrate into any React project.
|
|
@@ -43,8 +44,12 @@ yarn add chop-logic-components
|
|
|
43
44
|
| `build` | Builds the TypeScript types and compiles the library using Vite. |
|
|
44
45
|
| `build:storybook` | Builds a static version of Storybook into the `storybook-static` directory. |
|
|
45
46
|
| `prepare` | Runs the production build and sets up Husky git hooks. |
|
|
46
|
-
| `format` | Formats all
|
|
47
|
-
| `
|
|
47
|
+
| `format` | Formats all files using both Biome (for JS/TS) and Prettier (for SCSS/MDX). |
|
|
48
|
+
| `format:biome` | Formats JS, TS, JSON, and MD files using Biome. |
|
|
49
|
+
| `format:prettier` | Formats SCSS and MDX files using Prettier. |
|
|
50
|
+
| `lint` | Runs both Biome and Prettier linters to check code style and quality. |
|
|
51
|
+
| `lint:biome` | Runs Biome linter on JS/TS files. |
|
|
52
|
+
| `lint:prettier` | Checks formatting of SCSS and MDX files using Prettier. |
|
|
48
53
|
| `lint:errors` | Shows only error-level diagnostics from Biome (limited to 100 issues). |
|
|
49
54
|
| `lint:warnings` | Shows only warning-level diagnostics from Biome (limited to 100 issues). |
|
|
50
55
|
| `lint:fix` | Automatically fixes Biome issues where possible. |
|