
Security News
AI Agent Lands PRs in Major OSS Projects, Targets Maintainers via Cold Outreach
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.
Opinionated build system generator based on CMake. It generates build files for Ninja using Clang as the compiler toolchain across all supported systems, ensuring a consistent and reliable compilation process. Beyond forcing the build system and compiler toolchain, everything is still plain CMake, making it easy to eject to the normal CMake flow as necessary.
npm i [-g] bare-make
Like CMake, builds happen in three steps: You first generate a build system, then run the build system, and finally install the built artefacts. To perform the steps programmatically from JavaScript, do:
const make = require('bare-make')
await make.generate()
await make.build()
await make.install()
The steps can also be performed interactively from the command line using the included CLI:
bare-make generate
bare-make build
bare-make install
To run tests for projects that use enable_testing() and add_test(), do:
await make.test()
Tests can also be run from the command line:
bare-make test
await generate([options])Options include:
options = {
source: '.',
build: 'build',
platform: os.platform(),
arch: os.arch(),
simulator: false,
environment: null,
cache: true,
sanitize,
debug,
withDebugSymbols,
withMinimalSize,
define,
cwd: path.resolve('.'),
color: false,
verbose: false,
stdio
}
await build([options])Options include:
options = {
build: 'build',
target,
clean: false,
parallel,
cwd: path.resolve('.'),
verbose: false,
stdio
}
await install([options])Options include:
options = {
build: 'build',
prefix: 'prebuilds',
component,
link: false,
strip: false,
parallel,
cwd: path.resolve('.'),
verbose: false,
stdio
}
await test([options])Options include:
options = {
build: 'build',
timeout: 30,
parallel,
cwd: path.resolve('.'),
verbose: false,
stdio
}
bare-make generate [flags]Flags include:
--source|-s <path>
--build|-b <path>
--platform|-p <name>
--arch|-a <name>
--simulator
--environment|-e <name>
--no-cache
--debug|-d
--with-debug-symbols
--with-minimal-size
--sanitize <name>
--define|-D <var>[:<type>]=<value>
--color
--verbose
--help|-h
bare-make build [flags]Flags include:
--build|-b <path>
--target|-t <name>
--clean|-c
--parallel|-j <number>
--verbose
--help|-h
bare-make install [flags]Flags include:
--build|-b <path>
--prefix|-p <path>
--component|-c <name>
--link|-l
--strip|-s
--parallel|-j <number>
--verbose
--help|-h
bare-make test [flags]Flags include:
--build|-b <path>
--timeout <seconds>
--parallel|-j <number>
--verbose
--help|-h
Apache-2.0
FAQs
Opinionated build system generator based on CMake
The npm package bare-make receives a total of 3,882 weekly downloads. As such, bare-make popularity was classified as popular.
We found that bare-make demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.

Research
/Security News
Chrome extension CL Suite by @CLMasters neutralizes 2FA for Facebook and Meta Business accounts while exfiltrating Business Manager contact and analytics data.

Security News
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.