Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@milesj/build-tools
Advanced tools
I got tired of duplicating dev tool configuration files over and over again between projects, so I built Beemo and subsequently this repository to house them. The following tools are pre-configured:
env
, react
, and typescript
presets.import
, jest
, react
, jsx-a11y
, typescript
, promise
, and unicorn
plugins.airbnb
configuration preset..eslintignore
..prettierignore
.yarn add @milesj/build-tools --dev
To compile Babel with its runtime, add the dependency per package.
yarn add @babel/runtime
Finally, add the following Beemo configuration to the root package.json
.
{
"beemo": {
"module": "@milesj/build-tools",
"drivers": ["babel", "eslint", "jest", "prettier", "typescript"]
}
}
To make use of the tools and to define default settings, we need to configure our package.json
. To
do this, run the following command in the project root.
yarn beemo run-script init
The following options are available:
--local
(bool) - Project should use local configuration files.--node
(bool) - Project targets Node.js and not the browser.--react
(bool) - Project uses React.--workspaces
(bool) - Project is a monorepo and uses Yarn workspaces.Some tools require dotfiles to be local to the project, which sucks. To get around this, we can easily scaffold them to each project, by running the following command in the project root.
yarn beemo scaffold project dotfiles
Some projects require Lerna to manage multiple packages within the same repository -- a monorepo. Lerna isn't available out of the box as the dependency is quite large, most projects don't need it, and it's just too complicated to get working correctly.
So to support Lerna, please follow these instructions per project.
yarn add lerna --dev
Run the init
script with the workspaces
flag.
yarn beemo run-script init --workspaces
And remaining setup, like converting old Yarn scripts, or moving files to package folders. That should be it.
FAQs
Shared build tools for easier development.
The npm package @milesj/build-tools receives a total of 974 weekly downloads. As such, @milesj/build-tools popularity was classified as not popular.
We found that @milesj/build-tools demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.