@codecanon/next-presets 0.0.1 → 0.0.4
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 -21
- package/package.json +10 -3
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
|
-
|
|
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.
|
|
4
|
+
"version": "0.0.4",
|
|
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",
|
|
@@ -14,8 +14,15 @@
|
|
|
14
14
|
"url": "https://github.com//CodeCanon-LLC/codecanon-next-presets/issues"
|
|
15
15
|
},
|
|
16
16
|
"exports": {
|
|
17
|
-
".": "./
|
|
18
|
-
"
|
|
17
|
+
"./package.json": "./package.json",
|
|
18
|
+
".": {
|
|
19
|
+
"types": "./dist/index.d.ts",
|
|
20
|
+
"default": "./dist/index.js"
|
|
21
|
+
},
|
|
22
|
+
"./styles.css": {
|
|
23
|
+
"style": "./dist/styles.css",
|
|
24
|
+
"default": "./dist/styles.css"
|
|
25
|
+
}
|
|
19
26
|
},
|
|
20
27
|
"types": "./dist/index.d.ts",
|
|
21
28
|
"files": [
|