Skip to content

Commit bd3a367

Browse files
committed
don't ignor engines or silence
1 parent 116339d commit bd3a367

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

circle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ jobs:
235235
- run: ls $(yarn global bin)/../lib/node_modules
236236

237237
# try several times, because flaky NPM installs ...
238-
- run: yarn --ignore-engines || yarn --ignore-engines
238+
- run: yarn || yarn
239239
- run:
240240
name: Top level packages
241241
command: yarn list --depth=0 || true

scripts/binary/util/packages.coffee

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ forceNpmInstall = (packagePath, packageToInstall) ->
106106
console.log("Force installing %s", packageToInstall)
107107
console.log("in %s", packagePath)
108108
la(check.unemptyString(packageToInstall), "missing package to install")
109-
yarn(["install", "--force", "--ignore-engines", packageToInstall], packagePath)
109+
yarn(["install", "--force", packageToInstall], packagePath)
110110

111111
removeDevDependencies = (packageFolder) ->
112112
packagePath = pathToPackageJson(packageFolder)
@@ -141,7 +141,7 @@ npmInstallAll = (pathToPackages) ->
141141

142142
# force installing only PRODUCTION dependencies
143143
# https://docs.npmjs.com/cli/install
144-
npmInstall = _.partial(yarn, ["install", "--production", "--silent", "--ignore-engines"])
144+
npmInstall = _.partial(yarn, ["install", "--production"])
145145

146146
npmInstall(pkg, {NODE_ENV: "production"})
147147
.catch {code: "EMFILE"}, ->

0 commit comments

Comments
 (0)