cuba-platform / cuba-gradle-plugin

Gradle plugin for building CUBA platform and applications
https://www.cuba-platform.com
Apache License 2.0
15 stars 18 forks source link

Do not download Node.js by default #110

Closed web-devel closed 5 years ago

web-devel commented 5 years ago

Description

The default node configuration (applied to front module) will not include download=true. Thus system node/npm will be used. This will speed up generators and main dependencies installation, but require Node.js to be installed on the system.

Old behavior can be configured in build.gradle explicitly

configure(frontModule) {
  node {
    download = true
  }