
Security News
Meet Socket at Black Hat Europe and BSides London 2025
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.
@tsed/monorepo-utils
Advanced tools
A tool to build and publish packages (Typescript or Javascript) on npm for projects based on mono repository (lerna).
Run:
npm install --save-dev @tsed/monorepo-utils
Add these tasks to your package.json:
{
"scripts": {
"test": "",
"version:patch": "monorepo version patch", // update version
"version:minor": "monorepo version minor",
"version:major": "monorepo version major",
"build": "monorepo build packages", // build packages
"test:e2e: "",
"publish": "monorepo publish packages" // publish on NPM
"docs:build": "vuepress build",
"docs:publish": "yarn docs:build && monorepo publish ghpages"
},
"monorepo": {
"ghpages": [{
"dir": "./docs/.vuepress/dist",
"url": "https://github.com/tsedio/tsed.git",
"branch": "gh-pages",
"cname": "tsed.io",
"if": "main"
}]
}
}
MonoRepoUtils is also compatible with semantic-release.
Install semantic-release and add repo.config.js file and add these lines:
module.exports = {
branch: 'main',
verifyConditions: ['@semantic-release/github', '@semantic-release/npm', '@tsed/monorepo-utils/semantic-release'],
analyzeCommits: ['@semantic-release/commit-analyzer'],
verifyRelease: [],
generateNotes: ['@semantic-release/release-notes-generator'],
prepare: ['@semantic-release/npm', '@tsed/monorepo-utils/semantic-release'],
publish: ['@tsed/monorepo-utils/semantic-release', '@semantic-release/github'],
success: ['@semantic-release/github', '@tsed/monorepo-utils/semantic-release'],
fail: ['@semantic-release/github'],
npmPublish: false
}
Add these tasks to your package.json:
{
"scripts": {
"build": "monorepo build", // Will be called automatically semantic-release
"release": "semantic-release"
}
}
FAQs
Mono repo utils
We found that @tsed/monorepo-utils demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.