Trending

#buildtools

Latest posts tagged with #buildtools on Bluesky

Latest Top
Trending

Posts tagged #buildtools

The module bundler that conquered the web. Webpack transforms your scattered JS, CSS, images, and assets into optimized bundles that browsers actually want to load.

🔗 https://github.com/webpack/webpack

#JavaScript #WebDev #BuildTools

0 0 0 0
NPM json setup.

```json
{
    "name": "hugo-rladies-theme-js",
    "private": true,
    "version": "0.1.0",
    "scripts": {
        "clean": "rm -rf assets/js/vendor assets/scss/vendor",
        "setup": "mkdir -p assets/js/vendor assets/scss/vendor",
        "build": "npm run clean && npm run setup && npm run sync:bootstrap && npm run sync:jquery",
        "sync:bootstrap": "cp node_modules/bootstrap/dist/js/bootstrap.bundle.min.js* assets/js/vendor/ 2>/dev/null || true && cp -r node_modules/bootstrap/scss assets/scss/vendor/bootstrap",
        "sync:jquery": "cp node_modules/jquery/dist/jquery.min.js* assets/js/vendor/ 2>/dev/null || true",
        "update": "npm update && npm run build",
        "postinstall": "npm run build"
    },
    "dependencies": {
        "bootstrap": "^5.3.8",
        "jquery": "^3.7.0"
    }
}
```

NPM json setup. ```json { "name": "hugo-rladies-theme-js", "private": true, "version": "0.1.0", "scripts": { "clean": "rm -rf assets/js/vendor assets/scss/vendor", "setup": "mkdir -p assets/js/vendor assets/scss/vendor", "build": "npm run clean && npm run setup && npm run sync:bootstrap && npm run sync:jquery", "sync:bootstrap": "cp node_modules/bootstrap/dist/js/bootstrap.bundle.min.js* assets/js/vendor/ 2>/dev/null || true && cp -r node_modules/bootstrap/scss assets/scss/vendor/bootstrap", "sync:jquery": "cp node_modules/jquery/dist/jquery.min.js* assets/js/vendor/ 2>/dev/null || true", "update": "npm update && npm run build", "postinstall": "npm run build" }, "dependencies": { "bootstrap": "^5.3.8", "jquery": "^3.7.0" } } ```

Managing a Hugo site gets complex fast - builds, dev servers, and getting dependencies where Hugo expects them. Here's how npm scripts solved our R-Ladies website workflow 🧵

#Hugo #NPM #WebDev #BuildTools #OpenSource #Automation

3 1 1 0

Watching a mixed-language app compile down into a single native binary will never get old.

#polyglot #nativecode #buildtools #backend #engineering

0 0 0 0
Post image

TIL: Cargo lets you use "host-tuple" as a target 👀

No need to remember your full target triple anymore! 🦀

#rustlang #cargo #rustdev #buildtools #cli

30 3 2 0
Post image

/5

Free webinar Jan 8 - architecture, migration examples, real customization scenarios. Patterns that work and why certain approaches fail.

Practical knowledge you can apply immediately. No theory lectures.

🎟️ vtns.io/spfx122-bsky

#SPFx #SharePointFramework #BuildTools

0 0 0 0
Copado Extension Builder Exam | Start Your Preparation Now
Copado Extension Builder Exam | Start Your Preparation Now YouTube video by VMExam

Extend Copado with confidence.
Check out how the Copado Extension Builder elevates customization and automation → youtu.be/K4x3ilolMJw

#Copado #ExtensionBuilder #CopadoExtensionBuilder #CopadoCertification #ReleaseManagement #BuildTools

0 0 0 0
Post image

SPFx v1.22's new Heft build system is powerful but has a learning curve.

Free webinar this Thursday walks through the architecture, migration strategies, & customization patterns.

Interactive Q&A included!!

🎟️ Register now vtns.io/spfx122-bsky

#SharePoint #BuildTools #SharePointFramework #SPFx

0 1 0 0
Preview
Release 2.3.4 · google/ksp What's Changed KSP ignores sources in Kotlin directory #2730 Avoid recording Java symbol lookups in non-incremental builds #2728 Clean up ThreadLocals when processing is done #2709 Contributors ...

🚀 KSP 2.3.4 is out!

✅ Ignores sources in Kotlin directory
⚡ Skips Java symbol lookups in non-incremental builds
🧹 Cleans up ThreadLocals after processing

🔗 github.com/google/ksp/r...

