@codecanon/next-presets 0.0.1 → 0.0.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/README.md +7 -21
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -15,26 +15,12 @@ bun add @codecanon/next-presets
15
15
 
16
16
  ## Development
17
17
 
18
- - Install dependencies:
19
-
20
- ```bash
21
- npm install
22
- ```
23
-
24
- - Run the playground:
25
-
26
- ```bash
27
- npm run play
28
- ```
29
-
30
- - Run the unit tests:
31
-
32
- ```bash
33
- npm run test
34
- ```
35
-
36
- - Build the library:
37
-
38
18
  ```bash
39
- npm run build
19
+ bun install
20
+ bun run build # compile library
21
+ bun run dev # watch mode
22
+ bun test # run tests
23
+ bun run typecheck # type-check core + react entry
24
+ bun run format # format with prettier
25
+ bun run play # start the React playground (playground/)
40
26
  ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@codecanon/next-presets",
3
3
  "type": "module",
4
- "version": "0.0.1",
4
+ "version": "0.0.2",
5
5
  "description": "Allow your user to choose from a list of shadcn presets",
6
6
  "author": "CodeCanon LLC <codecanonllc@gmail.com>",
7
7
  "license": "MIT",