Skip to content

Commit

Permalink
chore(sarif): add changelog for sarif
Browse files Browse the repository at this point in the history
  • Loading branch information
kucherenko committed May 28, 2024
1 parent 3b997b0 commit 098f8df
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 8 deletions.
16 changes: 16 additions & 0 deletions apps/jscpd/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
## 4.0.0

## 4.0.4

### Patch Changes

- fix issue with packages
- Updated dependencies
- [email protected]

## 4.0.2

### Patch Changes

- add sarif reporter for jscpd
- Updated dependencies
- @jscpd/sarif-reporter@4.0.2

## 4.0.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions apps/jscpd/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jscpd",
"version": "4.0.1",
"version": "4.0.4",
"description": "detector of copy/paste in files",
"author": "Andrey Kucherenko <[email protected]>",
"homepage": "https://github.com/kucherenko/jscpd#readme",
Expand Down Expand Up @@ -36,7 +36,7 @@
"@jscpd/core": "workspace:*",
"@jscpd/finder": "workspace:*",
"@jscpd/html-reporter": "workspace:*",
"@jscpd/sarif-reporter": "workspace:*",
"jscpd-sarif-reporter": "workspace:*",
"@jscpd/tokenizer": "workspace:*",
"colors": "^1.4.0",
"commander": "^5.0.0",
Expand Down
2 changes: 1 addition & 1 deletion apps/jscpd/src/init/reporters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
import {IOptions} from '@jscpd/core';
import {grey, yellow} from 'colors/safe';
import HtmlReporter from "@jscpd/html-reporter";
import SarifReporter from "@jscpd/sarif-reporter";
import SarifReporter from "jscpd-sarif-reporter";

// eslint-disable-next-line @typescript-eslint/no-explicit-any
const reporters: Record<string, any> = {
Expand Down
7 changes: 7 additions & 0 deletions packages/sarif-reporter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# jscpd-sarif-reporter

## 4.0.3

### Patch Changes

- fix issue with packages
8 changes: 6 additions & 2 deletions packages/sarif-reporter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@jscpd/sarif-reporter",
"version": "4.0.1",
"name": "jscpd-sarif-reporter",
"version": "4.0.3",
"private": false,
"description": "Reporter for jscpd. Generate a report in SARIF format (https://github.com/oasis-tcs/sarif-spec).",
"keywords": [
"jscpd",
Expand Down Expand Up @@ -30,6 +31,9 @@
"typecheck": "tsc",
"cleanup": "rimraf ./dist .turbo"
},
"publishConfig": {
"access": "public"
},
"directories": {
"src": "src",
"test": "__tests__"
Expand Down
6 changes: 3 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 098f8df

Please sign in to comment.