#Kotlin #KSP #AndroidDev #BuildTools

1 0 0 0
Preview
Release First test version of Forge. · Treechcer/FORGE This is the first release of Forge. This is a test/beta release (and version) and isn’t fully complete yet. If you encounter any bugs, glitches or unexpected behavior please open an Issue or submit...

🚀 First release of my small C++ project compiler and builder.

If you want to test it you can test it here: github.com/Treechcer/FO...

If you do please send me feedback! Thanks.

#CPlusPlus #Cpp #Programming #DeveloperTools #OpenSource #Coding #SoftwareDevelopment #GitHub #BuildTools #Compiler

6 0 1 0
Post image

🏗️🚧🚚**M5 Milestone: **
Script system refactored into modular libraries. Dupes gone, output standardized, pipeline maintainable. Event System Phase 3/9 incoming 🚀

#gamedev #indiedev #systemsarchitecture #buildtools #workflowautomation #solodev #gameengine #voidengine #devlog

11 5 1 0
Video

Missed our vJUG session with Haoyi Li? Watch it on demand! 🎥

Topic: Simpler Java Build Tooling with OOP 👉 youtube.com/live/V03wKwcegxg

Learn why build tools are tricky & how OOP can make them faster, safer, and easier.

#Java #vJUG #BuildTools

6 5 0 0
Preview
Understanding Maven Artifact Coordinates Apache Maven is one of the most widely used build automation tools in the Java ecosystem. At the heart of Maven’s dependency management…

My latest article is on artifact coordinates — the convention that makes every dependency unique, keeps builds reproducible and allows Maven to resolve artifacts.

#maven
#java
#apache
#cicd
#build
#buildtools
#devops
#devlearning
#softwaredevelopment
#softwaretesting

medium.com/maven-by-nat...

2 1 0 0

New HN discussion on dhooper's real-time C/C++/Rust build visualizer! This tool offers deep insights into build processes, helping developers pinpoint bottlenecks & inefficiencies in complex projects. A game-changer for optimizing dev workflows. #BuildTools 1/6

0 0 1 0
Post image

🚨 vJUG is back with another 🔥 session!

Join us Aug 26 for Simpler Java Build Tooling with OOP by the brilliant Haoyi Li.

Learn how object-oriented design can simplify Java builds & see the new Mill tool in action!
👉 bit.ly/3UdXIyZ

#Java #vJUG #BuildTools

2 2 0 0
Preview
Introduction to Maven POM Files Apache Maven is one of the most widely used build automation tools for Java projects. At the core of every Maven project is the Project…

In my latest article, we explore what the POM file actually is, why it matters and how it enables portable, reliable builds across environments.

#maven
#java
#apache
#cicd
#build
#buildtools
#devops
#buildtools
#devlearning
#softwaredevelopment
#softwaretesting

medium.com/maven-by-nat...

3 1 0 0
Preview
Maven By Nature A publication for Apache Maven related topics

For anyone interested, I've started a Medium publication on Apache Maven, where I'll be covering a broad range of topics.

Let me know if there are topics you'd like to see.

#apache
#build
#buildtools
#cicd
#devops
#java
#maven
#softwaredevelopment
#softwaretesting

medium.com/maven-by-nat...

1 1 0 0
Preview
How To Set Up SAST Scanning Using Checkmarx One, GitHub Actions and GitHub Advanced Security Checkmarx One is a cloud-native security platform that offers a variety of testing capabilities to help organizations find and fix…

My latest article illustrates How To Set Up SAST Scanning Using Checkmarx One, GitHub Actions and GitHub Advanced Security.

#checkmarx
#buildengineering
#buildtools
#cicd
#devops
#devsecops
#devlearning
#github
#ghas
#infosec
#appsec
#softwaredevelopment
#softwaretesting

medium.com/devops-by-na...

2 0 0 0
Preview
How To Install Maven Apache Maven is one of the most popular build automation tools used in the Java world. In this guide, you will find step-by-step…

I put together a brief guide on how to install Apache Maven (on Linux, MacOS and Windows).

I hope you find it useful! :)

#maven
#java
#apache
#cicd
#buildtools
#devops
#buildtools
#devlearning
#softwaredevelopment
#softwaretesting

medium.com/maven-by-nat...

1 1 0 0
Preview
Introduction to Maven: The Build Tool That Modernized Java Development Back in the days when Java was more or less still in its infancy, there were very few tools to build your code with. The options were to…

