Skip to content

Commit

Permalink
fix: align to breaking changes in cyclonedx library v7
Browse files Browse the repository at this point in the history
  • Loading branch information
janbiasi committed Dec 13, 2024
1 parent 9431cef commit 7689062
Show file tree
Hide file tree
Showing 10 changed files with 193 additions and 341 deletions.
25 changes: 0 additions & 25 deletions .eslintrc.cjs

This file was deleted.

1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ignore-workspace-root-check=true
14 changes: 14 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import tseslint from "typescript-eslint";

/** @type {import('eslint').Linter.Config[]} */
export default [
{ files: ["**/*.{js,mjs,cjs,ts}"] },
{ languageOptions: { globals: globals.node } },
pluginJs.configs.recommended,
...tseslint.configs.recommended,
{
ignores: ["dist/**", "test/fixtures/**"],
},
];
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "rollup-plugin-sbom",
"version": "1.0.0",
"description": "A rollup and vite plugin to generate SBOMs for your application",
"packageManager": "pnpm@9.0.1",
"packageManager": "pnpm@9.15.0",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -66,6 +66,7 @@
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@eslint/js": "9.16.0",
"@types/node": "22.10.1",
"@types/normalize-package-data": "^2.4.4",
"@typescript-eslint/eslint-plugin": "8.17.0",
Expand All @@ -75,12 +76,14 @@
"ajv-formats": "3.0.1",
"eslint": "9.16.0",
"fast-xml-parser": "4.5.0",
"globals": "15.13.0",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"prettier": "3.4.2",
"rollup": "4.28.1",
"semantic-release": "24.2.0",
"typescript": "5.7.2",
"typescript-eslint": "8.18.0",
"unbuild": "2.0.0",
"vitest": "2.1.8"
}
Expand Down
Loading

0 comments on commit 7689062

Please sign in to comment.