@nx/docker 22.7.0-beta.7 → 22.7.0-beta.9
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/executors.json +8 -8
- package/generators.json +10 -10
- package/package.json +3 -3
- package/src/executors/release-publish/schema.json +16 -16
- package/src/generators/init/schema.json +33 -33
package/executors.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
"$schema": "https://json-schema.org/schema",
|
|
3
|
+
"executors": {
|
|
4
|
+
"release-publish": {
|
|
5
|
+
"implementation": "./src/executors/release-publish/release-publish.impl",
|
|
6
|
+
"schema": "./src/executors/release-publish/schema.json",
|
|
7
|
+
"description": "DO NOT INVOKE DIRECTLY WITH `nx run`. Use `nx release publish` instead.",
|
|
8
|
+
"hidden": true
|
|
9
|
+
}
|
|
9
10
|
}
|
|
10
|
-
}
|
|
11
11
|
}
|
package/generators.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
2
|
+
"name": "Nx Docker",
|
|
3
|
+
"version": "0.1",
|
|
4
|
+
"generators": {
|
|
5
|
+
"init": {
|
|
6
|
+
"factory": "./src/generators/init/init",
|
|
7
|
+
"schema": "./src/generators/init/schema.json",
|
|
8
|
+
"description": "Initialize the `@nx/docker` plugin. **Experimental**: Docker support is experimental. Breaking changes may occur and not adhere to semver versioning.",
|
|
9
|
+
"aliases": ["ng-add"],
|
|
10
|
+
"hidden": true
|
|
11
|
+
}
|
|
11
12
|
}
|
|
12
|
-
}
|
|
13
13
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/docker",
|
|
3
3
|
"description": "The Nx Plugin for Docker to aid in containerizing projects.",
|
|
4
|
-
"version": "22.7.0-beta.
|
|
4
|
+
"version": "22.7.0-beta.9",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -51,11 +51,11 @@
|
|
|
51
51
|
"executors": "./executors.json",
|
|
52
52
|
"generators": "./generators.json",
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@nx/devkit": "22.7.0-beta.
|
|
54
|
+
"@nx/devkit": "22.7.0-beta.9",
|
|
55
55
|
"enquirer": "~2.3.6",
|
|
56
56
|
"tslib": "^2.3.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"nx": "22.7.0-beta.
|
|
59
|
+
"nx": "22.7.0-beta.9"
|
|
60
60
|
}
|
|
61
61
|
}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
2
|
+
"$schema": "https://json-schema.org/schema",
|
|
3
|
+
"version": 2,
|
|
4
|
+
"title": "Implementation details of `nx release publish`",
|
|
5
|
+
"description": "DO NOT INVOKE DIRECTLY WITH `nx run`. Use `nx release publish` instead.",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"properties": {
|
|
8
|
+
"dryRun": {
|
|
9
|
+
"type": "boolean",
|
|
10
|
+
"description": "Whether to run the command without actually publishing the image to the registry."
|
|
11
|
+
},
|
|
12
|
+
"quiet": {
|
|
13
|
+
"type": "boolean",
|
|
14
|
+
"description": "Suppress verbose output",
|
|
15
|
+
"default": false
|
|
16
|
+
}
|
|
11
17
|
},
|
|
12
|
-
"
|
|
13
|
-
"type": "boolean",
|
|
14
|
-
"description": "Suppress verbose output",
|
|
15
|
-
"default": false
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
"required": []
|
|
18
|
+
"required": []
|
|
19
19
|
}
|
|
@@ -1,36 +1,36 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
2
|
+
"$schema": "http://json-schema.org/schema",
|
|
3
|
+
"$id": "Init",
|
|
4
|
+
"title": "Nx Docker Init Generator",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"description": "Docker init generator.",
|
|
7
|
+
"properties": {
|
|
8
|
+
"rootProject": {
|
|
9
|
+
"type": "boolean",
|
|
10
|
+
"x-priority": "internal"
|
|
11
|
+
},
|
|
12
|
+
"keepExistingVersions": {
|
|
13
|
+
"type": "boolean",
|
|
14
|
+
"x-priority": "internal",
|
|
15
|
+
"description": "Keep existing dependencies versions",
|
|
16
|
+
"default": false
|
|
17
|
+
},
|
|
18
|
+
"updatePackageScripts": {
|
|
19
|
+
"type": "boolean",
|
|
20
|
+
"x-priority": "internal",
|
|
21
|
+
"description": "Update package scripts",
|
|
22
|
+
"default": false
|
|
23
|
+
},
|
|
24
|
+
"skipFormat": {
|
|
25
|
+
"description": "Skip formatting files.",
|
|
26
|
+
"type": "boolean",
|
|
27
|
+
"default": false
|
|
28
|
+
},
|
|
29
|
+
"skipPackageJson": {
|
|
30
|
+
"description": "Do not add dependencies to `package.json`.",
|
|
31
|
+
"type": "boolean",
|
|
32
|
+
"default": false
|
|
33
|
+
}
|
|
11
34
|
},
|
|
12
|
-
"
|
|
13
|
-
"type": "boolean",
|
|
14
|
-
"x-priority": "internal",
|
|
15
|
-
"description": "Keep existing dependencies versions",
|
|
16
|
-
"default": false
|
|
17
|
-
},
|
|
18
|
-
"updatePackageScripts": {
|
|
19
|
-
"type": "boolean",
|
|
20
|
-
"x-priority": "internal",
|
|
21
|
-
"description": "Update package scripts",
|
|
22
|
-
"default": false
|
|
23
|
-
},
|
|
24
|
-
"skipFormat": {
|
|
25
|
-
"description": "Skip formatting files.",
|
|
26
|
-
"type": "boolean",
|
|
27
|
-
"default": false
|
|
28
|
-
},
|
|
29
|
-
"skipPackageJson": {
|
|
30
|
-
"description": "Do not add dependencies to `package.json`.",
|
|
31
|
-
"type": "boolean",
|
|
32
|
-
"default": false
|
|
33
|
-
}
|
|
34
|
-
},
|
|
35
|
-
"required": []
|
|
35
|
+
"required": []
|
|
36
36
|
}
|