1fb6b778e7
* Update pnpm to v11 * Handle breaking changes * Attach pnpm hash * Remove redundant packageManager fields * Make lint-staged happy * Lockfile pnpm itself too * Update pnpm/action-setup for better v11 compatibility * Specify types to make tsc happier * Fix permissions * Check ulimit * Specify minimumReleaseAgeExclude * Run desktop tests * Revert "Run desktop tests" This reverts commit 911eb0ba2e9237d4b28e3bdaaf8f10ba6f22e827. * Revert "Check ulimit" This reverts commit f09eb59d715ba30a2e7fc5dba17dde092bd9bf17. * Reapply "Check ulimit" This reverts commit 83227c19ff5d07db91b6586f407f56870b00c041. * Run desktop tests * Switch nodeLinker & remove app-builder-lib patch * Fix webpack.config.ts * Fix .stylelintrc.cjs * Fix `events` package * Makes types happier * Make knip happy * Fix hak build * Make jest happy * Make pnpm-link happy * Remove dead file * Run playwright tests * Fix linux hak permissions in ci * Test * Remove ulimit checks * Disable skip * Update nx * Tweak line endings * Update screenshot * Iterate * Webpack fallback `events` --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
84 lines
2.9 KiB
TypeScript
84 lines
2.9 KiB
TypeScript
import { KnipConfig } from "knip";
|
|
|
|
// Specify this as knip loads config files which may conditionally add reporters, e.g. `@casualbot/jest-sonar-reporter'
|
|
process.env.GITHUB_ACTIONS = "1";
|
|
|
|
export default {
|
|
workspaces: {
|
|
"packages/shared-components": {},
|
|
"packages/playwright-common": {
|
|
entry: ["src/fixtures/index.ts", "src/testcontainers/index.ts"],
|
|
ignoreDependencies: [
|
|
// Used in playwright-screenshots.sh
|
|
"wait-on",
|
|
],
|
|
ignoreBinaries: ["awk", "printf"],
|
|
},
|
|
"packages/module-api": {},
|
|
"apps/web": {
|
|
entry: [
|
|
"src/serviceworker/index.ts",
|
|
"src/workers/*.worker.ts",
|
|
"src/utils/exportUtils/exportJS.js",
|
|
"src/vector/localstorage-fix.ts",
|
|
"scripts/**",
|
|
"playwright/**",
|
|
"test/**",
|
|
"res/decoder-ring/**",
|
|
"res/jitsi_external_api.min.js",
|
|
"res/themes/*/css/*.pcss",
|
|
],
|
|
ignore: [
|
|
// Keep for now
|
|
"src/hooks/useLocalStorageState.ts",
|
|
],
|
|
ignoreDependencies: [
|
|
// False positive
|
|
"sw.js",
|
|
// Used by webpack
|
|
"process",
|
|
"util",
|
|
// Embedded into webapp
|
|
"@element-hq/element-call-embedded",
|
|
|
|
// Used by matrix-js-sdk, which means we have to include them as a
|
|
// dependency so that // we can run `tsc` (since we import the typescript
|
|
// source of js-sdk, rather than the transpiled and annotated JS like you
|
|
// would with a normal library).
|
|
"@types/content-type",
|
|
"@types/sdp-transform",
|
|
],
|
|
},
|
|
"apps/desktop": {
|
|
entry: ["src/preload.cts", "electron-builder.ts", "scripts/**", "hak/**"],
|
|
project: ["**/*.{js,ts}"],
|
|
ignoreDependencies: [
|
|
// Brought in via hak scripts
|
|
"matrix-seshat",
|
|
],
|
|
ignoreBinaries: ["scripts/in-docker.sh"],
|
|
},
|
|
".": {
|
|
entry: ["scripts/**", "docs/**"],
|
|
},
|
|
},
|
|
ignoreDependencies: [
|
|
// Used by multiple packages, raises a false positive for some reason
|
|
"events",
|
|
],
|
|
ignoreExportsUsedInFile: true,
|
|
compilers: {
|
|
pcss: (text: string) =>
|
|
[...text.matchAll(/@import\s+(?:url\()?["']([^"']+)["']\)?[^;]*;/g)]
|
|
.map(([, specifier]) => `import "${specifier}";`)
|
|
.join("\n"),
|
|
},
|
|
nx: {
|
|
config: ["{nx,package,project}.json", "{apps,packages,modules}/**/{package,project}.json"],
|
|
},
|
|
playwright: {
|
|
config: ["playwright.config.ts", "playwright-merge.config.ts"],
|
|
},
|
|
tags: ["-knipignore"],
|
|
} satisfies KnipConfig;
|