Revert "[@0x/instant] Fix CI build broken by instant installation tests"

This commit is contained in:
Leonid Logvinov
2018-11-26 14:09:24 +01:00
committed by GitHub
parent 387d7199d1
commit ebc3116909
3 changed files with 2 additions and 11 deletions

View File

@@ -11,7 +11,7 @@
"build": "yarn build:all",
"build:all": "run-p build:umd:prod build:commonjs",
"build:umd:prod": "webpack --mode production",
"build:commonjs": "tsc -b && shx cp -r src/assets lib",
"build:commonjs": "tsc -b",
"build:ci": "yarn build",
"watch_without_deps": "tsc -w",
"dev": "webpack-dev-server --mode development",

View File

@@ -1,13 +1,4 @@
[
{
"version": "1.0.7",
"changes": [
{
"note": "Fix the lerna parameter name from cdVersions to cd-versions",
"pr": 1312
}
]
},
{
"version": "1.0.6",
"changes": [

View File

@@ -208,7 +208,7 @@ async function lernaPublishAsync(packageToNextVersion: { [name: string]: string
const packageVersionString = _.map(packageToNextVersion, (nextVersion: string, packageName: string) => {
return `${packageName}@${nextVersion}`;
}).join(',');
let lernaPublishCmd = `node ${constants.lernaExecutable} publish --cd-versions=${packageVersionString} --registry=${
let lernaPublishCmd = `node ${constants.lernaExecutable} publish --cdVersions=${packageVersionString} --registry=${
configs.NPM_REGISTRY_URL
} --yes`;
if (configs.IS_LOCAL_PUBLISH) {