Skip to content
#

build-tool

Here are 1,275 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 Apr 15, 2021
  • JavaScript
thekevinbrown
thekevinbrown commented Mar 3, 2021

Is your feature request related to a problem? Please describe.
Currently, when I run a vite build I get a bunch of these:

Use of eval is strongly discouraged, as it poses security risks and may cause issues with minification
Use of eval is strongly discouraged, as it poses security risks and may cause issues with minification
...etc...

I agree, but I don't know where `eval

marvinhagemeister
marvinhagemeister commented Oct 20, 2020

Just came across one of our client projects, which uses their own npm registry instead of the official one. By making it configurable via cli-flag like --registry https://my-registry.com we could support that use case.

I'm wondering if this is how we can make our npm plugin testable too! We could spin up a fake registry since we only ever download the tarball and use the --registry flag in

drewsilcock
drewsilcock commented Nov 30, 2020

I have a build task that takes in variables to decide which platform to build for.

I'm trying to find some way to tell Task that the job is up-to-date using the standard sources checksum plus also checking whether the platform variables have changed.

I can get one to work at a time, but not both as the status commands seem to take precedence over the sources meaning if you specify comman

cake
augustoproiete
augustoproiete commented Mar 16, 2021

The example in the documentation ( https://cakebuild.net/api/Cake.Common.Tools.GitVersion/GitVersionAliases/ ) uses GitVersion.CommandLine which is a Windows-only tool.

GitVersion.Tool is a cross-platform .NET tool that can be consumed via the dotnet scheme in Cake >= 1.1

#tool "dotnet:?package=GitVersion.Tool&version=5.6.6"
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

Eric-Arellano
Eric-Arellano commented Jan 20, 2020

We're moving in the direction of Pants no longer registering all of its plugins by default and instead requiring users to opt-in. For example, you must explicitly opt in to pants.backend.python.lint.isort in V2, whereas V1 has pants.backend.python activated by default.

However, there is no good way to discover the possible backends outside of looking at the source code for this project.

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