With Maven 4.0.0 just around the corner, I thought I'd write a quick introduction to Apache Maven for any newcomers interested in getting acquainted with the tool, its history and philosophies.

bit.ly/4fr0hrj

#maven
#java
#apache
#cicd
#buildtools
#devops
#softwaredevelopment
#softwaretesting

7 3 0 1
Preview
Build tools officially released! Earlier, we've detailed the build system and how it's going to be used in all our projects prior to the official release. This was one of our efforts to make sure that we deliver quality projects. Now, we've finished the core of the system and released it as version v1.0 that you can find below. View the v1.0 tag As for the Makefiles, we haven't introduced the unified Makefile script, but we will provide it in the official documentation for projects to have their root-level Makefile.

We've released the script-based build tools!

#Script #TechNews #TechUpdates #programming #BuildTools

2 0 0 0
Preview
GitHub - dailker/everyutil-c Contribute to dailker/everyutil-c development by creating an account on GitHub.

👋 Just released a cross-platform C utility library called everyutil-c — simple APIs, high-performance helpers, and robust build support (Makefile, Autotools, CMake).

⚙️ github.com/dailker/everyutil-c

#opensource #clibrary #cdev #buildtools

2 1 0 0

Overall: The discussion highlighted a tension. XSLT *could* simplify specific tasks (like static site generation) but faces significant challenges due to its perceived complexity and historical negative experiences for many developers. #BuildTools 6/6

0 0 0 0

Built My Dream App Without Coding.

Tried every app, nothing worked so I made my own relighting tool using Lovable.

Gave clear instructions, got real results. It’s simple, powerful, and mine.

#nocode #relight #photoapp #buildtools #uxdesign #lovabledev #madeeasy

youtube.com/shorts/_5PYk...

1 0 0 0
Preview
Weekly Wrap-up: June 13, 2025 Updates to our tooling have been the focus of our work this week. We will be entering beta testing for Xcode 16.4 and macOS 15.5, but we’ve also begun internal testing of the new macOS Tahoe 26 and Xc...

🗞️ This week in VoltBuilder News

We're gearing up to announce beta testing for macOS 15.5 and Xcode 16.4, and we've begun internal testing for the recently announced macOS Tahoe 26 and Xcode 26!

#Xcode #macOS #WWDC25 #iOSDev #BuildTools

1 1 0 0
Preview
Easy Cross-Platform cgo Builds | Proxymock When I first started writing Go software a little over a decade ago, one of the features I found particularly intriguing was the ability to build statically-linked binaries for multiple operating syst...

Cross-platform cgo builds giving you nightmares? That multi-arch headache doesn't have to be a thing anymore. There's a way to make it genuinely easy and low-overhead. No more nonsense! #speedscale #GoLang #cgo #BuildTools #DevTips #Go bit.ly/3FCvE4H

1 0 0 0

The discussion highlights the pain points with C++ build tools but acknowledges CMake's role in managing dependencies and cross-platform builds, which is crucial for game projects. #BuildTools 3/6

0 0 1 0
Preview
Announcing Rolldown-Vite We are building the next generation of JavaScript tooling

Vite got a Rust powered upgrade. Rolldown-Vite is currently in technical preview, but offers 3–16× faster builds and up to 100× lower memory usage. You can get more details here: voidzero.dev/posts/announ...

#Vite #Rolldown #RustLang #WebDev #BuildTools

1 0 0 0
Post image

Kaya Weers is live at JNation 2025 with: “On an adventure into the depths of Maven”.
A talk for devs who want to understand their builds instead of just editing XML.
#JNation #Java #Coimbra #Maven #BuildTools

10 1 0 0

Is XTool a true "Xcode replacement"? The discussion highlights it still relies on Xcode's SDK and toolchain. Many see it as a build system *leveraging* Apple's components, not fully replacing the need for them. #BuildTools 2/6

0 0 1 0
Preview
Feed the Daemon: Faster Builds with Maven Reactor Modules #SnailToRocket | Ben’s Build and B(r)ass Notes Accelerate Maven! Use Maven Reactor Modules to unlock parallel execution for dramatically faster builds & better software architecture. #SnailToRocket

🐌🚀 Speed up @maven.apache.org builds!

My new post shows how using Reactor Modules for #ParallelProcessing unlocks 👇

✅ Parallel Builds
✅ Dramatic Speedups
✅ Better Architecture

Read the guide:
blog.bmarwell.de/2025/04/24/f...

#Maven #Java #BuildTools #SpeedUp #SnailToRocket #Performance

12 6 0 0