UNPKG

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

Version:

Designed for speed, scalability, and optimized performance, nextjs-turbo-redis-cache is your custom cache handler for demanding production environments.

32 lines (31 loc) 832 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: false, // Publish to NPM tag: 'beta', // Publish beta releases under the "beta" tag }, ], [ '@semantic-release/github', { labels: [], }, ], [ '@semantic-release/git', { assets: ['package.json', 'pnpm-lock.yaml', 'CHANGELOG.md'], message: 'chore(release): ${nextRelease.version} [skip ci]', }, ], ], };