Missing property

This commit is contained in:
Empathic Qubit 2020-09-19 04:18:02 -04:00
parent ed9dceb8e8
commit 0d3899d745

View file

@ -168,10 +168,11 @@ export function publish(options: IPublishOptions = {}): Promise<any> {
const useYarn = options.useYarn; const useYarn = options.useYarn;
const ignoreFile = options.ignoreFile; const ignoreFile = options.ignoreFile;
const web = options.web; const web = options.web;
const usePackageManager = options.usePackageManager;
promise = versionBump(options.cwd, options.version, options.commitMessage) promise = versionBump(options.cwd, options.version, options.commitMessage)
.then(() => tmpName()) .then(() => tmpName())
.then(packagePath => pack({ packagePath, cwd, githubBranch, baseContentUrl, baseImagesUrl, useYarn, ignoreFile, web })); .then(packagePath => pack({ packagePath, cwd, githubBranch, baseContentUrl, baseImagesUrl, useYarn, ignoreFile, web, usePackageManager }));
} }
return promise.then(async ({ manifest, packagePath }) => { return promise.then(async ({ manifest, packagePath }) => {