@ardly/bunext 1.0.7 → 1.0.8

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 (3) hide show
  1. package/README.md +30 -2
  2. package/package.json +1 -1
  3. package/LICENSE +0 -21
package/README.md CHANGED
@@ -6,7 +6,17 @@ Repo: [Github Repo](https://github.com/DarkidOP/Bunext)
6
6
  ### to create a bootstrap project
7
7
 
8
8
  ```bash
9
- npx @darkid/create-bunext my-project
9
+ bunx @ardly/bunext@1.0.8 my-project
10
+ ```
11
+
12
+ or
13
+
14
+ ```bash
15
+ bunx @ardly/bunext@latest my-project
16
+ ```
17
+
18
+ ```bash
19
+ npx @ardly/bunext@1.0.8 my-project
10
20
  ```
11
21
 
12
22
  you can specify `-vs` or `--cursor` flags to auto open the project in vscode or cursor respectively after installation.
@@ -135,4 +145,22 @@ function Home() {
135
145
 
136
146
  ## License
137
147
 
138
- Licensed under the [MIT license](./LICENSE).
148
+ Copyright (c) 2024 Ard Astroid / Farhan Ashhab Nur
149
+
150
+ Permission is hereby granted, free of charge, to any person obtaining a copy
151
+ of this software and associated documentation files (the "Software"), to deal
152
+ in the Software without restriction, including without limitation the rights
153
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
154
+ copies of the Software, and to permit persons to whom the Software is
155
+ furnished to do so, subject to the following conditions:
156
+
157
+ The above copyright notice and this permission notice shall be included in all
158
+ copies or substantial portions of the Software.
159
+
160
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
161
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
162
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
163
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
164
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
165
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
166
+ SOFTWARE.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@ardly/bunext",
3
3
  "description": "CLI tool to create Next.js projects using the Bunext template",
4
4
  "author": "Ard Astroid <ardastroid@gmail.com>",
5
- "version": "1.0.7",
5
+ "version": "1.0.8",
6
6
  "bin": {
7
7
  "create-bunext": "./cli.mjs"
8
8
  },
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2024 Ard Astroid / Farhan Ashhab Nur
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, 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,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.