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

@boll/core

Package Overview
Dependencies
Maintainers
3
Versions
1225
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@boll/core - npm Package Compare versions

Comparing version 1.2.1208 to 1.2.1209

15

CHANGELOG.json

@@ -5,2 +5,17 @@ {

{
"date": "Mon, 19 Oct 2020 23:05:01 GMT",
"tag": "@boll/core_v1.2.1209",
"version": "1.2.1209",
"comments": {
"patch": [
{
"comment": "Add rule for enforcing package.json rationale",
"author": "email not defined",
"commit": "a2e0e85fb66a7d95ce02b24caa9fce889b70008f",
"package": "@boll/core"
}
]
}
},
{
"date": "Fri, 25 Sep 2020 21:48:01 GMT",

@@ -7,0 +22,0 @@ "tag": "@boll/core_v1.2.1",

10

CHANGELOG.md
# Change Log - @boll/core
This log was last generated on Fri, 25 Sep 2020 21:48:01 GMT and should not be manually modified.
This log was last generated on Mon, 19 Oct 2020 23:05:01 GMT and should not be manually modified.
<!-- Start content -->
## 1.2.1209
Mon, 19 Oct 2020 23:05:01 GMT
### Patches
- Add rule for enforcing package.json rationale (email not defined)
## 1.2.1

@@ -8,0 +16,0 @@

@@ -19,4 +19,5 @@ import ts from "typescript";

get ignoredChecks(): string[];
get relativeFilename(): string;
shouldSkip(r: PackageRule): boolean;
}
export declare function getSourceFile(projectRoot: BollDirectory, filename: string, packageContext: Package): Promise<FileContext>;

@@ -98,2 +98,9 @@ "use strict";

});
Object.defineProperty(FileContext.prototype, "relativeFilename", {
get: function () {
return this.filename.slice(process.cwd().length + 1);
},
enumerable: false,
configurable: true
});
FileContext.prototype.shouldSkip = function (r) {

@@ -100,0 +107,0 @@ return this.ignoredChecks.includes(r.name);

6

package.json

@@ -30,3 +30,3 @@ {

"homepage": "https://github.com/microsoft/boll#readme",
"license": "unlicensed",
"license": "MIT",
"main": "dist/index.js",

@@ -44,6 +44,6 @@ "name": "@boll/core",

"clean": "rimraf ./dist",
"docs": "typedoc --mode file --out ./docs --theme markdown ./src",
"docs": "typedoc --mode file --out ./apidocs --theme markdown ./src",
"test": "node dist/tests/all.test.js"
},
"version": "1.2.1208"
"version": "1.2.1209"
}
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