@rushstack/node-core-library
Advanced tools
Comparing version 3.21.0 to 3.22.0
@@ -5,2 +5,14 @@ { | ||
{ | ||
"version": "3.22.0", | ||
"tag": "@rushstack/node-core-library_v3.22.0", | ||
"date": "Fri, 22 May 2020 15:08:42 GMT", | ||
"comments": { | ||
"minor": [ | ||
{ | ||
"comment": "Expose string parsing APIs from JsonFile." | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"version": "3.21.0", | ||
@@ -7,0 +19,0 @@ "tag": "@rushstack/node-core-library_v3.21.0", |
# Change Log - @rushstack/node-core-library | ||
This log was last generated on Thu, 21 May 2020 23:09:44 GMT and should not be manually modified. | ||
This log was last generated on Fri, 22 May 2020 15:08:42 GMT and should not be manually modified. | ||
## 3.22.0 | ||
Fri, 22 May 2020 15:08:42 GMT | ||
### Minor changes | ||
- Expose string parsing APIs from JsonFile. | ||
## 3.21.0 | ||
@@ -6,0 +13,0 @@ Thu, 21 May 2020 23:09:44 GMT |
@@ -67,2 +67,6 @@ import { JsonSchema, IJsonSchemaErrorInfo, IJsonSchemaValidateOptions } from './JsonSchema'; | ||
/** | ||
* Parses a JSON file's contents. | ||
*/ | ||
static parseString(jsonContents: string): JsonObject; | ||
/** | ||
* Loads a JSON file and validate its schema. | ||
@@ -69,0 +73,0 @@ */ |
@@ -60,2 +60,8 @@ "use strict"; | ||
/** | ||
* Parses a JSON file's contents. | ||
*/ | ||
static parseString(jsonContents) { | ||
return jju.parse(jsonContents); | ||
} | ||
/** | ||
* Loads a JSON file and validate its schema. | ||
@@ -62,0 +68,0 @@ */ |
{ | ||
"name": "@rushstack/node-core-library", | ||
"version": "3.21.0", | ||
"version": "3.22.0", | ||
"description": "Core libraries that every NodeJS toolchain project should use", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
677687
9288