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

@changesets/changelog-git

Package Overview
Dependencies
Maintainers
4
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@changesets/changelog-git - npm Package Compare versions

Comparing version 0.1.14 to 0.2.0

dist/changesets-changelog-git.cjs.d.mts

11

CHANGELOG.md
# @changesets/changelog-git
## 0.2.0
### Minor Changes
- [#1185](https://github.com/changesets/changesets/pull/1185) [`a971652`](https://github.com/changesets/changesets/commit/a971652ec1403aab3fb89eb2f1640bd5012b895a) Thanks [@Andarist](https://github.com/Andarist)! - `package.json#exports` have been added to limit what (and how) code might be imported from the package.
### Patch Changes
- Updated dependencies [[`a971652`](https://github.com/changesets/changesets/commit/a971652ec1403aab3fb89eb2f1640bd5012b895a)]:
- @changesets/types@6.0.0
## 0.1.14

@@ -4,0 +15,0 @@

0

dist/declarations/src/index.d.ts
import { ChangelogFunctions } from "@changesets/types";
declare const defaultChangelogFunctions: ChangelogFunctions;
export default defaultChangelogFunctions;

20

package.json
{
"name": "@changesets/changelog-git",
"version": "0.1.14",
"version": "0.2.0",
"description": "A changelog entry generator for git that writes hashes",
"main": "dist/changelog-git.cjs.js",
"module": "dist/changelog-git.esm.js",
"main": "dist/changesets-changelog-git.cjs.js",
"module": "dist/changesets-changelog-git.esm.js",
"exports": {
".": {
"types": {
"import": "./dist/changesets-changelog-git.cjs.mjs",
"default": "./dist/changesets-changelog-git.cjs.js"
},
"module": "./dist/changesets-changelog-git.esm.js",
"import": "./dist/changesets-changelog-git.cjs.mjs",
"default": "./dist/changesets-changelog-git.cjs.js"
},
"./package.json": "./package.json"
},
"license": "MIT",
"repository": "https://github.com/changesets/changesets/tree/main/packages/changelog-git",
"dependencies": {
"@changesets/types": "^5.2.1"
"@changesets/types": "^6.0.0"
}
}

@@ -17,3 +17,3 @@ import {

let returnVal = `- ${
changeset.commit ? `${changeset.commit}: ` : ""
changeset.commit ? `${changeset.commit.slice(0, 7)}: ` : ""
}${firstLine}`;

@@ -37,3 +37,3 @@

`- Updated dependencies${
changeset.commit ? ` [${changeset.commit}]` : ""
changeset.commit ? ` [${changeset.commit.slice(0, 7)}]` : ""
}`

@@ -40,0 +40,0 @@ );

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