Skip to content
#

build-tool

Here are 1,115 public repositories matching this topic...

A bundler for javascript and friends. Packs many modules into a few bundled assets. Code Splitting allows for loading parts of the application on demand. Through "loaders", modules can be CommonJs, AMD, ES6 modules, CSS, Images, JSON, Coffeescript, LESS, ... and your custom stuff.

  • Updated Oct 14, 2020
  • JavaScript
eed3si9n
eed3si9n commented Jul 11, 2020

steps

Global / onChangedBuildSource := ReloadOnSourceChanges

problem

It's developer specific preference, and we can't put it in global either because of datatype.

expectation

If there's a system property for this, we can use that as a default.

$ sbt -Dsbt.build.onchange=reload
$ sbt -Dsbt.build.onchange=warn
$ sbt -Dsbt.build.onchange=ignore
zx8
zx8 commented Oct 2, 2020

Or a new flag should be introduced (e.g. task --names) to just output the names of available tasks, with no descriptions.

Currently, a Taskfile with no descriptions returns:

$ task -l
task: No tasks with description available

While the solution is fairly intuitive (i.e. add a description to every task), the behaviour is surprising. Not to mention it would make the completions

LiuVII
LiuVII commented Apr 3, 2019

We noticed that we have some common patterns for common conflicts/duplicate resolution in our monorepo across different binaries.
Like

  deploy_jar_rules=jar_rules(rules=[
    Duplicate('^BUILD', Duplicate.SKIP),
    Duplicate('^META-INF/ASL2.0', Duplicate.SKIP),
    Duplicate('^META-INF/INDEX.LIST', Duplicate.SKIP),
    Duplicate('^META-INF/io.netty.versions.properties', Duplicate.SKIP

Improve this page

Add a description, image, and links to the build-tool topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the build-tool topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.