Missing property
This commit is contained in:
parent
ed9dceb8e8
commit
0d3899d745
1 changed files with 2 additions and 1 deletions
|
@ -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 }) => {
|
||||||
|
|
Loading…
Add table
Reference in a new issue