@adonisjs-ecommerce-core/create 2.1.0 → 2.2.1
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/LICENSE +21 -0
- package/README.md +9 -9
- package/package.json +6 -7
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 AdonisCommerce
|
|
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.
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# create
|
|
1
|
+
# @adonisjs-ecommerce-core/create
|
|
2
2
|
|
|
3
3
|
Create a new AdonisCommerce e-commerce application with a single command.
|
|
4
4
|
|
|
@@ -6,22 +6,22 @@ Create a new AdonisCommerce e-commerce application with a single command.
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
# Using npx (recommended)
|
|
9
|
-
npx create
|
|
9
|
+
npx @adonisjs-ecommerce-core/create my-store
|
|
10
10
|
|
|
11
11
|
# Using pnpm
|
|
12
|
-
pnpm create
|
|
12
|
+
pnpm create @adonisjs-ecommerce-core/create my-store
|
|
13
13
|
|
|
14
14
|
# Using yarn
|
|
15
|
-
yarn create
|
|
15
|
+
yarn create @adonisjs-ecommerce-core/create my-store
|
|
16
16
|
|
|
17
17
|
# Using npm
|
|
18
|
-
npm create
|
|
18
|
+
npm create @adonisjs-ecommerce-core/create my-store
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
## Options
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
-
npx create
|
|
24
|
+
npx @adonisjs-ecommerce-core/create <project-name> [options]
|
|
25
25
|
|
|
26
26
|
Options:
|
|
27
27
|
-t, --template <name> Template to use (default: "default")
|
|
@@ -39,13 +39,13 @@ Options:
|
|
|
39
39
|
|
|
40
40
|
```bash
|
|
41
41
|
# Create with Docker support
|
|
42
|
-
npx create
|
|
42
|
+
npx @adonisjs-ecommerce-core/create my-store --docker
|
|
43
43
|
|
|
44
44
|
# Create without git initialization
|
|
45
|
-
npx create
|
|
45
|
+
npx @adonisjs-ecommerce-core/create my-store --no-git
|
|
46
46
|
|
|
47
47
|
# Create using npm instead of pnpm
|
|
48
|
-
npx create
|
|
48
|
+
npx @adonisjs-ecommerce-core/create my-store --npm
|
|
49
49
|
```
|
|
50
50
|
|
|
51
51
|
## What's Included
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adonisjs-ecommerce-core/create",
|
|
3
|
-
"version": "2.1
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"description": "Create a new AdonisCommerce e-commerce application (AdonisJS 7 + React) with SOLID principles",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -10,11 +10,6 @@
|
|
|
10
10
|
"files": [
|
|
11
11
|
"dist"
|
|
12
12
|
],
|
|
13
|
-
"scripts": {
|
|
14
|
-
"build": "tsup src/index.ts --format esm --clean",
|
|
15
|
-
"dev": "tsup src/index.ts --format esm --watch",
|
|
16
|
-
"prepublishOnly": "pnpm build"
|
|
17
|
-
},
|
|
18
13
|
"keywords": [
|
|
19
14
|
"adonisjs",
|
|
20
15
|
"ecommerce",
|
|
@@ -57,5 +52,9 @@
|
|
|
57
52
|
"@types/validate-npm-package-name": "^4.0.2",
|
|
58
53
|
"tsup": "^8.3.5",
|
|
59
54
|
"typescript": "^5.8.0"
|
|
55
|
+
},
|
|
56
|
+
"scripts": {
|
|
57
|
+
"build": "tsup src/index.ts --format esm --clean",
|
|
58
|
+
"dev": "tsup src/index.ts --format esm --watch"
|
|
60
59
|
}
|
|
61
|
-
}
|
|
60
|
+
}
|