UNPKG

sf-package-combiner

Version:

Merge multiple Salesforce package.xml manifests into a single file for Salesforce CLI deployments.

244 lines (243 loc) 5.59 kB
{ "name": "sf-package-combiner", "description": "Merge multiple Salesforce package.xml manifests into a single file for Salesforce CLI deployments.", "version": "2.12.0", "dependencies": { "@oclif/core": "4.11.11", "@salesforce/core": "8.31.4", "@salesforce/sf-plugins-core": "12.2.25", "@salesforce/source-deploy-retrieve": "12.37.0", "fast-xml-builder": "1.2.0" }, "devDependencies": { "@biomejs/biome": "2.5.1", "@commitlint/cli": "20.5.0", "@commitlint/config-conventional": "20.5.0", "@salesforce/cli-plugins-testkit": "5.3.62", "@salesforce/dev-config": "4.3.3", "@stryker-mutator/core": "9.6.1", "@stryker-mutator/vitest-runner": "9.6.1", "@types/node": "25.9.4", "@vitest/coverage-v8": "4.1.9", "husky": "9.1.7", "knip": "6.23.0", "lint-staged": "17.0.8", "oclif": "4.23.24", "shx": "0.4.0", "ts-node": "10.9.2", "typescript": "6.0.3", "vitest": "4.1.9", "wireit": "0.14.13" }, "engines": { "node": ">=22.0.0" }, "files": [ "/lib", "/messages", "/oclif.manifest.json", "/oclif.lock", "/CHANGELOG.md" ], "keywords": [ "salesforce", "salesforcedx", "sf", "sf-plugin", "package.xml", "manifest", "combiner", "combine", "merge", "xml", "sfpc", "deployment" ], "license": "MIT", "oclif": { "commands": "./lib/commands", "bin": "sf", "topicSeparator": " ", "devPlugins": [ "@oclif/plugin-help" ], "topics": { "sfpc": { "description": "Merge multiple Salesforce manifest files into a single package.xml" } }, "flexibleTaxonomy": true }, "scripts": { "build": "wireit", "clean": "wireit", "clean:build": "wireit", "clean:package-manager": "wireit", "compile": "wireit", "format": "wireit", "lint": "wireit", "lint:dependencies": "wireit", "postpack": "shx rm -f oclif.manifest.json oclif.lock", "prepack": "wireit", "prepare": "husky", "test": "wireit", "test:mutation": "stryker run", "test:mutation:incremental": "node scripts/incremental-mutation.mjs", "test:nuts": "wireit", "test:only": "wireit" }, "publishConfig": { "access": "public" }, "wireit": { "build": { "dependencies": [ "compile", "lint" ] }, "clean": { "command": "shx rm -rf 'reports/*' oclif.manifest.json oclif.lock package.tgz 'sf-package-combiner-*.tgz' 'stderr*.txt' 'stdout*.txt' '.stryker-tmp/*'", "files": [ ".stryker-tmp/*", "lib", "oclif.manifest.json", "oclif.lock", "package.tgz", "reports/*", "sf-package-combiner-v*.tgz", "stderr*.txt", "stdout*.txt" ], "dependencies": [ "clean:build" ] }, "clean:build": { "command": "shx rm -rf lib .wireit", "files": [ ".wireit/*", "lib/*" ] }, "clean:package-manager": { "command": "shx rm -rf node_modules tsconfig.tsbuildinfo", "files": [ "node_modules/*" ] }, "compile": { "command": "tsc -p . --pretty --incremental", "files": [ "src/**/*.ts", "**/tsconfig.json", "messages/**" ], "output": [ "lib/**", "*.tsbuildinfo" ], "clean": "if-file-deleted" }, "format": { "command": "biome format --write src test", "files": [ "src/**/*.ts", "test/**/*.ts", "biome.json" ], "output": [] }, "lint": { "command": "biome check src test", "files": [ "src/**/*.ts", "test/**/*.ts", "messages/**", "biome.json", "**/tsconfig.json" ], "output": [] }, "lint:dependencies": { "command": "knip", "files": [ "src/**/*.ts", "test/**/*.ts", "knip.config.ts", "package.json" ], "output": [], "dependencies": [ "lint" ] }, "test:compile": { "command": "tsc -p \"./test\" --pretty", "files": [ "test/**/*.ts", "**/tsconfig.json" ], "output": [] }, "test": { "dependencies": [ "test:compile", "test:only", "lint" ] }, "test:nuts": { "command": "vitest run --config ./vitest.nut.config.ts && shx rm -f oclif.manifest.json oclif.lock *.tsbuildinfo", "files": [ "test/**/*.nut.ts", "**/tsconfig.json", "vitest.nut.config.ts" ], "output": [], "dependencies": [ "build", "prepack" ] }, "test:only": { "command": "vitest run --coverage", "env": { "FORCE_COLOR": "2" }, "files": [ "test/**/*.ts", "src/**/*.ts", "**/tsconfig.json", "vitest.config.ts", "!*.nut.ts" ], "output": [] }, "prepack": { "command": "oclif manifest && oclif readme", "files": [ "src/commands/sfpc/combine.ts", "messages/sfpc.combine.md", "README.md" ], "dependencies": [ "build" ], "output": [ "README.md" ], "clean": false } }, "exports": "./lib/index.js", "type": "module", "author": "Matt Carvin", "repository": { "type": "git", "url": "git+https://github.com/mcarvin8/sf-package-combiner.git" }, "bugs": { "url": "https://github.com/mcarvin8/sf-package-combiner/issues" } }