@impactor/nx-manager 2.0.2
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 +14 -0
- package/package.json +70 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2021 Dibo
|
|
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
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# nx-manager
|
|
2
|
+
|
|
3
|
+
An NX plugin that contain tools for managing NX workspaces and contain generators and executors.
|
|
4
|
+
|
|
5
|
+
## Building
|
|
6
|
+
|
|
7
|
+
add the executor `@impactor/nx-manager:universal-builder` to the build target, then run `nx build nx-manager` to build the library.
|
|
8
|
+
|
|
9
|
+
# Executors
|
|
10
|
+
|
|
11
|
+
## universal-builder
|
|
12
|
+
|
|
13
|
+
- automatically detects the project type based on the existing configuration files, then selects the best building tools or run a custom command or npm script, such as Angular, NestJS, TypeScript, esbuild, webpack, or tsc
|
|
14
|
+
- provide hooks to be run before or after the execution
|
package/package.json
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@impactor/nx-manager",
|
|
3
|
+
"version": "2.0.2",
|
|
4
|
+
"description": "NX generators and executors",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"private": false,
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"access": "public"
|
|
9
|
+
},
|
|
10
|
+
"nx": {
|
|
11
|
+
"projectType": "library",
|
|
12
|
+
"targets": {
|
|
13
|
+
"build": {},
|
|
14
|
+
"semantic-release": {}
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"exports": {
|
|
18
|
+
".": {
|
|
19
|
+
"types": "./index.d.js",
|
|
20
|
+
"default": "./index.js"
|
|
21
|
+
},
|
|
22
|
+
"./package.json": {
|
|
23
|
+
"default": "./package.json"
|
|
24
|
+
},
|
|
25
|
+
"./*": "./src/*"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"!**/*.tsbuildinfo",
|
|
30
|
+
"executors.json"
|
|
31
|
+
],
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@nx/angular": "22.3.3",
|
|
34
|
+
"@nx/devkit": "22.3.3",
|
|
35
|
+
"@nx/esbuild": "22.3.3",
|
|
36
|
+
"tslib": "^2.8.1",
|
|
37
|
+
"@impactor/nodejs": "3.0.2"
|
|
38
|
+
},
|
|
39
|
+
"executors": "./executors.json",
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@nestjs/cli": "^11.0.16",
|
|
42
|
+
"esbuild": "^0.27.2"
|
|
43
|
+
},
|
|
44
|
+
"engines": {
|
|
45
|
+
"node": "^18.19.1 || ^20.11.1 || >=22.0.0"
|
|
46
|
+
},
|
|
47
|
+
"repository": {
|
|
48
|
+
"type": "git",
|
|
49
|
+
"url": "https://github.com/its-dibo/dibo.git"
|
|
50
|
+
},
|
|
51
|
+
"author": "Sherif Eldeeb <sh.eldeeb.2010+github@gmail.com> (https://github.com/its-dibo)",
|
|
52
|
+
"homepage": "https://github.com/its-dibo/dibo#readme",
|
|
53
|
+
"bugs": {
|
|
54
|
+
"url": "https://github.com/its-dibo/dibo/issues",
|
|
55
|
+
"email": "sh.eldeeb.2010+github@gmail.com"
|
|
56
|
+
},
|
|
57
|
+
"license": "MIT",
|
|
58
|
+
"contributors": [],
|
|
59
|
+
"funding": [
|
|
60
|
+
{
|
|
61
|
+
"type": "paypal",
|
|
62
|
+
"url": "https://paypal.me/group99001"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"type": "patreon",
|
|
66
|
+
"url": "https://www.patreon.com/GoogleDev"
|
|
67
|
+
}
|
|
68
|
+
],
|
|
69
|
+
"scripts": {}
|
|
70
|
+
}
|