@sap/artifact-management 1.6.0 → 1.8.0
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/CHANGELOG.md +17 -0
- package/README.md +94 -0
- package/dist/src/cp/CFProjectBuilder.js +119 -3
- package/dist/src/cp/CFProjectBuilder.js.map +1 -1
- package/dist/src/plugins/cap/generators/CapServiceModuleGenerator.js +61 -3
- package/dist/src/plugins/cap/generators/CapServiceModuleGenerator.js.map +1 -1
- package/dist/src/plugins/cap/readers/CapModuleReader.js +20 -0
- package/dist/src/plugins/cap/readers/CapModuleReader.js.map +1 -1
- package/dist/src/plugins/xsuaa/generators/XsSecurityModuleManifestGenerator.js +57 -15
- package/dist/src/plugins/xsuaa/generators/XsSecurityModuleManifestGenerator.js.map +1 -1
- package/dist/src/project-api/ModuleInstance.js +1 -0
- package/dist/src/project-api/ModuleInstance.js.map +1 -1
- package/dist/src/project-api/ProjectCLI.js +41 -0
- package/dist/src/project-api/ProjectCLI.js.map +1 -1
- package/dist/src/project-api/ProjectEntityInstance.js +42 -1
- package/dist/src/project-api/ProjectEntityInstance.js.map +1 -1
- package/dist/src/project-api/ProjectImpl.js +75 -0
- package/dist/src/project-api/ProjectImpl.js.map +1 -1
- package/dist/src/project-api/ProjectModulesInstance.js +3 -0
- package/dist/src/project-api/ProjectModulesInstance.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +35 -32
- package/dist/types/src/cp/CFProjectBuilder.d.ts +8 -1
- package/dist/types/src/plugins/cap/generators/CapServiceModuleGenerator.d.ts +2 -1
- package/dist/types/src/plugins/xsuaa/generators/XsSecurityModuleManifestGenerator.d.ts +3 -1
- package/dist/types/src/project/ProjectBuilder.d.ts +2 -0
- package/dist/types/src/project-api/ProjectApi.d.ts +8 -0
- package/dist/types/src/project-api/ProjectEntityInstance.d.ts +2 -0
- package/dist/types/src/project-api/ProjectImpl.d.ts +3 -0
- package/node_modules/@sap/artifact-management-base/dist/src/project/Plugin.js +4 -0
- package/node_modules/@sap/artifact-management-base/dist/src/project/Plugin.js.map +1 -1
- package/node_modules/@sap/artifact-management-base/dist/src/util/Util.js +25 -0
- package/node_modules/@sap/artifact-management-base/dist/src/util/Util.js.map +1 -1
- package/node_modules/@sap/artifact-management-base/dist/tsconfig.tsbuildinfo +4 -4
- package/node_modules/@sap/artifact-management-base/dist/types/src/project/Plugin.d.ts +1 -0
- package/node_modules/@sap/artifact-management-base/dist/types/src/util/Util.d.ts +4 -0
- package/node_modules/@sap/artifact-management-base/package.json +1 -1
- package/node_modules/@sap/artifact-management-mdkplugin/dist/src/InfoList.js +8 -0
- package/node_modules/@sap/artifact-management-mdkplugin/dist/src/InfoList.js.map +1 -1
- package/node_modules/@sap/artifact-management-mdkplugin/dist/src/generators/MdkModuleGenerator.js +5 -1
- package/node_modules/@sap/artifact-management-mdkplugin/dist/src/generators/MdkModuleGenerator.js.map +1 -1
- package/node_modules/@sap/artifact-management-mdkplugin/dist/src/readers/MdkApplicationReader.js +30 -3
- package/node_modules/@sap/artifact-management-mdkplugin/dist/src/readers/MdkApplicationReader.js.map +1 -1
- package/node_modules/@sap/artifact-management-mdkplugin/dist/tsconfig.tsbuildinfo +10 -10
- package/node_modules/@sap/artifact-management-mdkplugin/dist/types/src/InfoList.d.ts +8 -0
- package/node_modules/@sap/artifact-management-mdkplugin/dist/types/src/generators/MdkModuleGenerator.d.ts +1 -0
- package/node_modules/@sap/artifact-management-mdkplugin/dist/types/src/readers/MdkApplicationReader.d.ts +1 -0
- package/node_modules/@sap/artifact-management-mdkplugin/package.json +2 -2
- package/package.json +4 -4
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ModuleType, ModuleGeneratorContext, ModuleManifestGenerator, MtaModuleRequires, MtaModule, Service, KeyIn } from '@sap/artifact-management-base';
|
|
2
2
|
export default class MdkModuleGenerator implements ModuleManifestGenerator {
|
|
3
|
+
private genericDocumentAdded;
|
|
3
4
|
getType(): KeyIn<typeof ModuleType>;
|
|
4
5
|
provideResources(context: ModuleGeneratorContext): Promise<Service[]>;
|
|
5
6
|
beforeBuildCommands(): Promise<string[]>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap/artifact-management-mdkplugin",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.0",
|
|
4
4
|
"main": "dist/src/index.js",
|
|
5
5
|
"types": "dist/types/src/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"create-packages": "bash ../../bin/create_node_module.sh"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@sap/artifact-management-base": "1.
|
|
27
|
+
"@sap/artifact-management-base": "1.8.0",
|
|
28
28
|
"@sap/cds": "5.1.5",
|
|
29
29
|
"fast-glob": "3.2.7",
|
|
30
30
|
"glob": "7.2.0",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap/artifact-management",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.0",
|
|
4
4
|
"main": "dist/src/index.js",
|
|
5
5
|
"types": "dist/types/src/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"dev-project": "dist/src/project-api/ProjectCLI.js"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@sap/artifact-management-base": "1.
|
|
32
|
-
"@sap/artifact-management-mdkplugin": "1.
|
|
31
|
+
"@sap/artifact-management-base": "1.8.0",
|
|
32
|
+
"@sap/artifact-management-mdkplugin": "1.8.0",
|
|
33
33
|
"ajv": "8.8.1",
|
|
34
34
|
"arg": "5.0.1",
|
|
35
35
|
"async": "3.2.2",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@istanbuljs/nyc-config-typescript": "1.0.1",
|
|
55
|
-
"@sap/cds": "5.1
|
|
55
|
+
"@sap/cds": "5.8.1",
|
|
56
56
|
"@types/async": "3.2.3",
|
|
57
57
|
"@types/ejs": "3.0.5",
|
|
58
58
|
"@types/glob": "7.1.3",
|