
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
@superset-ui/build-config
Advanced tools
Version-controlled build config for easy re-use and sharing
Version-controlled build config for easy re-use and sharing 📝
npm install --save-dev @superset-ui/build-config
Before leveraging the build config provided you should remove any older dependencies or config files for the drivers you intend to use (e.g., remove eslint
and .eslintrc
). @superset-ui/build-config
will handle these dependencies, and it will auto-generate the config files for you.
This project is built with 🤖beemo, and therefore requires a
"beemo"
configuration block in your package.json
with a list of drivers you want to enable. You
can optionally configure drivers as shown below:
{
"beemo": {
"module": "@superset-ui/build-config",
"drivers": [
"babel",
{
"driver": "eslint",
"args": ["--color", "--report-unused-disable-directives"]
},
{
"driver": "jest",
"env": { "NODE_ENV": "test" }
},
"prettier"
]
}
}
Executing a driver will initialize 🤖 Beemo's pipeline, generate configuration files (e.g., it will
generate a .eslintrc
or prettier.config.js
, and execute the underlying driver binary and logging
to the console.
All arguments passed to Beemo are passed to the driver's underlying binary.
You may define these commands as scripts:
// package.json
{
"scripts": {
"babel": "beemo babel ./src --out-dir ./lib",
"eslint": "beemo eslint ./src ./tests",
"jest": "beemo jest",
"prettier": "beemo prettier --write \"./{src,tests}/**/*.{js,json,md}\""
}
}
Coming 🔜!
Because 🤖 Beemo
generates config files such as .eslintrc
, prettier.config.js
, etc., it's
useful to ignore these files. Running the following will add the appropriate .gitignore
files for
you:
beemo sync-dotfiles --filter=gitignore
FAQs
Version-controlled build config for easy re-use and sharing
The npm package @superset-ui/build-config receives a total of 8 weekly downloads. As such, @superset-ui/build-config popularity was classified as not popular.
We found that @superset-ui/build-config demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 12 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.