@ama-openapi/create 13.6.0-prerelease.2 → 13.6.0-prerelease.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 +4 -6
- package/package.json +17 -8
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ It helps developers quickly set up new OpenAPI projects with best practices and
|
|
|
12
12
|
## Usage
|
|
13
13
|
|
|
14
14
|
```shell
|
|
15
|
-
npm create @ama-openapi
|
|
15
|
+
npm create @ama-openapi -- [options]
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
The following global options can be used with any command:
|
|
@@ -22,14 +22,12 @@ The following global options can be used with any command:
|
|
|
22
22
|
| `--version`, `-v` | Display the current version of the generator. |
|
|
23
23
|
| `--help`, `-h` | Display usage for the CLI commands. |
|
|
24
24
|
|
|
25
|
-
##
|
|
25
|
+
## Generate Open Api basic project
|
|
26
26
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
Create a new [OpenAPI](https://www.openapis.org/) design project via the following command :
|
|
27
|
+
Create a new [OpenAPI](https://www.openapis.org/) basic project via the following command :
|
|
30
28
|
|
|
31
29
|
```shell
|
|
32
|
-
npm create @ama-openapi
|
|
30
|
+
npm create @ama-openapi <project-name> -- [options]
|
|
33
31
|
```
|
|
34
32
|
|
|
35
33
|
The following options are available:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ama-openapi/create",
|
|
3
|
-
"version": "13.6.0-prerelease.
|
|
3
|
+
"version": "13.6.0-prerelease.4",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -8,6 +8,15 @@
|
|
|
8
8
|
"keywords": [
|
|
9
9
|
"create"
|
|
10
10
|
],
|
|
11
|
+
"main": "./src/index.js",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"default": "./src/index.js"
|
|
15
|
+
},
|
|
16
|
+
"./package.json": {
|
|
17
|
+
"default": "./package.json"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
11
20
|
"bin": "./src/index.js",
|
|
12
21
|
"scripts": {
|
|
13
22
|
"nx": "nx",
|
|
@@ -18,7 +27,7 @@
|
|
|
18
27
|
"postbuild": "cpy 'package.json' 'dist' && patch-package-json-main"
|
|
19
28
|
},
|
|
20
29
|
"peerDependencies": {
|
|
21
|
-
"@o3r/telemetry": "~13.6.0-prerelease.
|
|
30
|
+
"@o3r/telemetry": "~13.6.0-prerelease.4",
|
|
22
31
|
"type-fest": "^4.30.1"
|
|
23
32
|
},
|
|
24
33
|
"peerDependenciesMeta": {
|
|
@@ -30,7 +39,7 @@
|
|
|
30
39
|
}
|
|
31
40
|
},
|
|
32
41
|
"dependencies": {
|
|
33
|
-
"@ama-openapi/core": "~13.6.0-prerelease.
|
|
42
|
+
"@ama-openapi/core": "~13.6.0-prerelease.4",
|
|
34
43
|
"ejs": "~3.1.9",
|
|
35
44
|
"globby": "^11.1.0",
|
|
36
45
|
"tslib": "^2.6.2",
|
|
@@ -43,11 +52,11 @@
|
|
|
43
52
|
"@nx/eslint-plugin": "~21.6.0",
|
|
44
53
|
"@nx/jest": "~21.6.0",
|
|
45
54
|
"@nx/js": "~21.6.0",
|
|
46
|
-
"@o3r/build-helpers": "~13.6.0-prerelease.
|
|
47
|
-
"@o3r/eslint-config": "~13.6.0-prerelease.
|
|
48
|
-
"@o3r/eslint-plugin": "~13.6.0-prerelease.
|
|
49
|
-
"@o3r/telemetry": "~13.6.0-prerelease.
|
|
50
|
-
"@o3r/test-helpers": "~13.6.0-prerelease.
|
|
55
|
+
"@o3r/build-helpers": "~13.6.0-prerelease.4",
|
|
56
|
+
"@o3r/eslint-config": "~13.6.0-prerelease.4",
|
|
57
|
+
"@o3r/eslint-plugin": "~13.6.0-prerelease.4",
|
|
58
|
+
"@o3r/telemetry": "~13.6.0-prerelease.4",
|
|
59
|
+
"@o3r/test-helpers": "~13.6.0-prerelease.4",
|
|
51
60
|
"@schematics/angular": "~20.3.13",
|
|
52
61
|
"@stylistic/eslint-plugin": "~5.6.0",
|
|
53
62
|
"@types/ejs": "^3.1.2",
|