@google-psat/report 0.9.0-3 → 0.10.1-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dashboard/components/cookiesWithIssues/index.js +43 -0
- package/dist/dashboard/components/header/index.js +26 -0
- package/dist/dashboard/components/siteMapReport/cookies.js +73 -0
- package/dist/dashboard/components/siteMapReport/index.js +31 -0
- package/dist/dashboard/components/siteMapReport/layout.js +140 -0
- package/dist/dashboard/components/siteMapReport/sidebarData.js +46 -0
- package/dist/dashboard/components/siteMapReport/sitemapCookiesWithIssues.js +9 -0
- package/dist/dashboard/components/siteReport/components/layout.js +145 -0
- package/dist/dashboard/components/siteReport/index.js +33 -0
- package/dist/dashboard/components/siteReport/stateProviders/contentStore/index.js +55 -0
- package/dist/dashboard/components/siteReport/tabs/cookies/cookiesLandingContainer/cookieLanding/blockedCookiesSection.js +82 -0
- package/dist/dashboard/components/siteReport/tabs/cookies/cookiesLandingContainer/cookieLanding/cookiesSection.js +38 -0
- package/dist/dashboard/components/siteReport/tabs/cookies/cookiesLandingContainer/cookieLanding/exemptedCookiesSection.js +63 -0
- package/dist/dashboard/components/siteReport/tabs/cookies/cookiesLandingContainer/cookieLanding/framesSection.js +38 -0
- package/dist/dashboard/components/siteReport/tabs/cookies/cookiesLandingContainer/cookieLanding/index.js +17 -0
- package/dist/dashboard/components/siteReport/tabs/cookies/cookiesLandingContainer/cookieLanding/knownBreakages.js +53 -0
- package/dist/dashboard/components/siteReport/tabs/cookies/cookiesLandingContainer/cookieLanding/landing.js +110 -0
- package/dist/dashboard/components/siteReport/tabs/cookies/cookiesLandingContainer/index.js +58 -0
- package/dist/dashboard/components/siteReport/tabs/cookies/cookiesListing/index.js +47 -0
- package/dist/dashboard/components/siteReport/tabs/cookies/index.js +56 -0
- package/dist/dashboard/components/siteReport/tabs/index.js +54 -0
- package/dist/dashboard/components/siteReport/tabs/siteCookiesWithIssues/index.js +29 -0
- package/dist/dashboard/components/siteReport/tabs/technologies/index.js +91 -0
- package/dist/dashboard/components/utils/NamePrefixIconSelector.js +67 -0
- package/dist/dashboard/components/utils/extractCookies.js +36 -0
- package/dist/dashboard/components/utils/extractReportData.js +56 -0
- package/dist/dashboard/components/utils/reportDownloader/generateSiteMapReportandDownload.js +44 -0
- package/dist/dashboard/components/utils/reportDownloader/generateSiteReportandDownload.js +52 -0
- package/dist/dashboard/components/utils/reportDownloader/index.js +17 -0
- package/dist/dashboard/components/utils/reportDownloader/utils.js +148 -0
- package/dist/dashboard/components/utils/reshapeCookies.js +102 -0
- package/dist/dashboard/components/utils/tests/data.mock.js +176 -0
- package/dist/dashboard/components/utils/tests/extractCookies.js +84 -0
- package/dist/dashboard/components/utils/tests/extractReportData.js +64 -0
- package/dist/dashboard/components/utils/tests/reshapeCookies.js +89 -0
- package/dist/dashboard/hooks/useCookieListing/index.js +412 -0
- package/dist/dashboard/index.js +19 -0
- package/dist/index.js +16 -0
- package/dist-types/dashboard/components/cookiesWithIssues/index.d.ts +8 -0
- package/dist-types/dashboard/components/header/index.d.ts +6 -0
- package/dist-types/dashboard/components/siteMapReport/cookies.d.ts +15 -0
- package/dist-types/dashboard/components/siteMapReport/index.d.ts +11 -0
- package/dist-types/dashboard/components/siteMapReport/layout.d.ts +18 -0
- package/dist-types/dashboard/components/siteMapReport/sidebarData.d.ts +3 -0
- package/dist-types/dashboard/components/siteMapReport/sitemapCookiesWithIssues.d.ts +10 -0
- package/dist-types/dashboard/components/siteReport/components/layout.d.ts +13 -0
- package/dist-types/dashboard/components/siteReport/index.d.ts +17 -0
- package/dist-types/dashboard/components/siteReport/stateProviders/contentStore/index.d.ts +32 -0
- package/dist-types/dashboard/components/siteReport/tabs/cookies/cookiesLandingContainer/cookieLanding/blockedCookiesSection.d.ts +8 -0
- package/dist-types/dashboard/components/siteReport/tabs/cookies/cookiesLandingContainer/cookieLanding/cookiesSection.d.ts +7 -0
- package/dist-types/dashboard/components/siteReport/tabs/cookies/cookiesLandingContainer/cookieLanding/exemptedCookiesSection.d.ts +7 -0
- package/dist-types/dashboard/components/siteReport/tabs/cookies/cookiesLandingContainer/cookieLanding/framesSection.d.ts +9 -0
- package/dist-types/dashboard/components/siteReport/tabs/cookies/cookiesLandingContainer/cookieLanding/index.d.ts +2 -0
- package/dist-types/dashboard/components/siteReport/tabs/cookies/cookiesLandingContainer/cookieLanding/knownBreakages.d.ts +9 -0
- package/dist-types/dashboard/components/siteReport/tabs/cookies/cookiesLandingContainer/cookieLanding/landing.d.ts +15 -0
- package/dist-types/dashboard/components/siteReport/tabs/cookies/cookiesLandingContainer/index.d.ts +23 -0
- package/dist-types/dashboard/components/siteReport/tabs/cookies/cookiesListing/index.d.ts +9 -0
- package/dist-types/dashboard/components/siteReport/tabs/cookies/index.d.ts +9 -0
- package/dist-types/dashboard/components/siteReport/tabs/index.d.ts +3 -0
- package/dist-types/dashboard/components/siteReport/tabs/siteCookiesWithIssues/index.d.ts +5 -0
- package/dist-types/dashboard/components/siteReport/tabs/technologies/index.d.ts +5 -0
- package/dist-types/dashboard/components/utils/NamePrefixIconSelector.d.ts +3 -0
- package/dist-types/dashboard/components/utils/extractCookies.d.ts +6 -0
- package/dist-types/dashboard/components/utils/extractReportData.d.ts +11 -0
- package/dist-types/dashboard/components/utils/reportDownloader/generateSiteMapReportandDownload.d.ts +4 -0
- package/dist-types/dashboard/components/utils/reportDownloader/generateSiteReportandDownload.d.ts +4 -0
- package/dist-types/dashboard/components/utils/reportDownloader/index.d.ts +2 -0
- package/dist-types/dashboard/components/utils/reportDownloader/utils.d.ts +9 -0
- package/dist-types/dashboard/components/utils/reshapeCookies.d.ts +8 -0
- package/dist-types/dashboard/components/utils/tests/data.mock.d.ts +6 -0
- package/dist-types/dashboard/components/utils/tests/extractCookies.d.ts +1 -0
- package/dist-types/dashboard/components/utils/tests/extractReportData.d.ts +1 -0
- package/dist-types/dashboard/components/utils/tests/reshapeCookies.d.ts +1 -0
- package/dist-types/dashboard/hooks/useCookieListing/index.d.ts +10 -0
- package/dist-types/dashboard/index.d.ts +4 -0
- package/dist-types/index.d.ts +1 -0
- package/package.json +11 -5
- package/public/index.html +1 -0
- package/tsconfig.json +19 -3
package/dist-types/dashboard/components/siteReport/tabs/cookies/cookiesLandingContainer/index.d.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* External dependencies.
|
|
3
|
+
*/
|
|
4
|
+
import React from 'react';
|
|
5
|
+
import { type LibraryData, type TabCookies, type TabFrames } from '@google-psat/common';
|
|
6
|
+
import { type TableFilter } from '@google-psat/design-system';
|
|
7
|
+
interface AssembledCookiesLandingProps {
|
|
8
|
+
tabCookies: TabCookies;
|
|
9
|
+
tabFrames: TabFrames;
|
|
10
|
+
setAppliedFilters: React.Dispatch<React.SetStateAction<TableFilter>>;
|
|
11
|
+
downloadReport?: () => Promise<void>;
|
|
12
|
+
libraryMatches: LibraryData | null;
|
|
13
|
+
libraryMatchesUrlCount?: {
|
|
14
|
+
[url: string]: number;
|
|
15
|
+
};
|
|
16
|
+
isSiteMapLandingContainer?: boolean;
|
|
17
|
+
menuBarScrollContainerId?: string;
|
|
18
|
+
query?: string;
|
|
19
|
+
clearQuery?: () => void;
|
|
20
|
+
url: string | undefined | null;
|
|
21
|
+
}
|
|
22
|
+
declare const _default: React.MemoExoticComponent<({ tabCookies, tabFrames, setAppliedFilters, downloadReport, libraryMatches, libraryMatchesUrlCount, menuBarScrollContainerId, query, clearQuery, url, }: AssembledCookiesLandingProps) => import("react/jsx-runtime").JSX.Element>;
|
|
23
|
+
export default _default;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Internal dependencies
|
|
3
|
+
*/
|
|
4
|
+
interface CookiesListingProps {
|
|
5
|
+
selectedFrameUrl: string;
|
|
6
|
+
selectedSite?: string | null;
|
|
7
|
+
}
|
|
8
|
+
declare const CookiesListing: ({ selectedFrameUrl, selectedSite, }: CookiesListingProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export default CookiesListing;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
interface CookiesTabProps {
|
|
2
|
+
selectedFrameUrl?: string | null;
|
|
3
|
+
selectedSite?: string | null;
|
|
4
|
+
query?: string;
|
|
5
|
+
clearQuery?: () => void;
|
|
6
|
+
url?: string;
|
|
7
|
+
}
|
|
8
|
+
declare const CookiesTab: ({ selectedFrameUrl, selectedSite, query, clearQuery, url, }: CookiesTabProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export default CookiesTab;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { type CompleteJson, type CookieFrameStorageType } from '@google-psat/common';
|
|
2
|
+
/**
|
|
3
|
+
* Internal dependencies
|
|
4
|
+
*/
|
|
5
|
+
declare const extractCookies: (cookieData: CompleteJson["cookieData"], pageUrl: string, shouldAddUrlToKey?: boolean) => CookieFrameStorageType;
|
|
6
|
+
export default extractCookies;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* External dependencies
|
|
3
|
+
*/
|
|
4
|
+
import type { CompleteJson, LibraryData } from '@google-psat/common';
|
|
5
|
+
declare const extractReportData: (data: CompleteJson[]) => {
|
|
6
|
+
landingPageCookies: {};
|
|
7
|
+
consolidatedLibraryMatches: {
|
|
8
|
+
[url: string]: LibraryData;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
export default extractReportData;
|
package/dist-types/dashboard/components/utils/reportDownloader/generateSiteMapReportandDownload.d.ts
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { type CompleteJson } from '@google-psat/common';
|
|
2
|
+
import { type TableFilter } from '@google-psat/design-system';
|
|
3
|
+
declare const generateSiteMapReportandDownload: (JSONReport: CompleteJson[], appliedFilters: TableFilter, path: string) => Promise<void>;
|
|
4
|
+
export default generateSiteMapReportandDownload;
|
package/dist-types/dashboard/components/utils/reportDownloader/generateSiteReportandDownload.d.ts
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { type CompleteJson } from '@google-psat/common';
|
|
2
|
+
import { type TableFilter } from '@google-psat/design-system';
|
|
3
|
+
declare const generateSiteReportandDownload: (JSONReport: CompleteJson[], appliedFilters: TableFilter, selectedPageUrl?: string | null) => Promise<void>;
|
|
4
|
+
export default generateSiteReportandDownload;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* External dependencies
|
|
3
|
+
*/
|
|
4
|
+
import type JSZip from 'jszip';
|
|
5
|
+
import { type CompleteJson } from '@google-psat/common';
|
|
6
|
+
import { type TableFilter } from '@google-psat/design-system';
|
|
7
|
+
export declare const generateSitemapHTMLFile: (analysisData: CompleteJson[], appliedFilters: TableFilter) => Blob;
|
|
8
|
+
export declare const createZip: (analysisData: CompleteJson, appliedFilters: TableFilter, zipObject: JSZip) => void;
|
|
9
|
+
export declare const getFolderName: (pageUrl: string) => string;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* External dependencies
|
|
3
|
+
*/
|
|
4
|
+
import { type CookieTableData, type CookieFrameStorageType } from '@google-psat/common';
|
|
5
|
+
declare const reshapeCookies: (cookies: CookieFrameStorageType) => {
|
|
6
|
+
[k: string]: CookieTableData;
|
|
7
|
+
};
|
|
8
|
+
export default reshapeCookies;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { type CookieTableData } from '@google-psat/common';
|
|
2
|
+
import { type TableColumn, type TableFilter } from '@google-psat/design-system';
|
|
3
|
+
declare const useCookieListing: (tabCookies: CookieTableData[], selectedFrameUrl: string, persistenceKey?: string, selectedSite?: string | null) => {
|
|
4
|
+
tableColumns: TableColumn[];
|
|
5
|
+
filters: TableFilter;
|
|
6
|
+
searchKeys: string[];
|
|
7
|
+
tablePersistentSettingsKey: string;
|
|
8
|
+
isSidebarOpen: boolean;
|
|
9
|
+
};
|
|
10
|
+
export default useCookieListing;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { default as SiteReport } from './components/siteReport';
|
|
2
|
+
export { default as SiteMapReport } from './components/siteMapReport';
|
|
3
|
+
export { default as extractReportData } from './components/utils/extractReportData';
|
|
4
|
+
export { default as extractCookies } from './components/utils/extractCookies';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './dashboard';
|
package/package.json
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@google-psat/report",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.1-1",
|
|
4
4
|
"description": "Static HTML analysis report",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist-types/index.d.ts",
|
|
5
7
|
"repository": {
|
|
6
8
|
"type": "git",
|
|
7
|
-
"url": "
|
|
9
|
+
"url": "https://github.com/GoogleChromeLabs/ps-analysis-tool",
|
|
8
10
|
"directory": "packages/report"
|
|
9
11
|
},
|
|
10
12
|
"license": "Apache-2.0",
|
|
@@ -18,6 +20,9 @@
|
|
|
18
20
|
"access": "public"
|
|
19
21
|
},
|
|
20
22
|
"scripts": {
|
|
23
|
+
"build": "tsc",
|
|
24
|
+
"dev": "tsc-watch",
|
|
25
|
+
"build:remove": "rimraf dist dist-types tsconfig.tsbuildinfo",
|
|
21
26
|
"publish:local": "npm publish --registry=http://localhost:4873",
|
|
22
27
|
"publish:remote": "npm publish --access=public --registry=https://registry.npmjs.org",
|
|
23
28
|
"unpublish:local": "npm unpublish --registry=http://localhost:4873 --force",
|
|
@@ -25,18 +30,19 @@
|
|
|
25
30
|
},
|
|
26
31
|
"homepage": "https://github.com/GoogleChromeLabs/ps-analysis-tool#readme",
|
|
27
32
|
"dependencies": {
|
|
28
|
-
"react": "^18.2.0",
|
|
29
|
-
"react-dom": "^18.2.0",
|
|
30
33
|
"@google-psat/common": "*",
|
|
31
34
|
"@google-psat/design-system": "*",
|
|
35
|
+
"@google-psat/i18n": "*",
|
|
32
36
|
"@google-psat/library-detection": "*",
|
|
33
|
-
"
|
|
37
|
+
"react": "^18.2.0",
|
|
38
|
+
"react-dom": "^18.2.0"
|
|
34
39
|
},
|
|
35
40
|
"devDependencies": {
|
|
36
41
|
"@babel/plugin-transform-react-jsx": "^7.22.15",
|
|
37
42
|
"@babel/preset-env": "^7.22.15",
|
|
38
43
|
"@babel/preset-react": "^7.22.15",
|
|
39
44
|
"@babel/preset-typescript": "^7.22.15",
|
|
45
|
+
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
|
|
40
46
|
"@types/file-saver": "^2.0.5",
|
|
41
47
|
"babel-loader": "^9.1.3",
|
|
42
48
|
"webpack": "^5.88.2",
|
package/public/index.html
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<link rel="icon" type="image/png" href='data:image/svg+xml;base64,Cjxzdmcgd2lkdGg9IjEyOCIgaGVpZ2h0PSIxMjgiIHZpZXdCb3g9IjAgMCAxMjggMTI4IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8ZyBjbGlwLXBhdGg9InVybCgjY2xpcDBfMzlfNTIwKSI+CjxwYXRoIGQ9Ik0xMDMuODg4IDIzLjQ0NTFDMTExLjIxMyAzMC43NTg4IDExMy44MDcgNDEuODE3IDExMS42MjUgNTQuMTUwM0MxMDkuNDQ0IDY2LjQ3MjkgMTAyLjUxMiA3OS43OTQ0IDkxLjIyMTYgOTEuMDY3NkM3OS45MzA4IDEwMi4zNDEgNjYuNTg4NSAxMDkuMjYyIDU0LjI0NjcgMTExLjQzOUM0MS44OTQyIDExMy42MTggMzAuODE4NyAxMTEuMDI4IDIzLjQ5MzYgMTAzLjcxNEMxNi4xNjg0IDk2LjQwMDcgMTMuNTc0NyA4NS4zNDI1IDE1Ljc1NzIgNzMuMDA5MkMxNy45Mzc4IDYwLjY4NjYgMjQuODY5MyA0Ny4zNjUyIDM2LjE2MDEgMzYuMDkxOUM0Ny40NTEgMjQuODE4NyA2MC43OTMyIDE3Ljg5OCA3My4xMzUgMTUuNzIwOEM4NS40ODc1IDEzLjU0MTcgOTYuNTYzIDE2LjEzMTQgMTAzLjg4OCAyMy40NDUxWiIgc3Ryb2tlPSIjOUU5RTlFIiBzdHJva2Utd2lkdGg9IjUuNiIgc3Ryb2tlLW1pdGVybGltaXQ9IjkuOTk5OSIvPgo8cGF0aCBkPSJNMTIwLjU0MyA2My41ODQ3QzEyMC41NDMgOTQuOTI2OCA5NS4wOTQ5IDEyMC4zNDIgNjMuNjkzMiAxMjAuMzQyQzMyLjI5MTYgMTIwLjM0MiA2Ljg0Mjk3IDk0LjkyNjggNi44NDI5NyA2My41ODQ3QzYuODQyOTcgMzIuMjQyNiAzMi4yOTE2IDYuODI3MzQgNjMuNjkzMiA2LjgyNzM0Qzk1LjA5NDkgNi44MjczNCAxMjAuNTQzIDMyLjI0MjYgMTIwLjU0MyA2My41ODQ3WiIgc3Ryb2tlPSIjODU4NTg1IiBzdHJva2Utd2lkdGg9IjUuNiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIi8+CjxwYXRoIGQ9Ik00MS4yOTQzIDIwLjkxOEgyMy42MjE5QzE5LjE4ODggMjAuOTE4IDE1LjYwOTQgMTcuMzI5MiAxNS42MDk0IDEyLjkxOEMxNS42MDk0IDguNDkxOCAxOS4yMDM4IDQuOTE3OTcgMjMuNjIxOSA0LjkxNzk3SDQxLjI5NDNDNDUuNzI3MyA0LjkxNzk3IDQ5LjMwNjcgOC41MDY3NSA0OS4zMDY3IDEyLjkxOEM0OS4zMDY3IDE3LjMxNDIgNDUuNzI3MyAyMC45MTggNDEuMjk0MyAyMC45MThaIiBmaWxsPSIjOUNEMUZCIi8+CjxwYXRoIGQ9Ik0yNy44MDgzIDgzLjkzMTdWOTMuMjY0MkMyNy44MDgzIDEwMi4yMjIgMjEuODg3MyAxMTAuNTA5IDEzLjg5NzcgMTEyLjk2MkM1LjkyMTA3IDExMC40OTYgMCAxMDIuMjQ4IDAgOTMuMjY0MlY4My45MzE3TDEzLjkxMDYgNzcuNzYxN0wyNy44MDgzIDgzLjkzMTdaIiBmaWxsPSIjMDVCQjcyIi8+CjxwYXRoIGQ9Ik0xMDkuNjI1IDM0LjQyMTlDMTE2LjQxOCAzNC40MjE5IDEyMS45MjUgMjguOTIzNCAxMjEuOTI1IDIyLjE0MDZDMTIxLjkyNSAxNS4zNTc5IDExNi40MTggOS44NTkzOCAxMDkuNjI1IDkuODU5MzhDMTAyLjgzMSA5Ljg1OTM4IDk3LjMyNDIgMTUuMzU3OSA5Ny4zMjQyIDIyLjE0MDZDOTcuMzI0MiAyOC45MjM0IDEwMi44MzEgMzQuNDIxOSAxMDkuNjI1IDM0LjQyMTlaIiBmaWxsPSIjMDVCQjcyIi8+CjxwYXRoIGQ9Ik05My4yMTY3IDMyLjQ0NTNIMzIuNDgwNVY5NS4xMTg2SDkzLjIxNjdWMzIuNDQ1M1oiIGZpbGw9IiM0NTgyRjQiLz4KPHBhdGggZD0iTTcxLjE0NzIgNjAuMTYyNEM3NS44MjEzIDU1LjQ5NTYgNzUuODIxMyA0Ny45MjkyIDcxLjE0NzIgNDMuMjYyNEM2Ni40NzMxIDM4LjU5NTUgNTguODk0OSAzOC41OTU1IDU0LjIyMDggNDMuMjYyNEM0OS41NDY3IDQ3LjkyOTIgNDkuNTQ2NyA1NS40OTU2IDU0LjIyMDggNjAuMTYyNEM1OC44OTQ5IDY0LjgyOTMgNjYuNDczMSA2NC44MjkzIDcxLjE0NzIgNjAuMTYyNFoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik00MC4xMzk2IDg0LjE1QzQwLjEzOTYgNzkuMzQ0OCA0My4wMDkgNzQuOTg0NyA0Ny40MzMgNzMuMTAxNUM1OC4wMzAyIDY4LjQ5MDMgNzAuMDkwNSA2OC40OTAzIDgwLjY5OTEgNzMuMTAxNUM4NS4xMzQ2IDc0Ljk4NDcgODcuOTkyNSA3OS4zNDQ4IDg3Ljk5MjUgODQuMTVWODcuNTYyOEg0MC4xMzk2Vjg0LjE1WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTUwLjIzMzYgOTUuMTE4NUg5My4yMTY2VjUwLjAyMjUiIHN0cm9rZT0iIzI0MUYyMCIgc3Ryb2tlLXdpZHRoPSIyLjI4NyIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIi8+CjxwYXRoIGQ9Ik0xMTMuNDY0IDEwNEg4NC41NzYxTDgwIDExMi40TDg0LjU3NjEgMTIwLjhIMTEzLjQ2NEwxMTguMDQgMTEyLjRMMTEzLjQ2NCAxMDRaIiBmaWxsPSIjOUNEMUZCIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfMzlfNTIwIj4KPHJlY3Qgd2lkdGg9IjEyOCIgaGVpZ2h0PSIxMjgiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg=='/>
|
|
6
7
|
<title>Report</title>
|
|
7
8
|
</head>
|
|
8
9
|
<body>
|
package/tsconfig.json
CHANGED
|
@@ -1,13 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"extends": "../../tsconfig.shared.json",
|
|
3
3
|
"compilerOptions": {
|
|
4
|
-
"rootDir": "src"
|
|
4
|
+
"rootDir": "src",
|
|
5
|
+
"outDir": "dist",
|
|
6
|
+
"declaration": true,
|
|
7
|
+
"declarationDir": "dist-types",
|
|
8
|
+
"noEmit": false,
|
|
9
|
+
"jsx": "react-jsx",
|
|
10
|
+
"types": ["jest", "node"]
|
|
5
11
|
},
|
|
6
12
|
"include": [
|
|
7
13
|
"src",
|
|
8
14
|
"../../node_modules/@types/jest/index.d.ts",
|
|
9
15
|
"src/**/*.json"
|
|
10
16
|
],
|
|
11
|
-
"
|
|
12
|
-
|
|
17
|
+
"references": [
|
|
18
|
+
{ "path": "../common" },
|
|
19
|
+
{
|
|
20
|
+
"path": "../design-system"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"path": "../i18n"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"path": "../library-detection"
|
|
27
|
+
}
|
|
28
|
+
]
|
|
13
29
|
}
|