Skip to content

Commit 2b8198e

Browse files
committed
patch: added license and readme, to the
1 parent f6212ba commit 2b8198e

File tree

6 files changed

+55
-7
lines changed

6 files changed

+55
-7
lines changed

.prettierignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/examples
1+
/examples

package.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,13 @@
2020
"test:unit": "cd packages/core && pnpm test:unit",
2121
"test:cli": "cd packages/core && pnpm test:cli",
2222
"format": "prettier --write .",
23-
"format:check": "prettier --check ."
23+
"format:check": "prettier --check .",
24+
"version:core:patch": "cd packages/core && pnpm version patch",
25+
"version:core:minor": "cd packages/core && pnpm version minor",
26+
"version:core:major": "cd packages/core && pnpm version major",
27+
"version:cli:patch": "cd packages/cli && pnpm version patch",
28+
"version:cli:minor": "cd packages/cli && pnpm version minor",
29+
"version:cli:major": "cd packages/cli && pnpm version major"
2430
},
2531
"devDependencies": {
2632
"@eslint/js": "^9.0.0",
@@ -29,4 +35,4 @@
2935
"prettier": "^3.5.3",
3036
"release-please": "^17.0.0"
3137
}
32-
}
38+
}

packages/cli/LICENSE

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2025 Serbyte Development LLC
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of
6+
this software and associated documentation files (the "Software"), to deal in
7+
the Software without restriction, including without limitation the rights to
8+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9+
the Software, and to permit persons to whom the Software is furnished to do so,
10+
subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

packages/cli/package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-zero-ui",
3-
"version": "1.0.5",
3+
"version": "1.0.6",
44
"type": "module",
55
"main": "./bin.js",
66
"bin": {
@@ -11,12 +11,14 @@
1111
},
1212
"files": [
1313
"bin.js",
14-
"package.json"
14+
"package.json",
15+
"README.md",
16+
"LICENSE"
1517
],
1618
"dependencies": {
1719
"@austinserb/react-zero-ui": "^1.0.20",
1820
"postcss": "^8.4.27",
1921
"tailwindcss": "^4.0.0",
2022
"@tailwindcss/postcss": "^4.1.8"
2123
}
22-
}
24+
}

packages/core/LICENSE

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2025 Serbyte Development LLC
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of
6+
this software and associated documentation files (the "Software"), to deal in
7+
the Software without restriction, including without limitation the rights to
8+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9+
the Software, and to permit persons to whom the Software is furnished to do so,
10+
subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@austinserb/react-zero-ui",
3-
"version": "1.0.20",
3+
"version": "1.0.21",
44
"description": "Zero re-render UI state management for React",
55
"private": false,
66
"type": "module",

0 commit comments

Comments
 (0)