create-lik-app 0.0.10 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
package/LICENCE ADDED
@@ -0,0 +1,7 @@
1
+ Copyright © 2024 likcheung
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md CHANGED
@@ -0,0 +1,68 @@
1
+ Create project with likcheung habbits
2
+
3
+ > Compatibility Note: requires Node.js version 18+, 20+. and Bunjs 1.0+
4
+
5
+ <a href="https://www.licuii.xyz">
6
+ <img
7
+ src="http://cdn.licuii.xyz/self/lic-icon.png"
8
+ alt="lic-logo"
9
+ width="50"
10
+ />
11
+ <b>Create-Lik-App</b>
12
+ </a>
13
+
14
+ # Cli
15
+
16
+ With Npm:
17
+
18
+ ```bash
19
+ npx create-lik-app
20
+ ```
21
+
22
+ With Pnpm:
23
+
24
+ ```bash
25
+ pnpm create lik-app
26
+ ```
27
+
28
+ With Bun:
29
+
30
+ ```bash
31
+ bun create lik-app
32
+ ```
33
+
34
+ ## Args
35
+
36
+ ### --help
37
+
38
+ or `-h`
39
+
40
+ ```bash
41
+ npm create lik-app --help
42
+ ```
43
+
44
+ Some help message. And you can view templates here
45
+
46
+ ### --template
47
+
48
+ or `-t`
49
+
50
+ The template you want to use. You can view templates with `-h`
51
+
52
+ # Usage
53
+
54
+ When template is created, you can run:
55
+
56
+ ```bash
57
+ cd project-name
58
+ npm install
59
+ npm run dev
60
+ ```
61
+
62
+ # Attention
63
+
64
+ 1. some template use [husky](https://www.npmjs.com/package/husky) for commit limit. if you want to use it, you need to install it first, or remove husky.
65
+ 2. some template use [only-allow](https://www.npmjs.com/package/only-allow) to limit package manager. if u want to use others, you need to change script in package.json `scripts.preinstall`, or remove it.
66
+
67
+ **This project is inspired by [create-vite](https://github.com/vitejs/vite/tree/main/packages/create-vite).
68
+ Thx vite.**