Skip to content
#

build-tool

Here are 1,164 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 5, 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
timkelty
timkelty commented Mar 13, 2018

It seems common that people want to add a module resolving path to their source path.

The easiest way to do this is:

neutrino.config.resolve.modules.add(neutrino.options.source)

Or if an alias is preferred:

neutrino.config.resolve.alias.set('@
marco-m
marco-m commented Jun 5, 2020

Both these Taskfiles cause task to panic:

version: '2'

tasks:
  foo:

and (so default is not a special case)

version: '2'

tasks:
  default:

Panic is:

$ task
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x8 pc=0x12cf3e1]

goroutine 1 [running]:
github.com/go-task/ta
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
style-dictionary
custa1200
custa1200 commented Oct 7, 2019

One of the consumers of our system uses curly braces for content replacement in strings.

Due to the way that SD currently uses curly braces in the build process there is no way I can have a string that includes the braces for consumption.

I have tried a number of ways to escape the braces with no luck

Other languages and templating systems seem to use the concept of using double curly b

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.