UNPKG

@iosifnicolae2/nextjs-turbo-redis-cache

Version:

[![npm version](https://img.shields.io/npm/v/@trieb.work/nextjs-turbo-redis-cache.svg)](https://www.npmjs.com/package/@trieb.work/nextjs-turbo-redis-cache) ![Turbo redis cache image](https://github.com/user-attachments/assets/98e0dfd9-f38a-42ad-a355-98437

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]', }, ], ], };