From f837f43e55ea92ae6291faa7fffc398e11cab493 Mon Sep 17 00:00:00 2001 From: George Gevoian Date: Tue, 31 May 2022 15:56:27 -0700 Subject: [PATCH] (core) fix inconsistent name of directory for DocUsageBanner.ts Summary: Usage banner is expected at app/client/components, not app/client/component. Unclear why core smoke test did not catch this. Test Plan: manual Reviewers: paulfitz Reviewed By: paulfitz Differential Revision: https://phab.getgrist.com/D3458 --- stubs/app/client/{component => components}/DocUsageBanner.ts | 0 stubs/app/tsconfig.json | 2 ++ 2 files changed, 2 insertions(+) rename stubs/app/client/{component => components}/DocUsageBanner.ts (100%) diff --git a/stubs/app/client/component/DocUsageBanner.ts b/stubs/app/client/components/DocUsageBanner.ts similarity index 100% rename from stubs/app/client/component/DocUsageBanner.ts rename to stubs/app/client/components/DocUsageBanner.ts diff --git a/stubs/app/tsconfig.json b/stubs/app/tsconfig.json index 0b99c195..84e02c67 100644 --- a/stubs/app/tsconfig.json +++ b/stubs/app/tsconfig.json @@ -1,5 +1,7 @@ { "extends": "../../buildtools/tsconfig-base.json", + "files": [], + "include": [], "references": [ { "path": "../../app/client" }, { "path": "../../app/common" },