Skip to content

Commit

Permalink
fix: Remove redundant dependencies & fix depcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
d3xter666 committed Aug 29, 2024
1 parent 42cdf09 commit 3da822d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"version": "git-chglog --sort semver --next-tag v$npm_package_version -o CHANGELOG.md v4.0.0.. && git add CHANGELOG.md",
"prepublishOnly": "git push --follow-tags",
"release-note": "git-chglog --sort semver -c .chglog/release-config.yml v$npm_package_version",
"depcheck": "depcheck --ignores @ui5/fs,docdash,@istanbuljs/esm-loader-hook"
"depcheck": "depcheck --ignores @ui5/fs,@ui5/project,docdash,@istanbuljs/esm-loader-hook,tsx,typedoc-plugin-rename-defaults"
},
"files": [
"CHANGELOG.md",
Expand Down Expand Up @@ -134,16 +134,13 @@
"@types/pretty-hrtime": "^1.0.3",
"@types/sinon": "^17.0.3",
"ava": "^6.1.3",
"chokidar-cli": "^3.0.0",
"cross-env": "^7.0.3",
"depcheck": "^1.4.7",
"docdash": "^2.0.2",
"eslint": "^9.9.0",
"eslint-plugin-ava": "^15.0.1",
"eslint-plugin-jsdoc": "^50.2.2",
"esmock": "^2.6.7",
"globals": "^15.9.0",
"jsdoc": "^4.0.3",
"nyc": "^17.0.0",
"open-cli": "^8.0.0",
"rimraf": "^6.0.1",
Expand Down
2 changes: 1 addition & 1 deletion test/lib/Resource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {Stream, Transform, type Readable} from "node:stream";
import {promises as fs, createReadStream} from "node:fs";
import path from "node:path";
import Resource from "../../src/Resource.js";
import {type Project} from "@ui5/project/specifications/Project";
import type {Project} from "@ui5/project/specifications/Project";

function createBasicResource() {
const fsPath = path.join("test", "fixtures", "application.a", "webapp", "index.html");
Expand Down

0 comments on commit 3da822d

Please sign in to comment.