This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

sfcc-deploy
TypeScript icon, indicating that this package has built-in type declarations

3.5.0 • Public • Published

NPM version Downloadsstar this repo fork this repo CI

sfcc-deploy

Deploy cartridges to a Salesforce Commerce Cloud (SFCC) instance.

Warning

DEPRECATED

The recommended way to deploy code to SFCC instances is direct via sfcc-ci.

Screenshot

Installation

$ yarn add sfcc-deploy --dev

General

Uploads a set of SFCC cartridges to an instance. Additionally you can extend it with additional tasks.

Usage

The credentials object is the same as the config for dwdav.

import sfccDeploy from 'sfcc-deploy'

const config = {
  hostname: 'host.name.net',
  username: 'login',
  password: 'password',
  p12: 'path/to/cert.p12', // two factor authentication
  passphrase: 'certpassphrase', // two factor authentication
}

const version = '0.5.1'

try {
  await sfccDeploy({
    credentials: config,
    version,

    root: './dist/', // default: './dist/'
  })
} catch (e) {
  console.error('error', e)
}

It's also possible to add additional tasks (executed after code upload).

const activateCodeVersion = {
  name: ({ options: { version } }) => `Activating code version: ${version}`, // also takes a simple string
  condition: 'activateCodeVersion', // the flag name needed to active the task
  emoji: 'fast_forward',
  fn: (params) => {
    // ...
  },
}

try {
  await sfccDeploy({
    credentials: config,
    version,

    activateCodeVersion: true, // this flag is needed to activate the additional step
    additionalSteps: [
      activateCodeVersion,
    ],
  })
} catch (e)  {
  console.error('error', e)
}

The emoji name must one of the available emojis from this list. Following information are passed as object to the name and fnfunctions:

Property Description
options The config object of the sfccDeploy() call
dwdav The dwdav instance used for upload
rootDir The root directory
step The current step (see https://www.npmjs.com/package/cli-step#a-single-step-%EF%B8%8F)
stepText The text of the step

License

MIT © 2023 Jens Simon

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Published

Version History

  • Version
    Downloads (Last 7 Days)
    • Published

Package Sidebar

Install

npm i sfcc-deploy

Weekly Downloads

40

Version

3.5.0

License

MIT

Unpacked Size

48.4 kB

Total Files

8

Last publish

Collaborators

  • jenssimon