Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
conventional-changelog-preset-loader
Advanced tools
Configuration preset loader for `conventional-changelog`.
Configuration preset loader for conventional-changelog
.
# pnpm
pnpm add conventional-changelog-preset-loader
# yarn
yarn add conventional-changelog-preset-loader
# npm
npm i conventional-changelog-preset-loader
Import loadPreset
function from the package and use it to load the preset:
import { loadPreset } from 'conventional-changelog-preset-loader'
loadPreset('angular').then((config) => {
// do something with config object
})
By default it uses import
to load preset. If you want to use require
instead, you can create own loader with createPresetLoader
function:
import { createRequire } from 'node:module'
import { createPresetLoader } from 'conventional-changelog-preset-loader'
const require = createRequire(import.meta.url)
const loadPreset = createPresetLoader(require)
Firstly, loader will try prepend conventional-changelog
to the preset name and load it.
For example:
angular
=> conventional-changelog-angular
angular/preset/path
=> conventional-changelog-angular/preset/path
@scope/angular
=> @scope/conventional-changelog-angular
@scope/angular/preset/path
=> @scope/conventional-changelog-angular/preset/path
If it fails, it will try to load preset using name as is.
Preset package should have default export which is a async (returns Promise
) or sync function that accepts optional options
object and returns the config object:
export default function createPreset(options) {
return {
// config
}
}
To pass options to the preset, loadPreset
function accepts object with name
property as first argument:
import { loadPreset } from 'conventional-changelog-preset-loader'
loadPreset({
name: 'angular',
...presetOptions
}).then((config) => {
// do something with config object
})
MIT © Steve Mao
FAQs
Configuration preset loader for `conventional-changelog`.
The npm package conventional-changelog-preset-loader receives a total of 2,185,278 weekly downloads. As such, conventional-changelog-preset-loader popularity was classified as popular.
We found that conventional-changelog-preset-loader demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.