@dxatscale/sfpowerscripts.core
Advanced tools
Comparing version 0.0.10 to 0.0.11
@@ -1,1 +0,1 @@ | ||
export declare function delay(ms: number): Promise<unknown>; | ||
export declare function delay(ms: number): Promise<{}>; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -1,1 +0,1 @@ | ||
export declare function extract(path: string, location: string): Promise<unknown>; | ||
export declare function extract(path: string, location: string): Promise<{}>; |
@@ -0,0 +0,0 @@ "use strict"; |
export { delay } from './Delay'; | ||
export { onExit } from './OnExit'; | ||
export { extract } from './Extract'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -1,3 +0,2 @@ | ||
/// <reference types="node" /> | ||
import { ChildProcess } from "child_process"; | ||
export declare function onExit(childProcess: ChildProcess): Promise<{}>; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -13,14 +13,14 @@ { | ||
"homepage": "https://github.com/azlamsalam/sfpowerscripts#readme", | ||
"version": "0.0.10", | ||
"version": "0.0.11", | ||
"scripts": { | ||
"build": "node buildpackage.js", | ||
"build": "npm install && node buildpackage.js", | ||
"package": "npm run build && cd dist && npm publish" | ||
}, | ||
"dependencies": { | ||
"shelljs": "^0.8.3", | ||
"unzip-stream": "0.3.0", | ||
"fs-extra": "^8.1.0", | ||
"rimraf": "^3.0.2" | ||
"rimraf": "^3.0.2", | ||
"unzip-stream": "0.3.0" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^13.11.0", | ||
"glob": "~7.1.2", | ||
@@ -27,0 +27,0 @@ "node": "^11.0.0", |
@@ -0,0 +0,0 @@ export default class AnalyzeWithPMDImpl { |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ export default class CreateDeltaPackageImpl { |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ export default class CreateScratchOrgImpl { |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ export default class CreateUnlockedPackageImpl { |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ export default class DeleteScratchOrgImpl { |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ export default class DeployDestructiveManifestToOrgImpl { |
@@ -12,3 +12,2 @@ "use strict"; | ||
const child_process = require("child_process"); | ||
const tl = require("azure-pipelines-task-lib/task"); | ||
const OnExit_1 = require("../OnExit"); | ||
@@ -38,4 +37,2 @@ class DeployDestructiveManifestToOrgImpl { | ||
let command = `npx sfdx sfpowerkit:org:destruct -u ${this.target_org} -m ${this.destructiveManifestPath}`; | ||
tl.debug("Generated Command"); | ||
tl.debug(command); | ||
return command; | ||
@@ -42,0 +39,0 @@ }); |
@@ -1,1 +0,1 @@ | ||
"use strict";var __awaiter=this&&this.__awaiter||function(t,e,i,r){return new(i||(i=Promise))(function(n,o){function s(t){try{c(r.next(t))}catch(t){o(t)}}function a(t){try{c(r.throw(t))}catch(t){o(t)}}function c(t){t.done?n(t.value):new i(function(e){e(t.value)}).then(s,a)}c((r=r.apply(t,e||[])).next())})};Object.defineProperty(exports,"__esModule",{value:!0});const child_process=require("child_process"),tl=require("azure-pipelines-task-lib/task"),OnExit_1=require("../OnExit");class DeployDestructiveManifestToOrgImpl{constructor(t,e){this.target_org=t,this.destructiveManifestPath=e}exec(t){return __awaiter(this,void 0,void 0,function*(){let e=child_process.exec(t,{encoding:"utf8"},(t,e,i)=>{if(t)throw t});e.stdout.on("data",t=>{console.log(t.toString())}),e.stderr.on("data",t=>{console.log(t.toString())}),yield OnExit_1.onExit(e)})}buildExecCommand(){return __awaiter(this,void 0,void 0,function*(){let t=`npx sfdx sfpowerkit:org:destruct -u ${this.target_org} -m ${this.destructiveManifestPath}`;return tl.debug("Generated Command"),tl.debug(t),t})}}exports.default=DeployDestructiveManifestToOrgImpl; | ||
"use strict";var __awaiter=this&&this.__awaiter||function(t,e,i,r){return new(i||(i=Promise))(function(o,n){function s(t){try{a(r.next(t))}catch(t){n(t)}}function c(t){try{a(r.throw(t))}catch(t){n(t)}}function a(t){t.done?o(t.value):new i(function(e){e(t.value)}).then(s,c)}a((r=r.apply(t,e||[])).next())})};Object.defineProperty(exports,"__esModule",{value:!0});const child_process=require("child_process"),OnExit_1=require("../OnExit");class DeployDestructiveManifestToOrgImpl{constructor(t,e){this.target_org=t,this.destructiveManifestPath=e}exec(t){return __awaiter(this,void 0,void 0,function*(){let e=child_process.exec(t,{encoding:"utf8"},(t,e,i)=>{if(t)throw t});e.stdout.on("data",t=>{console.log(t.toString())}),e.stderr.on("data",t=>{console.log(t.toString())}),yield OnExit_1.onExit(e)})}buildExecCommand(){return __awaiter(this,void 0,void 0,function*(){return`npx sfdx sfpowerkit:org:destruct -u ${this.target_org} -m ${this.destructiveManifestPath}`})}}exports.default=DeployDestructiveManifestToOrgImpl; |
@@ -0,0 +0,0 @@ export default interface DeploySourceResult { |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=DeploySourceResult.js.map |
@@ -0,0 +0,0 @@ import DeploySourceResult from "./DeploySourceResult"; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ export default class ExportSourceFromAnOrgImpl { |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ export default class IncrementProjectBuildNumberImpl { |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ export * from "./AnalyzeWithPMDImpl"; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ export default class InstallUnlockedPackageImpl { |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ export default class PromoteUnlockedPackageImpl { |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ export default class TriggerApexTestImpl { |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ export default class ValidateApexCoverageImpl { |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ export default class ValidateDXUnlockedPackageImpl { |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ export default class ValidateTestCoveragePackageImpl { |
@@ -0,0 +0,0 @@ "use strict"; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3
121783
7
1294
29
- Removedshelljs@^0.8.3
- Removedfunction-bind@1.1.2(transitive)
- Removedhasown@2.0.2(transitive)
- Removedinterpret@1.4.0(transitive)
- Removedis-core-module@2.16.1(transitive)
- Removedpath-parse@1.0.7(transitive)
- Removedrechoir@0.6.2(transitive)
- Removedresolve@1.22.10(transitive)
- Removedshelljs@0.8.5(transitive)
- Removedsupports-preserve-symlinks-flag@1.0.0(transitive)