0.0.52 • Published 8 months ago

@sap-ux/abap-deploy-config-writer v0.0.52

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
8 months ago

@sap-ux/abap-deploy-config-writer

Easy to use ABAP deployment configuration writer for use within Yeoman generator and other prompting libraries.

Installation

Npm npm install --save @sap-ux/abap-deploy-config-writer

Yarn yarn add @sap-ux/abap-deploy-config-writer

Pnpm pnpm add @sap-ux/abap-deploy-config-writer

Usage

Calling the generate function

import { generate } from '@sap-ux/abap-deploy-config-writer'
import { join } from 'path';
import type { AbapDeployConfig } from '@sap-ux/ui5-config';

const exampleWriter = async () => {

  const abapDeployConfig: AbapDeployConfig[] = [
        {
            target: { url: 'https://example.com', client: '000', scp: false },
            app: { name: 'testapp', package: 'TESTPKG12', description: 'Deployment description', transport: 'TR123' }
        }
    ];

  const projectDir = join(__dirname, 'testapp');
  const fs = await generate(projectDir, abapDeployConfig);
  return new Promise((resolve) => {
      fs.commit(resolve); // When using with Yeoman it handle the fs commit.
  });
}

// Calling the function
await exampleWriter();

Keywords

SAP Reuse Library

0.0.52

8 months ago

0.0.51

8 months ago

0.0.50

8 months ago

0.0.48

8 months ago

0.0.49

8 months ago

0.0.45

8 months ago

0.0.46

8 months ago

0.0.47

8 months ago

0.0.43

9 months ago

0.0.44

9 months ago

0.0.41

9 months ago

0.0.42

9 months ago

0.0.40

9 months ago

0.0.38

10 months ago

0.0.39

10 months ago

0.0.37

10 months ago

0.0.36

10 months ago

0.0.35

10 months ago

0.0.34

10 months ago

0.0.33

10 months ago

0.0.32

10 months ago

0.0.30

10 months ago

0.0.29

10 months ago

0.0.28

10 months ago

0.0.27

10 months ago

0.0.26

11 months ago

0.0.24

11 months ago

0.0.23

11 months ago

0.0.21

11 months ago

0.0.20

11 months ago

0.0.19

11 months ago

0.0.18

11 months ago

0.0.17

11 months ago

0.0.16

11 months ago

0.0.15

11 months ago

0.0.13

11 months ago

0.0.12

11 months ago

0.0.11

11 months ago

0.0.10

11 months ago

0.0.8

12 months ago

0.0.7

12 months ago

0.0.6

12 months ago

0.0.5

12 months ago

0.0.4

12 months ago

0.0.3

12 months ago

0.0.2

12 months ago

0.0.1

12 months ago