Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

conventional-changelog-ember

Package Overview
Dependencies
Maintainers
4
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

conventional-changelog-ember

Ember preset for conventional-changelog.

  • 5.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.1M
increased by6.64%
Maintainers
4
Weekly downloads
 
Created

What is conventional-changelog-ember?

The conventional-changelog-ember npm package is a preset for the conventional-changelog tool, specifically tailored for Ember.js projects. It helps in generating changelogs based on conventional commit messages, ensuring that the changelog format adheres to Ember.js community standards.

What are conventional-changelog-ember's main functionalities?

Generate Changelog

This feature allows you to generate a changelog for your Ember.js project. The code sample demonstrates how to use the conventional-changelog library with the 'ember' preset to output the changelog to the console.

const conventionalChangelog = require('conventional-changelog');

conventionalChangelog({
  preset: 'ember'
}).pipe(process.stdout);

Custom Configuration

This feature allows you to customize the changelog generation process. The code sample shows how to generate a changelog for only the most recent release by setting the releaseCount option.

const conventionalChangelog = require('conventional-changelog');

conventionalChangelog({
  preset: 'ember',
  releaseCount: 1
}).pipe(process.stdout);

Other packages similar to conventional-changelog-ember

Keywords

FAQs

Package last updated on 03 May 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc