From cb94d8d97889cbd0154352a9e55be1ca0199dd32 Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Fri, 3 Jan 2020 14:31:25 -0500 Subject: [PATCH] chore(scripts): comment out tests for release, remove core update --- .scripts/common.js | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/.scripts/common.js b/.scripts/common.js index b8eff52c36..be2a21604d 100644 --- a/.scripts/common.js +++ b/.scripts/common.js @@ -158,17 +158,11 @@ function preparePackage(tasks, package, version, install) { title: `${pkg.name}: lint`, task: () => execa('npm', ['run', 'lint'], { cwd: projectRoot }) }); - projectTasks.push({ - title: `${pkg.name}: test`, - task: async () => await execa('npm', ['test'], { cwd: projectRoot }) - }); - projectTasks.push({ - title: `${pkg.name}: update ionic/core dep to ${version}`, - task: () => { - updateDependency(pkg, '@ionic/core', version); - writePkg(package, pkg); - } - }); + // TODO will not work due to https://github.com/ionic-team/ionic/issues/20136 + // projectTasks.push({ + // title: `${pkg.name}: test`, + // task: async () => await execa('npm', ['test'], { cwd: projectRoot }) + // }); } // Build