Socket
Socket
Sign inDemoInstall

@changesets/config

Package Overview
Dependencies
Maintainers
3
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@changesets/config - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

8

CHANGELOG.md
# @changesets/config
## 2.0.1
### Patch Changes
- [#854](https://github.com/changesets/changesets/pull/854) [`2827c7a`](https://github.com/changesets/changesets/commit/2827c7ab33af30065fafe72ede1a2a6ac88d5276) Thanks [@Andarist](https://github.com/Andarist)! - Fixed the declared JSON schema type for the `changelog` config option.
* [#852](https://github.com/changesets/changesets/pull/852) [`7b1c0c1`](https://github.com/changesets/changesets/commit/7b1c0c1b73a19b50fe3a104acb440c604eab108f) Thanks [@caohuilin](https://github.com/caohuilin)! - Fixed the declared JSON schema type for the `commit` config option.
## 2.0.0

@@ -4,0 +12,0 @@

2

dist/config.cjs.dev.js

@@ -19,3 +19,3 @@ 'use strict';

name: "@changesets/config",
version: "2.0.0",
version: "2.0.1",
description: "Utilities for reading and parsing Changeset's config",

@@ -22,0 +22,0 @@ main: "dist/config.cjs.js",

@@ -17,3 +17,3 @@ "use strict";

name: "@changesets/config",
version: "2.0.0",
version: "2.0.1",
description: "Utilities for reading and parsing Changeset's config",

@@ -20,0 +20,0 @@ main: "dist/config.cjs.js",

@@ -10,3 +10,3 @@ import { readJSON } from 'fs-extra';

name: "@changesets/config",
version: "2.0.0",
version: "2.0.1",
description: "Utilities for reading and parsing Changeset's config",

@@ -13,0 +13,0 @@ main: "dist/config.cjs.js",

{
"name": "@changesets/config",
"version": "2.0.0",
"version": "2.0.1",
"description": "Utilities for reading and parsing Changeset's config",

@@ -5,0 +5,0 @@ "main": "dist/config.cjs.js",

@@ -16,3 +16,4 @@ {

],
"minItems": 2
"minItems": 1,
"maxItems": 2
},

@@ -54,3 +55,23 @@ {

"commit": {
"type": "boolean",
"anyOf": [
{
"type": "array",
"items": [
{
"type": "string",
"title": "Commit Generator Path"
},
{ "title": "Commit Generator Options" }
],
"minItems": 1,
"maxItems": 2
},
{
"type": "boolean"
},
{
"type": "string",
"title": "Commit Generator Path"
}
],
"description": "Determines whether Changesets should commit the results of the add and version command.",

@@ -57,0 +78,0 @@ "default": false

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