UNPKG

@trieb.work/nextjs-turbo-redis-cache

Version:

The ultimate Redis caching solution for Next.js. Built for production-ready, large-scale projects, it delivers unparalleled performance and efficiency with features tailored for high-traffic applications.

32 lines (31 loc) 884 B
module.exports = { branches: [ { name: 'main' }, // Stable releases { name: 'beta', prerelease: true }, // Beta releases ], plugins: [ '@semantic-release/commit-analyzer', // Analyze commits to determine the release type '@semantic-release/release-notes-generator', // Generate release notes '@semantic-release/changelog', // Update changelog [ '@semantic-release/npm', { npmPublish: true, // Publish to NPM tag: 'beta', // Publish beta releases under the "beta" tag }, ], [ '@semantic-release/github', { assets: ['dist/*.tgz'], // Attach tarballs to GitHub releases }, ], [ '@semantic-release/git', { assets: ['package.json', 'package-lock.json', 'CHANGELOG.md'], message: 'chore(release): ${nextRelease.version} [skip ci]', }, ], ], };