diff --git a/.gitignore b/.gitignore
index f590867278..4c15a2a836 100644
--- a/.gitignore
+++ b/.gitignore
@@ -14,6 +14,8 @@ jest.debug.config.js
/.nx-cache
/.verdaccio/build/local-registry
/graph/client/src/assets/environment.js
+/graph/client/src/assets/dev/environment.js
+/graph/client/src/assets/generated-graphs
/nx-dev/nx-dev/public/documentation
/nx-dev/nx-dev/public/images/open-graph
# Lerna creates this
diff --git a/graph/client-e2e/project.json b/graph/client-e2e/project.json
index 12eddb4194..0675ba7f82 100644
--- a/graph/client-e2e/project.json
+++ b/graph/client-e2e/project.json
@@ -12,22 +12,22 @@
"configurations": {
"dev": {
"cypressConfig": "graph/client-e2e/cypress.config.ts",
- "devServerTarget": "graph-client:serve",
- "baseUrl": "http://localhost:4201"
+ "devServerTarget": "graph-client:serve-base:dev-e2e",
+ "baseUrl": "http://localhost:4206"
},
"watch": {
"cypressConfig": "graph/client-e2e/cypress-watch-mode.config.ts",
- "devServerTarget": "graph-client:serve:watch",
+ "devServerTarget": "graph-client:serve-base:watch",
"baseUrl": "http://localhost:4204"
},
"release": {
"cypressConfig": "graph/client-e2e/cypress-release.config.ts",
- "devServerTarget": "graph-client:serve:release",
+ "devServerTarget": "graph-client:serve-base:release",
"baseUrl": "http://localhost:4203"
},
"release-static": {
"cypressConfig": "graph/client-e2e/cypress-release-static.config.ts",
- "devServerTarget": "graph-client:serve:release-static",
+ "devServerTarget": "graph-client:serve-base:release-static",
"baseUrl": "http://localhost:4205"
}
},
@@ -38,10 +38,10 @@
"outputs": [],
"options": {
"commands": [
- "npx nx e2e-base e2e-graph-client -c dev",
- "npx nx e2e-base e2e-graph-client -c watch",
- "npx nx e2e-base e2e-graph-client -c release",
- "npx nx e2e-base e2e-graph-client -c release-static"
+ "npx nx e2e-base e2e-graph-client --configuration dev",
+ "npx nx e2e-base e2e-graph-client --configuration watch",
+ "npx nx e2e-base e2e-graph-client --configuration release",
+ "npx nx e2e-base e2e-graph-client --configuration release-static"
],
"parallel": false
}
diff --git a/graph/client-e2e/src/e2e/app.cy.ts b/graph/client-e2e/src/e2e/app.cy.ts
index 6e643692e9..f36588ccf6 100644
--- a/graph/client-e2e/src/e2e/app.cy.ts
+++ b/graph/client-e2e/src/e2e/app.cy.ts
@@ -23,7 +23,7 @@ import * as nxExamplesJson from '../fixtures/nx-examples.json';
describe('graph-client', () => {
before(() => {
- cy.intercept('/assets/graphs/nx.json', { fixture: 'nx-examples.json' }).as(
+ cy.intercept('/assets/graphs/e2e.json', { fixture: 'nx-examples.json' }).as(
'getGraph'
);
cy.visit('/');
@@ -144,7 +144,7 @@ describe('graph-client', () => {
fixture: 'affected.json',
}).as('getAffectedGraph');
- cy.get('[data-cy=project-select]').select('Affected', { force: true });
+ cy.get('[data-cy=project-select]').select('affected', { force: true });
cy.wait('@getAffectedGraph');
getSelectAffectedButton().click();
@@ -155,10 +155,10 @@ describe('graph-client', () => {
);
// switch back to Nx Examples graph before proceeding
- cy.intercept('/assets/graphs/nx-examples.json', {
+ cy.intercept('/assets/graphs/e2e.json', {
fixture: 'nx-examples.json',
}).as('getGraph');
- cy.get('[data-cy=project-select]').select('Nx Examples', { force: true });
+ cy.get('[data-cy=project-select]').select('e2e', { force: true });
cy.wait('@getGraph');
});
});
diff --git a/graph/client/project.json b/graph/client/project.json
index f73e1dc1de..e53ad20a56 100644
--- a/graph/client/project.json
+++ b/graph/client/project.json
@@ -3,6 +3,32 @@
"sourceRoot": "graph/client/src",
"projectType": "application",
"targets": {
+ "generate-dev-environment-js": {
+ "executor": "nx:run-commands",
+ "options": {
+ "commands": [
+ "ts-node -P ./scripts/tsconfig.scripts.json ./scripts/generate-graph-environment.ts"
+ ]
+ }
+ },
+ "generate-graph-base": {
+ "executor": "nx:run-commands",
+ "options": {
+ "commands": [
+ "ts-node -P ./scripts/tsconfig.scripts.json ./scripts/generate-graph.ts"
+ ]
+ }
+ },
+ "generate-graph": {
+ "executor": "nx:run-commands",
+ "options": {
+ "commands": [
+ "npx nx run graph-client:generate-graph-base",
+ "npx nx run graph-client:generate-dev-environment-js"
+ ],
+ "parallel": false
+ }
+ },
"build-base": {
"executor": "@nrwl/webpack:webpack",
"options": {
@@ -36,6 +62,7 @@
"assets": [
"graph/client/src/favicon.ico",
"graph/client/src/assets/graphs/",
+ "graph/client/src/assets/generated-graphs/",
{
"input": "graph/client/src/assets/dev",
"output": "/",
@@ -43,13 +70,24 @@
}
]
},
+ "dev-e2e": {
+ "assets": [
+ "graph/client/src/favicon.ico",
+ "graph/client/src/assets/graphs/",
+ {
+ "input": "graph/client/src/assets/dev-e2e",
+ "output": "/",
+ "glob": "environment.js"
+ }
+ ]
+ },
"nx-console": {
"assets": [
"graph/client/src/favicon.ico",
{
"input": "graph/client/src/assets/graphs",
"output": "/assets/graphs",
- "glob": "nx-examples.json"
+ "glob": "e2e.json"
},
{
"input": "graph/client/src/assets/nx-console",
@@ -64,7 +102,7 @@
{
"input": "graph/client/src/assets/graphs",
"output": "/assets/graphs",
- "glob": "nx-examples.json"
+ "glob": "e2e.json"
},
{
"input": "graph/client/src/assets/release",
@@ -92,7 +130,7 @@
{
"input": "graph/client/src/assets/graphs",
"output": "/assets/graphs",
- "glob": "nx-examples.json"
+ "glob": "e2e.json"
},
{
"input": "graph/client/src/assets/release-static",
@@ -128,7 +166,7 @@
"defaultConfiguration": "release",
"outputs": ["{options.outputPath}"]
},
- "serve": {
+ "serve-base": {
"executor": "@nrwl/webpack:dev-server",
"configurations": {
"dev": {
@@ -150,6 +188,39 @@
"release-static": {
"buildTarget": "graph-client:build-base:release-static",
"port": 4205
+ },
+ "dev-e2e": {
+ "buildTarget": "graph-client:build-base:dev-e2e",
+ "port": 4206
+ }
+ },
+ "defaultConfiguration": "dev"
+ },
+ "serve": {
+ "executor": "nx:run-commands",
+ "configurations": {
+ "dev": {
+ "commands": [
+ "npx nx run graph-client:generate-dev-environment-js",
+ "npx nx serve-base graph-client"
+ ],
+ "parallel": false
+ },
+ "release": {
+ "commands": ["npx nx serve-base graph-client --configuration release"]
+ },
+ "release-static": {
+ "commands": [
+ "npx nx serve-base graph-client --configuration release-static"
+ ]
+ },
+ "watch": {
+ "commands": ["npx nx serve-base graph-client --configuration watch"]
+ },
+ "nx-console": {
+ "commands": [
+ "npx nx serve-base graph-client --configuration nx-console"
+ ]
}
},
"defaultConfiguration": "dev"
diff --git a/graph/client/src/assets/dev-e2e/environment.js b/graph/client/src/assets/dev-e2e/environment.js
new file mode 100644
index 0000000000..41e1c9b0ff
--- /dev/null
+++ b/graph/client/src/assets/dev-e2e/environment.js
@@ -0,0 +1,22 @@
+window.exclude = [];
+window.watch = false;
+window.environment = 'dev';
+window.useXstateInspect = false;
+
+window.appConfig = {
+ showDebugger: true,
+ showExperimentalFeatures: true,
+ projectGraphs: [
+ {
+ id: 'e2e',
+ label: 'e2e',
+ url: 'assets/graphs/e2e.json',
+ },
+ {
+ id: 'affected',
+ label: 'affected',
+ url: 'assets/graphs/affected.json',
+ },
+ ],
+ defaultProjectGraph: 'e2e',
+};
diff --git a/graph/client/src/assets/dev/environment.js b/graph/client/src/assets/dev/environment.js
deleted file mode 100644
index b0510b112e..0000000000
--- a/graph/client/src/assets/dev/environment.js
+++ /dev/null
@@ -1,57 +0,0 @@
-window.exclude = [];
-window.watch = false;
-window.environment = 'dev';
-window.useXstateInspect = false;
-
-window.appConfig = {
- showDebugger: true,
- showExperimentalFeatures: true,
- projectGraphs: [
- {
- id: 'nx',
- label: 'Nx',
- url: 'assets/graphs/nx.json',
- },
- {
- id: 'ocean',
- label: 'Ocean',
- url: 'assets/graphs/ocean.json',
- },
- {
- id: 'nx-examples',
- label: 'Nx Examples',
- url: 'assets/graphs/nx-examples.json',
- },
- {
- id: 'sub-apps',
- label: 'Sub Apps',
- url: 'assets/graphs/sub-apps.json',
- },
- {
- id: 'storybook',
- label: 'Storybook',
- url: 'assets/graphs/storybook.json',
- },
- {
- id: 'focus-testing',
- label: 'Focus',
- url: 'assets/graphs/focus-testing.json',
- },
- {
- id: 'affected',
- label: 'Affected',
- url: 'assets/graphs/affected.json',
- },
- {
- id: 'collapsing-edges-testing',
- label: 'Collapsing Edges',
- url: 'assets/graphs/collapsing-edges-testing.json',
- },
- {
- id: 'nested-workspace-layout',
- label: 'Nested Workspace Layout',
- url: 'assets/graphs/nested-workspace-layout.json',
- },
- ],
- defaultProjectGraph: 'nx',
-};
diff --git a/graph/client/src/assets/graphs/nx-examples.json b/graph/client/src/assets/graphs/e2e.json
similarity index 83%
rename from graph/client/src/assets/graphs/nx-examples.json
rename to graph/client/src/assets/graphs/e2e.json
index 40e103f9b7..987f38d46c 100644
--- a/graph/client/src/assets/graphs/nx-examples.json
+++ b/graph/client/src/assets/graphs/e2e.json
@@ -1,5 +1,5 @@
{
- "hash": "bd93a0dd65a777ebb28146f82c2f5c1ee40edf9e44c9e8f8f18c55a1464988c0",
+ "hash": "f04e623f47ff05af4d6a6b50f489da2d497e8c37baf8a31f06c54acc21e6195f",
"projects": [
{
"name": "products-product-detail-page",
@@ -13,12 +13,12 @@
"hash": "27519506e3b1095fc3d2395d0bc6163409573e27"
},
{
- "file": "libs/products/product-detail-page/jest.config.js",
- "hash": "ded1479a6a329c3d6118d88d2dc7978b8e9824a2"
+ "file": "libs/products/product-detail-page/jest.config.ts",
+ "hash": "fbdaa40eee040e39d70fb462e5940cdeddb440c1"
},
{
"file": "libs/products/product-detail-page/project.json",
- "hash": "0c9022339c45bb9a91c24e0da3329a03c8972616"
+ "hash": "afaf79c79d5914d6f3a73e9406295d1df0709334"
},
{
"file": "libs/products/product-detail-page/README.md",
@@ -38,7 +38,7 @@
},
{
"file": "libs/products/product-detail-page/src/lib/product-detail-page/product-detail-page.component.spec.ts",
- "hash": "e8390b7218d2dca9eb4be8d2b1cc08e1b1c0de1b",
+ "hash": "0de2f97bbb2d8d9877b20f2a4024a3409021c652",
"deps": [
"npm:@angular/core",
"npm:@angular/router",
@@ -61,12 +61,12 @@
},
{
"file": "libs/products/product-detail-page/src/lib/products-product-detail-page.module.spec.ts",
- "hash": "01541f218a3a1b95b056fd9d2d1b578e5a2e3d9a",
+ "hash": "42049a1b8ea89bdc9bbad4be1fbb299d716bc327",
"deps": ["npm:@angular/core"]
},
{
"file": "libs/products/product-detail-page/src/lib/products-product-detail-page.module.ts",
- "hash": "5c06b527e7ffe870f1960a74a845106beca79b6b",
+ "hash": "3d77c3b1e639077f830ead6241e615da7f4fdf53",
"deps": [
"npm:@angular/common",
"npm:@angular/core",
@@ -81,15 +81,15 @@
},
{
"file": "libs/products/product-detail-page/tsconfig.json",
- "hash": "1b6ee0bf6f3df276fbfc5c683aca2e02c6c6523a"
+ "hash": "5602461b1ed724ed65200be5367ab1defdc871fc"
},
{
"file": "libs/products/product-detail-page/tsconfig.lib.json",
- "hash": "a86e8be7a68f3cc03c74c5a09390b33e2f776702"
+ "hash": "570fd66cb7ce59508cddedca0ef815a1c635315d"
},
{
"file": "libs/products/product-detail-page/tsconfig.spec.json",
- "hash": "1f8e7f6c3e5a63e2af398d49fef36e6f6659fb7c"
+ "hash": "34c38b0ec3a38a7cbd5c3e378ff421ad31e84efb"
}
]
}
@@ -110,12 +110,12 @@
"hash": "eee5f453593a2b8e7f865305029b7edc3449cca6"
},
{
- "file": "libs/shared/product/state/jest.config.js",
- "hash": "5a309f7bc9c2aba47951f68dfd2dc74701537484"
+ "file": "libs/shared/product/state/jest.config.ts",
+ "hash": "9184d1913ec49fa254d1ebdcffd99d31d07b5353"
},
{
"file": "libs/shared/product/state/project.json",
- "hash": "c0b3a895e001a77b6e39df10c105551f2a9d1ba1"
+ "hash": "851c8ba6632d38e2ccde4b4cf6e0b12b8e3f66f1"
},
{
"file": "libs/shared/product/state/README.md",
@@ -143,7 +143,7 @@
},
{
"file": "libs/shared/product/state/src/lib/+state/products.selectors.spec.ts",
- "hash": "25cd673e1ff8b591f92f734944cd20adf965b612",
+ "hash": "d22772ca82cb0f57a96d11fa3cb8f5a0e238c6d8",
"deps": ["shared-product-data"]
},
{
@@ -152,12 +152,12 @@
},
{
"file": "libs/shared/product/state/src/lib/shared-product-state.module.spec.ts",
- "hash": "713543b7a36b2027985904f9a74124f79406108c",
+ "hash": "2aab0223be6028d16f8cddc8ac033b362eae21e2",
"deps": ["npm:@angular/core"]
},
{
"file": "libs/shared/product/state/src/lib/shared-product-state.module.ts",
- "hash": "144207d2b4609204b8ceab1ae81d1079d61b3949",
+ "hash": "45820bfa99997f35e6576d526fa228b7a5638cca",
"deps": [
"npm:@angular/common",
"npm:@angular/core",
@@ -175,15 +175,15 @@
},
{
"file": "libs/shared/product/state/tsconfig.json",
- "hash": "d32f55e3999447ae24e89f0e76d8c3128113c85e"
+ "hash": "a9a0b978b3edf84247a550ba82d8eea50dc8da68"
},
{
"file": "libs/shared/product/state/tsconfig.lib.json",
- "hash": "6d8381892432362a9efb491476651c6b8cc2d1a2"
+ "hash": "3b1fbbb954624d075826446e0060d243813ebcf1"
},
{
"file": "libs/shared/product/state/tsconfig.spec.json",
- "hash": "6089636545924f32531e4bd15d9d031aa84f63e0"
+ "hash": "8603a008c3b77e77e142939e83e05e4a1043fbc6"
}
]
}
@@ -205,7 +205,7 @@
},
{
"file": "libs/shared/product/types/project.json",
- "hash": "c4d630da19998c6664c793aa9e1da2afb1520dc5"
+ "hash": "92202a2aaf4c482dd8e463ddefc6d0eb6f5640f2"
},
{
"file": "libs/shared/product/types/README.md",
@@ -247,7 +247,7 @@
},
{
"file": "libs/shared/product/data/project.json",
- "hash": "6cb1a1f6762f3e891398ec2df3036f74b138db2e"
+ "hash": "8c12bcd46a2d49861cd71b6b9502bf5a408c380d"
},
{
"file": "libs/shared/product/data/README.md",
@@ -259,11 +259,11 @@
},
{
"file": "libs/shared/product/data/src/lib/product-data.mock.ts",
- "hash": "dcd7b7730bcd977d83eec2b8c8a27980ed605d58"
+ "hash": "dedcafc80a6cf40d3f644c8f88679b0182fd1c00"
},
{
"file": "libs/shared/product/data/src/lib/shared-product-data.ts",
- "hash": "eea248a1d99f1b5385f489a9ff7cbe8d947dd5aa",
+ "hash": "37d51e532586fe98ac35c9236e8fd538718cf14f",
"deps": ["shared-product-types"]
},
{
@@ -293,12 +293,12 @@
"hash": "9384bd8cee7cccbdde43abbc051ecf6cef35b256"
},
{
- "file": "libs/products/home-page/jest.config.js",
- "hash": "6de15e0e0f1e3de70757fbac71d98c25cd9bfbed"
+ "file": "libs/products/home-page/jest.config.ts",
+ "hash": "811538b0e4b2bddada064484783eb1d3e8a9b947"
},
{
"file": "libs/products/home-page/project.json",
- "hash": "157f0e2f3e24ef1397362f0704c1b8849361767a"
+ "hash": "49e94220da64777b26d6e9c64f3b8b5b54d9dd69"
},
{
"file": "libs/products/home-page/README.md",
@@ -318,7 +318,7 @@
},
{
"file": "libs/products/home-page/src/lib/home-page/home-page.component.spec.ts",
- "hash": "66eb455b3e71b30c0bd16a4769cc34b81133b667",
+ "hash": "87d1216af1f7737913862e6ddeaadebad62791e5",
"deps": [
"npm:@angular/core",
"npm:@angular/router",
@@ -340,12 +340,12 @@
},
{
"file": "libs/products/home-page/src/lib/products-home-page.module.spec.ts",
- "hash": "1d9cf1c8c46ebe69275def67ccf6f04c0f967856",
+ "hash": "8cb2bfc9f5de5af9800855b4945b103d115b14ba",
"deps": ["npm:@angular/core"]
},
{
"file": "libs/products/home-page/src/lib/products-home-page.module.ts",
- "hash": "db6a06b6d0063c4a1fff6c7953be09a680592184",
+ "hash": "7f4fdd952cc9cf060895ac58572039cde80237e3",
"deps": [
"npm:@angular/common",
"npm:@angular/core",
@@ -360,15 +360,15 @@
},
{
"file": "libs/products/home-page/tsconfig.json",
- "hash": "1b6ee0bf6f3df276fbfc5c683aca2e02c6c6523a"
+ "hash": "5602461b1ed724ed65200be5367ab1defdc871fc"
},
{
"file": "libs/products/home-page/tsconfig.lib.json",
- "hash": "a86e8be7a68f3cc03c74c5a09390b33e2f776702"
+ "hash": "570fd66cb7ce59508cddedca0ef815a1c635315d"
},
{
"file": "libs/products/home-page/tsconfig.spec.json",
- "hash": "1f8e7f6c3e5a63e2af398d49fef36e6f6659fb7c"
+ "hash": "34c38b0ec3a38a7cbd5c3e378ff421ad31e84efb"
}
]
}
@@ -389,12 +389,12 @@
"hash": "57932578e6df8f4a907a78abde0e3f5a7d84fc6f"
},
{
- "file": "libs/shared/cart/state/jest.config.js",
- "hash": "fd7e6f4c5d6aeaac4776a793432321ffd7c867a1"
+ "file": "libs/shared/cart/state/jest.config.ts",
+ "hash": "8357457b34280e715a5f5832b115ab6bf2681c31"
},
{
"file": "libs/shared/cart/state/project.json",
- "hash": "f27bfc806b976a518617eb9062b55be2e8226f9a"
+ "hash": "a8448393b26be761ecf79cc38746d5aafc18a27f"
},
{
"file": "libs/shared/cart/state/README.md",
@@ -419,7 +419,7 @@
},
{
"file": "libs/shared/cart/state/src/lib/+state/cart.selectors.spec.ts",
- "hash": "dc5a869677b1db84446492fc6a1045cd33c0d661",
+ "hash": "77cc9170d1302e0a84409885d81c3c59fd1226a6",
"deps": ["shared-product-data", "shared-product-state"]
},
{
@@ -429,12 +429,12 @@
},
{
"file": "libs/shared/cart/state/src/lib/shared-cart-state.module.spec.ts",
- "hash": "caef812f0d76e3f3ca6849d53dc0d011cd2e902a",
+ "hash": "e4e845c3c52dc39e06358bf83a729827fe652da5",
"deps": ["npm:@angular/core"]
},
{
"file": "libs/shared/cart/state/src/lib/shared-cart-state.module.ts",
- "hash": "180d2c45ab25f0eeb6b15378bd43b85874f5b318",
+ "hash": "f4b3a218c98c9aa7c0eb5828b5085826d174144a",
"deps": [
"npm:@angular/common",
"npm:@angular/core",
@@ -452,15 +452,15 @@
},
{
"file": "libs/shared/cart/state/tsconfig.json",
- "hash": "d32f55e3999447ae24e89f0e76d8c3128113c85e"
+ "hash": "a9a0b978b3edf84247a550ba82d8eea50dc8da68"
},
{
"file": "libs/shared/cart/state/tsconfig.lib.json",
- "hash": "6d8381892432362a9efb491476651c6b8cc2d1a2"
+ "hash": "3b1fbbb954624d075826446e0060d243813ebcf1"
},
{
"file": "libs/shared/cart/state/tsconfig.spec.json",
- "hash": "6089636545924f32531e4bd15d9d031aa84f63e0"
+ "hash": "8603a008c3b77e77e142939e83e05e4a1043fbc6"
}
]
}
@@ -481,12 +481,12 @@
"hash": "f27e8c332d321de90c56395d24b45a2b68d1b52b"
},
{
- "file": "libs/shared/product/ui/jest.config.js",
- "hash": "d032303d104ce2fe92d12893c1c149e4f9fb4b45"
+ "file": "libs/shared/product/ui/jest.config.ts",
+ "hash": "262c1e746be37cbce13b006e6add33401b105a3e"
},
{
"file": "libs/shared/product/ui/project.json",
- "hash": "70dee7ca7a82443e9b4b32a403cd558884f38fd8"
+ "hash": "07eafbdc2162159856a6bad608469356c0574278"
},
{
"file": "libs/shared/product/ui/README.md",
@@ -502,7 +502,7 @@
},
{
"file": "libs/shared/product/ui/src/lib/product-price/product-price.element.ts",
- "hash": "8c626d1213b1b47bc2bdf221554fb38bb9f9bfae",
+ "hash": "a6d8f7b3db8bab4c3afd48786c09ce2c9b4656b5",
"deps": ["shared-jsxify"]
},
{
@@ -516,11 +516,11 @@
},
{
"file": "libs/shared/product/ui/tsconfig.lib.json",
- "hash": "bb348accf6ee25f0e83651f3058a2f7bc23e9be1"
+ "hash": "7c7688b3df9330c9e0768df1c4701e55add00a40"
},
{
"file": "libs/shared/product/ui/tsconfig.spec.json",
- "hash": "1f4ea6984a42a3e2396a474de39621dfdf02175c"
+ "hash": "515fdb6e5dd4291dc308b7aee7a45b72c83a1b1d"
}
]
}
@@ -538,7 +538,7 @@
},
{
"file": "libs/shared/e2e-utils/project.json",
- "hash": "783ead0bf5e68083a9dbf390fa49bbd97ff7fa1a"
+ "hash": "244fa3bf318d2b113e9a6b97b8988c5d661b0e38"
},
{
"file": "libs/shared/e2e-utils/README.md",
@@ -579,12 +579,12 @@
"hash": "0790d98fc5188ef5b9707e0a47792b30e87f807f"
},
{
- "file": "libs/cart/cart-page/jest.config.js",
- "hash": "f526b301f8754df11afe4e46f4ed1357f6a06ec7"
+ "file": "libs/cart/cart-page/jest.config.ts",
+ "hash": "cfd45fc556295c42c6b09f864a82309d649e452f"
},
{
"file": "libs/cart/cart-page/project.json",
- "hash": "1cc1eccfd227af5c75288e67528d76743d0efd5d"
+ "hash": "50c94308d4188fedde398bb342ca3b89f6e8b851"
},
{
"file": "libs/cart/cart-page/README.md",
@@ -621,11 +621,11 @@
},
{
"file": "libs/cart/cart-page/tsconfig.lib.json",
- "hash": "c6a0c23566ca982df78d0ee961e1cf1674793118"
+ "hash": "8dcf07ce29e8bca717ce2672fb9f2ac5c9ab0556"
},
{
"file": "libs/cart/cart-page/tsconfig.spec.json",
- "hash": "cab0321d30317cad540f0f087e2c2caf670370fe"
+ "hash": "e1535ba9d07c38511f465f5427c9c5a39ab3b174"
}
]
}
@@ -639,7 +639,7 @@
"files": [
{
"file": "libs/shared/assets/project.json",
- "hash": "ed3a5761da20b48280dc7e572c888093d13cf37a"
+ "hash": "4fb68b4528e6326aebe04647bc437f7477a94e5c"
},
{
"file": "libs/shared/assets/README.md",
@@ -696,12 +696,12 @@
"hash": "09fd44fea0cd18509c0e77aa5522c65590df0448"
},
{
- "file": "libs/shared/header/jest.config.js",
- "hash": "563ed547b97bd2f478059633b6cd63d5cf7e570c"
+ "file": "libs/shared/header/jest.config.ts",
+ "hash": "77a96b3c6ffd4f4b946c1a8558bf2187a03c958e"
},
{
"file": "libs/shared/header/project.json",
- "hash": "ca88f6b6dbea994232e6b79861fffcbe0e0e9290"
+ "hash": "725e63d4be61a51b77fb25000400e6ea6c7ce139"
},
{
"file": "libs/shared/header/README.md",
@@ -721,7 +721,7 @@
},
{
"file": "libs/shared/header/src/lib/header/header.element.ts",
- "hash": "788a1512fb3b61bb9d431c16656781132ac5c530",
+ "hash": "5123c6b355b86e8872afb0c65a1745c9c70d40b0",
"deps": ["shared-jsxify"]
},
{
@@ -735,11 +735,11 @@
},
{
"file": "libs/shared/header/tsconfig.lib.json",
- "hash": "93dd59b93ff9d0289ecfb437bc1a73c18d3ecb36"
+ "hash": "20057947e016b3c54734e67901bb1663770adee7"
},
{
"file": "libs/shared/header/tsconfig.spec.json",
- "hash": "cab0321d30317cad540f0f087e2c2caf670370fe"
+ "hash": "e1535ba9d07c38511f465f5427c9c5a39ab3b174"
}
]
}
@@ -761,7 +761,7 @@
},
{
"file": "libs/shared/jsxify/project.json",
- "hash": "3dd4e5f2811d3377248f9c0dae8eba489391fa7e"
+ "hash": "01db4dd77ff7eb12a1af62d040df77ebb54a4bf0"
},
{
"file": "libs/shared/jsxify/README.md",
@@ -795,7 +795,7 @@
"files": [
{
"file": "libs/shared/styles/project.json",
- "hash": "b5a6f584bc941709d29e6adc4d5ca56ce30ae01c"
+ "hash": "47566a51c14545b7fa381bbfddd4e36217c80c69"
},
{
"file": "libs/shared/styles/README.md",
@@ -824,22 +824,23 @@
"hash": "e7caab63fbef52bb000835acbb23935cb48203a0"
},
{
- "file": "apps/products-e2e/cypress.json",
- "hash": "ee5af7e5518edbfda16020d5b0b543542438788c"
+ "file": "apps/products-e2e/cypress.config.ts",
+ "hash": "c80242149987121c164a3e239abe178abc8d4a07",
+ "deps": ["npm:cypress", "npm:@nrwl/cypress"]
},
{
"file": "apps/products-e2e/project.json",
- "hash": "a6433cd42925d342ece35e788c3f2d43263a26e6"
+ "hash": "957ee425995fa9c2ba8158c112ee2a4cd96b7b84"
+ },
+ {
+ "file": "apps/products-e2e/src/e2e/app.cy.ts",
+ "hash": "b83b44ff82a9b4afd01aff30386219a8779c80d8",
+ "deps": ["shared-e2e-utils"]
},
{
"file": "apps/products-e2e/src/fixtures/example.json",
"hash": "294cbed6ce9e0b948b787452e8676aee486cb3be"
},
- {
- "file": "apps/products-e2e/src/integration/app.spec.ts",
- "hash": "00b7341abcfcdaf897c7eb31f6a79a297fc01af0",
- "deps": ["shared-e2e-utils"]
- },
{
"file": "apps/products-e2e/src/support/app.po.ts",
"hash": "d5ac94199b3e68be5782c883344f00c90bfd07a9"
@@ -849,12 +850,12 @@
"hash": "ca4d256f3eb15dfabad1f5760c9b2d0ceb4c24b9"
},
{
- "file": "apps/products-e2e/src/support/index.ts",
+ "file": "apps/products-e2e/src/support/e2e.ts",
"hash": "3d469a6b6cf31eb66117d73e278bcf74f398f1db"
},
{
"file": "apps/products-e2e/tsconfig.json",
- "hash": "c4f818ecd40fbce82c3e08bf25cde3043970f8f3"
+ "hash": "cc509a730e12498509bb7475f6f54b1a18021191"
}
]
}
@@ -871,22 +872,23 @@
"hash": "082395fbd03ae178157f9ebd4d374d208fd254f8"
},
{
- "file": "apps/cart-e2e/cypress.json",
- "hash": "49dc3499df795aad422a2e3f8d09a5e2352bf686"
+ "file": "apps/cart-e2e/cypress.config.ts",
+ "hash": "f292e4c8c9a6268418b17d7ff125bef64c961a4c",
+ "deps": ["npm:cypress", "npm:@nrwl/cypress"]
},
{
"file": "apps/cart-e2e/project.json",
- "hash": "1e9d604fb96854df9b579f00144e78c4a81def10"
+ "hash": "02852d8c5cc3c57e82bdfe47858d97b36a3a1cb6"
+ },
+ {
+ "file": "apps/cart-e2e/src/e2e/app.cy.ts",
+ "hash": "2971885c601f09176516333d80a59f6e61ceaf9f",
+ "deps": ["shared-e2e-utils"]
},
{
"file": "apps/cart-e2e/src/fixtures/example.json",
"hash": "294cbed6ce9e0b948b787452e8676aee486cb3be"
},
- {
- "file": "apps/cart-e2e/src/integration/app.spec.ts",
- "hash": "caae6c7558f1bdfa052af97eb192ad3ef9673921",
- "deps": ["shared-e2e-utils"]
- },
{
"file": "apps/cart-e2e/src/support/app.po.ts",
"hash": "c29f04f1c8d7c8722fbf705b3d951333c4fb95fc"
@@ -896,12 +898,12 @@
"hash": "ca4d256f3eb15dfabad1f5760c9b2d0ceb4c24b9"
},
{
- "file": "apps/cart-e2e/src/support/index.ts",
+ "file": "apps/cart-e2e/src/support/e2e.ts",
"hash": "3d469a6b6cf31eb66117d73e278bcf74f398f1db"
},
{
"file": "apps/cart-e2e/tsconfig.json",
- "hash": "c4f818ecd40fbce82c3e08bf25cde3043970f8f3"
+ "hash": "cc509a730e12498509bb7475f6f54b1a18021191"
}
]
}
@@ -922,12 +924,12 @@
"hash": "09bf85ffde1b09ba5ee6a114f2ceeb11a4a892d1"
},
{
- "file": "apps/products/jest.config.js",
- "hash": "84f9579521f246fff44012f9ae4fd51c5d2d44f0"
+ "file": "apps/products/jest.config.ts",
+ "hash": "699704d393fd19b2ea2681b4e124b86008ef70c9"
},
{
"file": "apps/products/project.json",
- "hash": "17317c7731b0d92b1a606bd2998b48729579682f"
+ "hash": "4dfd29466f1cbb8bc8159f00629272c8d7823914"
},
{
"file": "apps/products/src/_redirects",
@@ -943,17 +945,17 @@
},
{
"file": "apps/products/src/app/app.component.spec.ts",
- "hash": "b611bf15a7302118c40010c47faa14a6ee70d714",
+ "hash": "1f8a9866829d1ca8d1b82fd6db943428bbde8e65",
"deps": ["npm:@angular/core", "npm:@angular/router"]
},
{
"file": "apps/products/src/app/app.component.ts",
- "hash": "67f74e1fe6f32700ab9eb84c28e8c5eb0a3816e6",
+ "hash": "ff3c08d367bbffd1a0467e9f6925f9fe16d7e81d",
"deps": ["npm:@angular/core", "shared-header"]
},
{
"file": "apps/products/src/app/app.module.ts",
- "hash": "b83f636e0c945792e77ac5634ef6641041bc5e7a",
+ "hash": "814f3c4b6aa21425d7aabb8ff7b31fdc6999a5ae",
"deps": [
"npm:@angular/core",
"npm:@angular/platform-browser",
@@ -969,11 +971,11 @@
},
{
"file": "apps/products/src/environments/environment.prod.ts",
- "hash": "3612073bc31cd4c1f5d6cbb00318521e9a61bd8a"
+ "hash": "c9669790be176ac85a5d8c11278875c2f52dc507"
},
{
"file": "apps/products/src/environments/environment.ts",
- "hash": "7b4f817adb754769ca126a939d48ac4b0850489d"
+ "hash": "99c3763cad6f4ae7808a34e2aa4e5b90232c67fc"
},
{
"file": "apps/products/src/favicon.ico",
@@ -985,7 +987,7 @@
},
{
"file": "apps/products/src/main.ts",
- "hash": "fa4e0aef33721b84c2cc9f415da4770e770a68b4",
+ "hash": "d9a2e7e4a582e265db779363bd8b2492c43c141b",
"deps": [
"npm:@angular/core",
"npm:@angular/platform-browser-dynamic"
@@ -1003,19 +1005,19 @@
},
{
"file": "apps/products/tsconfig.app.json",
- "hash": "47e4f8225ea7c019c84f7c5f1809237f34c7b0a9"
+ "hash": "24df375823651e81665dd43e74f8cbd86637b00f"
},
{
"file": "apps/products/tsconfig.editor.json",
- "hash": "20c4afdbf437457984afcb236d4b5e588aec858a"
+ "hash": "1bf3c0a7455d9f0731999e8ef4486967bbf3c0aa"
},
{
"file": "apps/products/tsconfig.json",
- "hash": "4ef4491ede9de763393e9ab15febd9091fbb1ca5"
+ "hash": "0eb8182debea7532f14b80b7c289ab7b66fc2aef"
},
{
"file": "apps/products/tsconfig.spec.json",
- "hash": "bc90aab0938ab8ffbc32039db0751502460d8794"
+ "hash": "b6347c6f667d5628388e11529377a125758fbe61"
}
]
}
@@ -1040,12 +1042,12 @@
"hash": "37371cb04b9f1986d952499cdf9613c9d5d8ca8c"
},
{
- "file": "apps/cart/jest.config.js",
- "hash": "bc0caa77b0c4f8593bd05bd8c52ec4e75a0bbbc8"
+ "file": "apps/cart/jest.config.ts",
+ "hash": "af92cac53c45ca46b882c00a5f87d486a2755986"
},
{
"file": "apps/cart/project.json",
- "hash": "486a43541949283d79b3cc4fc446641f32598096"
+ "hash": "4a26f9eff1fa418de3843ed2e23f6109f1ae64fc"
},
{
"file": "apps/cart/src/_redirects",
@@ -1058,7 +1060,7 @@
},
{
"file": "apps/cart/src/app/app.tsx",
- "hash": "6da2083c9105390d673a1b26622e6953dc1f3e47",
+ "hash": "4206822dc52f06828ef3192e385bad60262d8a40",
"deps": ["npm:react-router-dom", "shared-header", "cart-cart-page"]
},
{
@@ -1067,11 +1069,11 @@
},
{
"file": "apps/cart/src/environments/environment.prod.ts",
- "hash": "3612073bc31cd4c1f5d6cbb00318521e9a61bd8a"
+ "hash": "c9669790be176ac85a5d8c11278875c2f52dc507"
},
{
"file": "apps/cart/src/environments/environment.ts",
- "hash": "d9370e924b51bc67ecddee7fc3b6693681a324b6"
+ "hash": "7ed83767fff25adfed19d52b2821a432f8ed18b1"
},
{
"file": "apps/cart/src/favicon.ico",
@@ -1083,7 +1085,7 @@
},
{
"file": "apps/cart/src/main.tsx",
- "hash": "778281c772cc09a87375299eaba2f8be0c940b37",
+ "hash": "7991369e387a2b974b678a86c6eb006fd9757d8e",
"deps": ["npm:react-dom", "npm:react-router-dom"]
},
{
@@ -1097,7 +1099,7 @@
},
{
"file": "apps/cart/tsconfig.app.json",
- "hash": "eeaffc3e153035823dd77eef7bbbd46fb742a997"
+ "hash": "ce67a8f6f0c3345266081568fbe122381c7b82a2"
},
{
"file": "apps/cart/tsconfig.json",
@@ -1105,7 +1107,7 @@
},
{
"file": "apps/cart/tsconfig.spec.json",
- "hash": "ced70a327f2a70caa5ab84f33561b415a51cb60f"
+ "hash": "99a0ce08de0901250105669917e582aba6e8697e"
}
]
}
@@ -1200,20 +1202,12 @@
],
"shared-assets": [],
"shared-header": [
- {
- "source": "shared-header",
- "target": "shared-jsxify",
- "type": "static"
- }
+ { "source": "shared-header", "target": "shared-jsxify", "type": "static" }
],
"shared-jsxify": [],
"shared-styles": [],
"products-e2e": [
- {
- "source": "products-e2e",
- "target": "products",
- "type": "implicit"
- },
+ { "source": "products-e2e", "target": "products", "type": "implicit" },
{
"source": "products-e2e",
"target": "shared-e2e-utils",
@@ -1221,33 +1215,13 @@
}
],
"cart-e2e": [
- {
- "source": "cart-e2e",
- "target": "cart",
- "type": "implicit"
- },
- {
- "source": "cart-e2e",
- "target": "shared-e2e-utils",
- "type": "static"
- }
+ { "source": "cart-e2e", "target": "cart", "type": "implicit" },
+ { "source": "cart-e2e", "target": "shared-e2e-utils", "type": "static" }
],
"products": [
- {
- "source": "products",
- "target": "shared-assets",
- "type": "implicit"
- },
- {
- "source": "products",
- "target": "shared-styles",
- "type": "implicit"
- },
- {
- "source": "products",
- "target": "shared-header",
- "type": "static"
- },
+ { "source": "products", "target": "shared-assets", "type": "implicit" },
+ { "source": "products", "target": "shared-styles", "type": "implicit" },
+ { "source": "products", "target": "shared-header", "type": "static" },
{
"source": "products",
"target": "products-home-page",
@@ -1260,32 +1234,13 @@
}
],
"cart": [
- {
- "source": "cart",
- "target": "shared-assets",
- "type": "implicit"
- },
- {
- "source": "cart",
- "target": "shared-styles",
- "type": "implicit"
- },
- {
- "source": "cart",
- "target": "shared-header",
- "type": "static"
- },
- {
- "source": "cart",
- "target": "cart-cart-page",
- "type": "static"
- }
+ { "source": "cart", "target": "shared-assets", "type": "implicit" },
+ { "source": "cart", "target": "shared-styles", "type": "implicit" },
+ { "source": "cart", "target": "shared-header", "type": "static" },
+ { "source": "cart", "target": "cart-cart-page", "type": "static" }
]
},
- "layout": {
- "appsDir": "apps",
- "libsDir": "libs"
- },
+ "layout": { "appsDir": "apps", "libsDir": "libs" },
"affected": [],
"focus": null,
"groupByFolder": false,
diff --git a/graph/client/src/assets/graphs/nx.json b/graph/client/src/assets/graphs/nx.json
deleted file mode 100644
index 612f464231..0000000000
--- a/graph/client/src/assets/graphs/nx.json
+++ /dev/null
@@ -1,19511 +0,0 @@
-{
- "hash": "2d53d2490938ee660d5112f414e4cc62e56b53a257499d1a4ec4d5583439a0e1",
- "projects": [
- {
- "name": "nx-dev-feature-package-schema-viewer",
- "type": "lib",
- "data": {
- "tags": ["scope:nx-dev", "type:feature"],
- "root": "nx-dev/feature-package-schema-viewer",
- "files": [
- {
- "file": "nx-dev/feature-package-schema-viewer/.babelrc",
- "hash": "c7d82affe0e90d868edbd36d57d12b43059dd2ff"
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/.eslintrc.json",
- "hash": "734ddaceea447738208c9519158ad6b3062f3929"
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/jest.config.ts",
- "hash": "956da0c9404f46b7988136b1c2a0c318a006ca79"
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/project.json",
- "hash": "813f3956e1f28e1e38f7727c7438981e52d09bee"
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/README.md",
- "hash": "b3eb6f32e80ccc5348f95d328247c55da2d1f15d"
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/src/index.ts",
- "hash": "13ce8e872a9a595fd301acbc2050db691a09d292"
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/src/lib/content.tsx",
- "hash": "72a0b4e7d3c1d049c21c3a60443dfee1d667634e",
- "deps": [
- "npm:@heroicons/react",
- "nx-dev-data-access-packages",
- "nx-dev-models-package",
- "nx-dev-ui-markdoc",
- "npm:next",
- "npm:react"
- ]
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/src/lib/examples.ts",
- "hash": "a5e235c2705e09c33828060405df381f087d1bd2",
- "deps": ["nx-dev-data-access-packages", "nx-dev-models-package"]
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/src/lib/get-schema-view-model.ts",
- "hash": "ec86847566db7a716a786a3561325d5f0887861e",
- "deps": ["nx-dev-data-access-packages", "nx-dev-models-package"]
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/src/lib/package-schema-list.tsx",
- "hash": "8ef1b3c7fc89de963e390fa9e5cfbed6fc177d33",
- "deps": [
- "nx-dev-models-package",
- "nx-dev-ui-common",
- "nx-dev-ui-markdoc",
- "npm:classnames",
- "npm:next-seo",
- "npm:next",
- "npm:react"
- ]
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/src/lib/package-schema-viewer.tsx",
- "hash": "d8c6f97f0e923a4ee1ad50d1cf7e5eb647daaa5d",
- "deps": [
- "nx-dev-ui-common",
- "npm:classnames",
- "npm:next-seo",
- "npm:next"
- ]
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/src/lib/parameter-metadata.ts",
- "hash": "95d7f6faee4171e707528c558a0e0b7aa8394267",
- "deps": ["nx-dev-models-package"]
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/src/lib/parameter-view.tsx",
- "hash": "ad8722e793b20ed60645d778e33877a3504f5eed",
- "deps": [
- "nx-dev-data-access-packages",
- "nx-dev-models-package",
- "nx-dev-ui-markdoc"
- ]
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/src/lib/schema-editor.tsx",
- "hash": "dfc25c067b9aef3bb358fb82de81394198e9f859",
- "deps": [
- "npm:@monaco-editor/react",
- "nx-dev-models-package",
- "npm:react"
- ]
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/src/lib/schema-request.models.ts",
- "hash": "3d22f41a5bed3da020ccd59ec68cb8fdc6ec77c5",
- "deps": ["nx-dev-models-package"]
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/src/lib/schema-viewer.tsx",
- "hash": "380944abd082e500013d2d9800af078775ab5113",
- "deps": ["nx-dev-data-access-packages", "nx-dev-models-package"]
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/src/lib/slugify.utils.ts",
- "hash": "8690cf89206cc3c169fb340d19b605bafb25dede"
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/src/lib/stage.ts",
- "hash": "5478ea9b460cec65341295fb6c49b88429b6cf62",
- "deps": ["nx-dev-models-package"]
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/src/lib/types/get-enum.ts",
- "hash": "c3f955e5ced0b6589f3ca625ff0bee00b92f827f",
- "deps": ["nx-dev-data-access-packages", "nx-dev-models-package"]
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/src/lib/types/join-types.tsx",
- "hash": "3761f764b0541e9e78cbc70df3f7c4c3e2b575be"
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/src/lib/types/type-inference.ts",
- "hash": "fc5ca154bba1c112b0fdc9c54ce57274e7b95e8e",
- "deps": ["nx-dev-models-package"]
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/src/lib/types/type.tsx",
- "hash": "30adccda6a6a88cbcdff17eb8ffb35860520bde3",
- "deps": [
- "npm:@heroicons/react",
- "nx-dev-data-access-packages",
- "nx-dev-models-package",
- "npm:react"
- ]
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/src/lib/ui/headings.tsx",
- "hash": "c5d936c29091a534a880c232f6de7fba1e96a668",
- "deps": ["npm:@heroicons/react"]
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/src/lib/ui/package-reference.tsx",
- "hash": "aa4b911494c233dadba9cfbf6ec279badd336fbb",
- "deps": [
- "npm:@heroicons/react",
- "nx-dev-models-package",
- "nx-dev-ui-markdoc",
- "npm:next",
- "npm:react"
- ]
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/tsconfig.json",
- "hash": "3230750a884f72a8d552144dcb423f1ed5899fff"
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/tsconfig.lib.json",
- "hash": "41c903f7c08bc9f2af11b75972cce10fe6d4b4cc"
- },
- {
- "file": "nx-dev/feature-package-schema-viewer/tsconfig.spec.json",
- "hash": "a85d573fcf6c629c85c96fcf377be0248588576f"
- }
- ]
- }
- },
- {
- "name": "make-angular-cli-faster",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/make-angular-cli-faster",
- "files": [
- {
- "file": "packages/make-angular-cli-faster/.eslintrc.json",
- "hash": "9afd5d63f09f7d350b479cea3984ab4d8920d964"
- },
- {
- "file": "packages/make-angular-cli-faster/package.json",
- "hash": "1d350d77194ea8ffb7fe1c34f7f8b00afc43adf2",
- "deps": [
- "devkit",
- "workspace",
- "npm:enquirer",
- "nx",
- "npm:semver",
- "npm:tmp",
- "npm:yargs",
- "npm:yargs-parser"
- ]
- },
- {
- "file": "packages/make-angular-cli-faster/project.json",
- "hash": "ffe545310b2dc55f828ef3f4802c6c43d996ffbf"
- },
- {
- "file": "packages/make-angular-cli-faster/README.md",
- "hash": "367197abf75cf30264cbdb9c2241d11a5a42386b"
- },
- {
- "file": "packages/make-angular-cli-faster/src/index.ts",
- "hash": "4aef4e4c08557f878ab0d7144e58b97b01cfd983",
- "deps": ["npm:yargs-parser"]
- },
- {
- "file": "packages/make-angular-cli-faster/src/utilities/make-angular-cli-faster.ts",
- "hash": "77b3c57cf7c5b169eeeebbee2d9069ccdfae2a58",
- "deps": ["devkit"]
- },
- {
- "file": "packages/make-angular-cli-faster/src/utilities/migration.ts",
- "hash": "1a868ba0baa2fc73ebdb1224f3bb8fc0b7cb144e",
- "deps": ["devkit", "npm:enquirer", "nx", "npm:semver"]
- },
- {
- "file": "packages/make-angular-cli-faster/src/utilities/nx-cloud.ts",
- "hash": "4d49363d1486ff5b0c1e7ca9f4217adc7cae888e",
- "deps": ["devkit", "npm:enquirer"]
- },
- {
- "file": "packages/make-angular-cli-faster/src/utilities/package-manager.ts",
- "hash": "adf53e0d25bf8b04b2eb7ff5cc7a8c6ac1539c69",
- "deps": ["devkit", "nx", "npm:semver"]
- },
- {
- "file": "packages/make-angular-cli-faster/src/utilities/types.ts",
- "hash": "46c95cc05cf6ffbb0679babaf4ae74b5aeb061ed"
- },
- {
- "file": "packages/make-angular-cli-faster/tsconfig.json",
- "hash": "58bd2c97a66f5e5ea5d05c8a5709ee79bad02094"
- },
- {
- "file": "packages/make-angular-cli-faster/tsconfig.lib.json",
- "hash": "037d796f286235dce67c9e648d2d42adcc61ccd7"
- },
- {
- "file": "packages/make-angular-cli-faster/tsconfig.spec.json",
- "hash": "559410b96af6781ac3e7cf348bf4a710b4009481"
- }
- ]
- }
- },
- {
- "name": "create-nx-workspace",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/create-nx-workspace",
- "files": [
- {
- "file": "packages/create-nx-workspace/.eslintrc.json",
- "hash": "ff47ddace4d5155dd8a9f2542fda521d497ba0e7"
- },
- {
- "file": "packages/create-nx-workspace/bin/ci.ts",
- "hash": "a559af7aa0e9a91df4f0f53c4e925bf56d889755"
- },
- {
- "file": "packages/create-nx-workspace/bin/create-nx-workspace.ts",
- "hash": "c967c779adcf2c4b52415d7fdc99b4001d88d289",
- "deps": ["npm:enquirer", "npm:tmp", "npm:yargs", "npm:chalk"]
- },
- {
- "file": "packages/create-nx-workspace/bin/decorator.ts",
- "hash": "10bdbeffd18343095a0faf8997a4ca387a75ebe2",
- "deps": ["npm:chalk"]
- },
- {
- "file": "packages/create-nx-workspace/bin/default-base.ts",
- "hash": "e94f951707b1d051d2bb0af8c4c2d932351c3462"
- },
- {
- "file": "packages/create-nx-workspace/bin/git.spec.ts",
- "hash": "e38214c6d3fbe0e8c74a8c30e70832dacfd8627b"
- },
- {
- "file": "packages/create-nx-workspace/bin/git.ts",
- "hash": "73a45c1200a1b91bec8975bf0068df844515b503"
- },
- {
- "file": "packages/create-nx-workspace/bin/index.ts",
- "hash": "0f88bbe6c12e17c601ce1918a9cfc4fed4bf444d"
- },
- {
- "file": "packages/create-nx-workspace/bin/output.ts",
- "hash": "8e79887e18740fdbe7a3e269d3809fd4c2287726",
- "deps": ["npm:chalk"]
- },
- {
- "file": "packages/create-nx-workspace/bin/package-manager.ts",
- "hash": "a7c7585f862753d099e25c0aec552c808aa5a121"
- },
- {
- "file": "packages/create-nx-workspace/bin/shared.ts",
- "hash": "cd5178f5f9d0c0da18c02cffa8ef895ffb43455c",
- "deps": ["npm:flat"]
- },
- {
- "file": "packages/create-nx-workspace/bin/utils.ts",
- "hash": "e4de827f90f0213a95eff24df15ea2a05bb3d378"
- },
- {
- "file": "packages/create-nx-workspace/bin/validate-npm-package.ts",
- "hash": "afe1f460367d5eb894e3b36ae3b5ca5bee7652b8"
- },
- {
- "file": "packages/create-nx-workspace/jest.config.ts",
- "hash": "f452efc6372482a73cef570e0d64046a84cbda7f"
- },
- {
- "file": "packages/create-nx-workspace/package.json",
- "hash": "e4a95a9972b4a6ff912cec88d22142ba52581e52",
- "deps": [
- "npm:chalk",
- "npm:enquirer",
- "npm:flat",
- "npm:tmp",
- "npm:tslib",
- "npm:yargs"
- ]
- },
- {
- "file": "packages/create-nx-workspace/project.json",
- "hash": "bf7c6d9d0560c05b9689c3d1b751fdb3debf33b6"
- },
- {
- "file": "packages/create-nx-workspace/README.md",
- "hash": "29bb94157955c3b5f3598f2236962f40e7c95eb2"
- },
- {
- "file": "packages/create-nx-workspace/tsconfig.json",
- "hash": "58bd2c97a66f5e5ea5d05c8a5709ee79bad02094"
- },
- {
- "file": "packages/create-nx-workspace/tsconfig.lib.json",
- "hash": "1d2ddef3c1be3aa86cb55b66b9c912d3c6bf1a07"
- },
- {
- "file": "packages/create-nx-workspace/tsconfig.spec.json",
- "hash": "869c90c526a0fe7b4b32c39d3989c66259545d9a"
- }
- ]
- }
- },
- {
- "name": "nx-dev-data-access-documents",
- "type": "lib",
- "data": {
- "tags": ["scope:nx-dev", "type:data-access"],
- "root": "nx-dev/data-access-documents",
- "files": [
- {
- "file": "nx-dev/data-access-documents/.eslintrc.json",
- "hash": "9d9c0db55bb1e91c5f2e7b64a02bc6bf69fc7cb5"
- },
- {
- "file": "nx-dev/data-access-documents/jest.config.ts",
- "hash": "0dfc5a3fae7d6eefc66139840ef99d1509bc0821"
- },
- {
- "file": "nx-dev/data-access-documents/project.json",
- "hash": "f00c2e128edbd6361f5488b5109b9752200fd3e1"
- },
- {
- "file": "nx-dev/data-access-documents/README.md",
- "hash": "e0211e71a9c2d5304ee23bcb09e16fa20e9392cc"
- },
- {
- "file": "nx-dev/data-access-documents/src/index.ts",
- "hash": "714dd8766e97c8aa99790f3d48c586e00639c1af"
- },
- {
- "file": "nx-dev/data-access-documents/src/lib/documents.api.ts",
- "hash": "5a5e9a34679c4915928d5152412f41fae5569101",
- "deps": [
- "nx-dev-models-document",
- "nx-dev-ui-markdoc",
- "npm:js-yaml"
- ]
- },
- {
- "file": "nx-dev/data-access-documents/src/lib/documents.utils.spec.ts",
- "hash": "dd26dda20af3157f845ce1c2cc686859dbf223c6"
- },
- {
- "file": "nx-dev/data-access-documents/src/lib/documents.utils.ts",
- "hash": "621f2dd134cb10e7346d36e7b2f6ffcf968ac16a"
- },
- {
- "file": "nx-dev/data-access-documents/src/node.index.ts",
- "hash": "63a7501b45792f8c078a3f093bd7cfc96fe3b617"
- },
- {
- "file": "nx-dev/data-access-documents/tsconfig.json",
- "hash": "ecd9872c40282f1d71c8bd4d6a667d565fb8fcae"
- },
- {
- "file": "nx-dev/data-access-documents/tsconfig.lib.json",
- "hash": "339899f151f74604d15eb00013308b6e5e2d3db4"
- },
- {
- "file": "nx-dev/data-access-documents/tsconfig.spec.json",
- "hash": "2d1eeacb7054ff2f11ba03d8a137a88cae4e4504"
- }
- ]
- }
- },
- {
- "name": "add-nx-to-monorepo",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/add-nx-to-monorepo",
- "files": [
- {
- "file": "packages/add-nx-to-monorepo/.eslintrc.json",
- "hash": "fea46111a20ae8689af46385367f70421bb9b054"
- },
- {
- "file": "packages/add-nx-to-monorepo/jest.config.ts",
- "hash": "afbef505f1ec54cc514b99a9a17b28ae324fee9d"
- },
- {
- "file": "packages/add-nx-to-monorepo/package.json",
- "hash": "de530aac83f6a14b5341f5b59ba752fbfde546b8",
- "deps": [
- "devkit",
- "workspace",
- "npm:enquirer",
- "npm:ignore",
- "nx",
- "npm:yargs-parser"
- ]
- },
- {
- "file": "packages/add-nx-to-monorepo/project.json",
- "hash": "88f26a69b2e7bf5c3c08a8da39a42a8420804327"
- },
- {
- "file": "packages/add-nx-to-monorepo/README.md",
- "hash": "8e6554605475265843cfaed962b846dde8883ef0"
- },
- {
- "file": "packages/add-nx-to-monorepo/src/add-nx-to-monorepo.ts",
- "hash": "98e57b19d4c9397d6821093e4c155b95ba48ab4f",
- "deps": [
- "npm:enquirer",
- "npm:yargs-parser",
- "devkit",
- "npm:ignore",
- "nx"
- ]
- },
- {
- "file": "packages/add-nx-to-monorepo/tsconfig.json",
- "hash": "62ebbd946474cea997e774d20fffc4d585c184f3"
- },
- {
- "file": "packages/add-nx-to-monorepo/tsconfig.lib.json",
- "hash": "3ce6be94ee126475022d31118a12a5895185a461"
- },
- {
- "file": "packages/add-nx-to-monorepo/tsconfig.spec.json",
- "hash": "831ab6481bfec07dac66b6f62828f76f898f0edf"
- }
- ]
- }
- },
- {
- "name": "e2e-make-angular-cli-faster",
- "type": "app",
- "data": {
- "tags": [],
- "root": "e2e/make-angular-cli-faster",
- "files": [
- {
- "file": "e2e/make-angular-cli-faster/jest.config.ts",
- "hash": "a3f3c2bd6abc44a897d757fa04aeee87713c7721"
- },
- {
- "file": "e2e/make-angular-cli-faster/project.json",
- "hash": "92a8bd06a4144b0c36a72190d9cec9d5847e45a8"
- },
- {
- "file": "e2e/make-angular-cli-faster/src/make-angular-cli-faster.test.ts",
- "hash": "5c323cd9d91edf639fccd9ef7cf05ec74381c5da",
- "deps": ["e2e-utils", "nx"]
- },
- {
- "file": "e2e/make-angular-cli-faster/tsconfig.json",
- "hash": "6d5abf84832009a8c70e7a910c49f332bf1f0612"
- },
- {
- "file": "e2e/make-angular-cli-faster/tsconfig.spec.json",
- "hash": "1a24bfb0a13536cd17717808ca5609e15def438f"
- }
- ]
- }
- },
- {
- "name": "nx-dev-data-access-packages",
- "type": "lib",
- "data": {
- "tags": ["scope:nx-dev", "type:data-access"],
- "root": "nx-dev/data-access-packages",
- "files": [
- {
- "file": "nx-dev/data-access-packages/.eslintrc.json",
- "hash": "9d9c0db55bb1e91c5f2e7b64a02bc6bf69fc7cb5"
- },
- {
- "file": "nx-dev/data-access-packages/jest.config.ts",
- "hash": "450a3016749f8b99fe942ddb9bd5c0b07c821ca1"
- },
- {
- "file": "nx-dev/data-access-packages/project.json",
- "hash": "24c747121f5d7373bfdf49d3f496513ae3bf8428"
- },
- {
- "file": "nx-dev/data-access-packages/README.md",
- "hash": "724ea10b1f2986d549fafba565aed506bd1f338f"
- },
- {
- "file": "nx-dev/data-access-packages/src/index.ts",
- "hash": "fb61249db0c177e52934847bb7849c00103459d5"
- },
- {
- "file": "nx-dev/data-access-packages/src/lib/get-description-for-schema.ts",
- "hash": "38dffc3819fe811cf13e30cb582aa42aa47f0d68",
- "deps": ["nx-dev-models-package"]
- },
- {
- "file": "nx-dev/data-access-packages/src/lib/get-title-for-schema.ts",
- "hash": "b646ec1f5a1a1aeff9bdd504fc0a0eb109dbbc70",
- "deps": ["nx-dev-models-package"]
- },
- {
- "file": "nx-dev/data-access-packages/src/lib/lookup.ts",
- "hash": "780f4b62f1483c811656fcc473e540fea6dbae61",
- "deps": ["nx-dev-models-package", "npm:jsonpointer"]
- },
- {
- "file": "nx-dev/data-access-packages/src/lib/packages.api.ts",
- "hash": "7a279eea7a9f4a4667b061b51ee6f360a96fa173",
- "deps": ["nx-dev-models-document", "nx-dev-models-package"]
- },
- {
- "file": "nx-dev/data-access-packages/src/node.index.ts",
- "hash": "a1ac52490e4d653b9f9bbc59242bf081396c6c58"
- },
- {
- "file": "nx-dev/data-access-packages/tsconfig.json",
- "hash": "ecd9872c40282f1d71c8bd4d6a667d565fb8fcae"
- },
- {
- "file": "nx-dev/data-access-packages/tsconfig.lib.json",
- "hash": "339899f151f74604d15eb00013308b6e5e2d3db4"
- },
- {
- "file": "nx-dev/data-access-packages/tsconfig.spec.json",
- "hash": "47ab8641e1eb80354244403dd98568a11fef0586"
- }
- ]
- }
- },
- {
- "name": "create-nx-plugin",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/create-nx-plugin",
- "files": [
- {
- "file": "packages/create-nx-plugin/.eslintrc.json",
- "hash": "5354eb31ef70484aa27b524a2a2539801b0fb1a3"
- },
- {
- "file": "packages/create-nx-plugin/bin/create-nx-plugin.ts",
- "hash": "6c391ddc348e28d272e9790ae921839b8d710bf6",
- "deps": [
- "devkit",
- "npm:fs-extra",
- "npm:tmp",
- "npm:enquirer",
- "npm:yargs-parser"
- ]
- },
- {
- "file": "packages/create-nx-plugin/bin/detect-invoked-package-manager.ts",
- "hash": "3748ec252e6dcd9084fd5827e489f83ac7d3d201"
- },
- {
- "file": "packages/create-nx-plugin/bin/shared.ts",
- "hash": "42dc250a148038ca57d19d48d6df58123c21aa8d",
- "deps": ["devkit"]
- },
- {
- "file": "packages/create-nx-plugin/jest.config.ts",
- "hash": "df638957d10e03e31481a0b27bc699202fc70040"
- },
- {
- "file": "packages/create-nx-plugin/package.json",
- "hash": "2164173e3c31a06d340d074caec73536765268d4",
- "deps": [
- "devkit",
- "npm:enquirer",
- "npm:fs-extra",
- "nx",
- "npm:tmp",
- "npm:yargs-parser"
- ]
- },
- {
- "file": "packages/create-nx-plugin/project.json",
- "hash": "9a4ebd3c23662e3f319bbe1c43517b409e38e8e6"
- },
- {
- "file": "packages/create-nx-plugin/README.md",
- "hash": "4a1fb5c642072e4f2dbf8413ff3d266d1fa35e73"
- },
- {
- "file": "packages/create-nx-plugin/tsconfig.json",
- "hash": "58bd2c97a66f5e5ea5d05c8a5709ee79bad02094"
- },
- {
- "file": "packages/create-nx-plugin/tsconfig.lib.json",
- "hash": "1d2ddef3c1be3aa86cb55b66b9c912d3c6bf1a07"
- },
- {
- "file": "packages/create-nx-plugin/tsconfig.spec.json",
- "hash": "869c90c526a0fe7b4b32c39d3989c66259545d9a"
- }
- ]
- }
- },
- {
- "name": "eslint-plugin-nx",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/eslint-plugin-nx",
- "files": [
- {
- "file": "packages/eslint-plugin-nx/.eslintrc.json",
- "hash": "ff47ddace4d5155dd8a9f2542fda521d497ba0e7"
- },
- {
- "file": "packages/eslint-plugin-nx/jest.config.ts",
- "hash": "72ebafdd88f73dcc90b84d36ca3febf89816953f"
- },
- {
- "file": "packages/eslint-plugin-nx/package.json",
- "hash": "184ffd1d3a3c776b6fe7bac6de82f1f3ea6af9fc",
- "deps": [
- "devkit",
- "workspace",
- "npm:@typescript-eslint/utils",
- "npm:chalk",
- "npm:confusing-browser-globals",
- "npm:semver",
- "npm:@typescript-eslint/parser",
- "npm:eslint-config-prettier"
- ]
- },
- {
- "file": "packages/eslint-plugin-nx/project.json",
- "hash": "3c8cdf5ed9bca981b3c0cc37e5c48a6f9c5b3f61"
- },
- {
- "file": "packages/eslint-plugin-nx/README.md",
- "hash": "5963e726763b4a6c62d4b8bbca559ab74348b616"
- },
- {
- "file": "packages/eslint-plugin-nx/src/configs/angular-template.ts",
- "hash": "2b3f7f61b01acf2d0f989e7dd71ff80854711e03"
- },
- {
- "file": "packages/eslint-plugin-nx/src/configs/angular.ts",
- "hash": "1b197235ad3a0482ec0ba00039472ef01d405923",
- "deps": ["npm:@angular-eslint/eslint-plugin"]
- },
- {
- "file": "packages/eslint-plugin-nx/src/configs/javascript.ts",
- "hash": "23ae03ddca44371aa92e4dc33d44984c0554ceb7"
- },
- {
- "file": "packages/eslint-plugin-nx/src/configs/react-base.ts",
- "hash": "892760cd1fcf978f255b96bcce66cf05ef90c3af",
- "deps": ["npm:confusing-browser-globals"]
- },
- {
- "file": "packages/eslint-plugin-nx/src/configs/react-jsx.ts",
- "hash": "ec5778995add239466842b41ebc62afb9d1702f8"
- },
- {
- "file": "packages/eslint-plugin-nx/src/configs/react-tmp.ts",
- "hash": "1e6cae320fb6bac61848134fef90daa667587a9e"
- },
- {
- "file": "packages/eslint-plugin-nx/src/configs/react-typescript.ts",
- "hash": "f332ef226a8efa8fbe40ab754e6f23dd5cef7078"
- },
- {
- "file": "packages/eslint-plugin-nx/src/configs/typescript.ts",
- "hash": "3c0f0bbf6b9061fc48165aec7259a99af60c0278",
- "deps": ["devkit"]
- },
- {
- "file": "packages/eslint-plugin-nx/src/constants.ts",
- "hash": "16dcca79f219aed35580ac340eeccccdfa8eaf64",
- "deps": ["devkit"]
- },
- {
- "file": "packages/eslint-plugin-nx/src/index.ts",
- "hash": "052a053a43cfa9bf9e870d3f0d831bdcd1a6005c"
- },
- {
- "file": "packages/eslint-plugin-nx/src/resolve-workspace-rules.ts",
- "hash": "37d020c4ceafaf94df6a3e8e229ba90b924976ef",
- "deps": ["npm:@typescript-eslint/utils", "nx"]
- },
- {
- "file": "packages/eslint-plugin-nx/src/rules/enforce-module-boundaries.spec.ts",
- "hash": "29edb79d1602316541a985927b6bac0b60f4de33",
- "deps": [
- "devkit",
- "workspace",
- "npm:@typescript-eslint/parser",
- "npm:@typescript-eslint/utils",
- "npm:memfs",
- "nx"
- ]
- },
- {
- "file": "packages/eslint-plugin-nx/src/rules/enforce-module-boundaries.ts",
- "hash": "68fd6e6edaeabb9ab771ab7e70bb0dffa39336f0",
- "deps": [
- "devkit",
- "workspace",
- "npm:@typescript-eslint/utils",
- "nx"
- ]
- },
- {
- "file": "packages/eslint-plugin-nx/src/rules/nx-plugin-checks.ts",
- "hash": "f3ce721757e798a53989bad05c5dbe0f87ffa118",
- "deps": [
- "npm:jsonc-eslint-parser",
- "npm:@typescript-eslint/utils",
- "devkit",
- "workspace",
- "nx",
- "npm:semver"
- ]
- },
- {
- "file": "packages/eslint-plugin-nx/src/utils/ast-utils.ts",
- "hash": "d5d5f04c8efadcf9ac10c329c80a44819b772e7c",
- "deps": ["devkit", "workspace", "npm:typescript"]
- },
- {
- "file": "packages/eslint-plugin-nx/src/utils/config-utils.ts",
- "hash": "f7ef887bbfc4f2aa1ce2a1cc20f6fd906d892b42"
- },
- {
- "file": "packages/eslint-plugin-nx/src/utils/create-eslint-rule.ts",
- "hash": "68b7c15a666be6f910a8186b699713443c7b81ca",
- "deps": ["npm:@typescript-eslint/utils"]
- },
- {
- "file": "packages/eslint-plugin-nx/src/utils/project-graph-utils.ts",
- "hash": "4661ac35a81393e0eef0b85ae6964d63001bf12e",
- "deps": ["devkit", "workspace", "npm:chalk"]
- },
- {
- "file": "packages/eslint-plugin-nx/tsconfig.json",
- "hash": "58bd2c97a66f5e5ea5d05c8a5709ee79bad02094"
- },
- {
- "file": "packages/eslint-plugin-nx/tsconfig.lib.json",
- "hash": "1d2ddef3c1be3aa86cb55b66b9c912d3c6bf1a07"
- },
- {
- "file": "packages/eslint-plugin-nx/tsconfig.spec.json",
- "hash": "869c90c526a0fe7b4b32c39d3989c66259545d9a"
- }
- ]
- }
- },
- {
- "name": "nx-dev-feature-doc-viewer",
- "type": "lib",
- "data": {
- "tags": ["scope:nx-dev", "type:feature"],
- "root": "nx-dev/feature-doc-viewer",
- "files": [
- {
- "file": "nx-dev/feature-doc-viewer/.eslintrc.json",
- "hash": "734ddaceea447738208c9519158ad6b3062f3929"
- },
- {
- "file": "nx-dev/feature-doc-viewer/jest.config.ts",
- "hash": "e047e55e42a49be6f18571ed9e7eb1f6a7a64ade"
- },
- {
- "file": "nx-dev/feature-doc-viewer/project.json",
- "hash": "d1a68a1db357bd7cda8761f9b824e6fdbf237869"
- },
- {
- "file": "nx-dev/feature-doc-viewer/README.md",
- "hash": "fb159c010c890849648d1e141a945ee16541e9ac"
- },
- {
- "file": "nx-dev/feature-doc-viewer/src/index.ts",
- "hash": "36f4daaa68475ed88055ed2fde295065d3536ce4"
- },
- {
- "file": "nx-dev/feature-doc-viewer/src/lib/content.tsx",
- "hash": "19a3ed496173821dbc8d63ff650afcc01d931837",
- "deps": ["nx-dev-models-document", "nx-dev-ui-markdoc"]
- },
- {
- "file": "nx-dev/feature-doc-viewer/src/lib/doc-viewer.tsx",
- "hash": "f1310ac3a1e4d95fcdf730fe747b97f3892def3e",
- "deps": [
- "nx-dev-models-document",
- "nx-dev-models-menu",
- "nx-dev-ui-common",
- "npm:classnames",
- "npm:next-seo",
- "npm:next"
- ]
- },
- {
- "file": "nx-dev/feature-doc-viewer/tsconfig.json",
- "hash": "3230750a884f72a8d552144dcb423f1ed5899fff"
- },
- {
- "file": "nx-dev/feature-doc-viewer/tsconfig.lib.json",
- "hash": "1672120ed9815bb1c6596cff06605c5bf670e0ca"
- },
- {
- "file": "nx-dev/feature-doc-viewer/tsconfig.spec.json",
- "hash": "46f9467f3bd81cb7ec6abc5dcec5c1d35c42f28a"
- }
- ]
- }
- },
- {
- "name": "nx-dev-feature-analytics",
- "type": "lib",
- "data": {
- "tags": ["scope:nx-dev", "type:feature"],
- "root": "nx-dev/feature-analytics",
- "files": [
- {
- "file": "nx-dev/feature-analytics/.eslintrc.json",
- "hash": "734ddaceea447738208c9519158ad6b3062f3929"
- },
- {
- "file": "nx-dev/feature-analytics/jest.config.ts",
- "hash": "87f26c4bd5e0f4cea7ae37cd2490a548e9ba8749"
- },
- {
- "file": "nx-dev/feature-analytics/project.json",
- "hash": "cb394bdb03ad9c2dbf1177ed4adb8c95f3319c4f"
- },
- {
- "file": "nx-dev/feature-analytics/README.md",
- "hash": "fac268ef6865beeaac248a3b144d64af5f645d96"
- },
- {
- "file": "nx-dev/feature-analytics/src/index.ts",
- "hash": "b1b2eaad3a06b98d5e62f1f5594262dd74e578a5"
- },
- {
- "file": "nx-dev/feature-analytics/src/lib/google-analytics.ts",
- "hash": "01362efa6e2d2da661b13b5f34fc3463fadefb07"
- },
- {
- "file": "nx-dev/feature-analytics/src/lib/gtag.ts",
- "hash": "8b23431101b80c76e716cee8f801787f7fd54fde"
- },
- {
- "file": "nx-dev/feature-analytics/tsconfig.json",
- "hash": "3230750a884f72a8d552144dcb423f1ed5899fff"
- },
- {
- "file": "nx-dev/feature-analytics/tsconfig.lib.json",
- "hash": "ad41401e71c05059f162a6729f494b2e64945ad9"
- },
- {
- "file": "nx-dev/feature-analytics/tsconfig.spec.json",
- "hash": "46f9467f3bd81cb7ec6abc5dcec5c1d35c42f28a"
- }
- ]
- }
- },
- {
- "name": "nx-dev-data-access-menu",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "nx-dev/data-access-menu",
- "files": [
- {
- "file": "nx-dev/data-access-menu/.babelrc",
- "hash": "cf7ddd99c615a064ac18eb3109eee4f394ab1faf"
- },
- {
- "file": "nx-dev/data-access-menu/.eslintrc.json",
- "hash": "9d9c0db55bb1e91c5f2e7b64a02bc6bf69fc7cb5"
- },
- {
- "file": "nx-dev/data-access-menu/jest.config.ts",
- "hash": "55c48c970e8f04e3afddc39f2ed485dc3da54401"
- },
- {
- "file": "nx-dev/data-access-menu/project.json",
- "hash": "c0c3667a99a37958a72b0301e7a68a74c34f7e03"
- },
- {
- "file": "nx-dev/data-access-menu/README.md",
- "hash": "1d96ff10d36927fae85e8982c0662145f74dba0b"
- },
- {
- "file": "nx-dev/data-access-menu/src/index.ts",
- "hash": "c9cab6d72f001383d3649ae897bb13190123751d"
- },
- {
- "file": "nx-dev/data-access-menu/src/lib/menu.api.ts",
- "hash": "66c4b1ca2f1fc70ba2aad02f08754da7017f1931",
- "deps": ["nx-dev-models-document", "nx-dev-models-menu"]
- },
- {
- "file": "nx-dev/data-access-menu/src/lib/menu.utils.ts",
- "hash": "7ea98c3138fc53d5bc6c6b38970ea74a62d11925",
- "deps": ["nx-dev-models-document", "nx-dev-models-menu"]
- },
- {
- "file": "nx-dev/data-access-menu/tsconfig.json",
- "hash": "e258886ffc933cca0326ceb2ee4fde881378131b"
- },
- {
- "file": "nx-dev/data-access-menu/tsconfig.lib.json",
- "hash": "b3f90c22fea8cc001776966784f9b8f1ce71a5ba"
- },
- {
- "file": "nx-dev/data-access-menu/tsconfig.spec.json",
- "hash": "ff08addd60ff581234ec9423d2bb90f31d8166e8"
- }
- ]
- }
- },
- {
- "name": "e2e-add-nx-to-monorepo",
- "type": "app",
- "data": {
- "tags": [],
- "root": "e2e/add-nx-to-monorepo",
- "files": [
- {
- "file": "e2e/add-nx-to-monorepo/jest.config.ts",
- "hash": "cb1dea1f21be9ab44591f110ceca7aeda84a0de1"
- },
- {
- "file": "e2e/add-nx-to-monorepo/project.json",
- "hash": "7cfa0663599bcf54b6a711ebd471ad6791095ac0"
- },
- {
- "file": "e2e/add-nx-to-monorepo/src/add-nx-to-monorepo.test.ts",
- "hash": "8168208eb61a1217ec95a135ffb75b0c2c49118a",
- "deps": ["e2e-utils", "nx"]
- },
- {
- "file": "e2e/add-nx-to-monorepo/tsconfig.json",
- "hash": "6d5abf84832009a8c70e7a910c49f332bf1f0612"
- },
- {
- "file": "e2e/add-nx-to-monorepo/tsconfig.spec.json",
- "hash": "1a24bfb0a13536cd17717808ca5609e15def438f"
- }
- ]
- }
- },
- {
- "name": "e2e-angular-extensions",
- "type": "app",
- "data": {
- "tags": [],
- "root": "e2e/angular-extensions",
- "files": [
- {
- "file": "e2e/angular-extensions/jest.config.ts",
- "hash": "c965ef62353312d1ab2c971dc3638006a18286ae"
- },
- {
- "file": "e2e/angular-extensions/project.json",
- "hash": "1fadc931e522d5d96a33e23ece9d94f366fa654b"
- },
- {
- "file": "e2e/angular-extensions/src/misc.test.ts",
- "hash": "901e0f576c4330698777f8159aec2b0adc63103f",
- "deps": ["e2e-utils", "workspace", "npm:cypress", "cypress"]
- },
- {
- "file": "e2e/angular-extensions/src/ngrx.test.ts",
- "hash": "bed2564b8ea850a224c0a510085d4459cf205ac4",
- "deps": ["e2e-utils"]
- },
- {
- "file": "e2e/angular-extensions/src/tailwind.test.ts",
- "hash": "0be47652100db7bf2e2be38d5768a9132911525b",
- "deps": [
- "e2e-utils",
- "angular",
- "npm:@angular/core",
- "npm:@angular/common",
- "npm:@angular/platform-browser"
- ]
- },
- {
- "file": "e2e/angular-extensions/tsconfig.json",
- "hash": "6d5abf84832009a8c70e7a910c49f332bf1f0612"
- },
- {
- "file": "e2e/angular-extensions/tsconfig.spec.json",
- "hash": "1a24bfb0a13536cd17717808ca5609e15def438f"
- }
- ]
- }
- },
- {
- "name": "nx-dev-models-document",
- "type": "lib",
- "data": {
- "tags": ["scope:nx-dev", "type:util"],
- "root": "nx-dev/models-document",
- "files": [
- {
- "file": "nx-dev/models-document/.babelrc",
- "hash": "cf7ddd99c615a064ac18eb3109eee4f394ab1faf"
- },
- {
- "file": "nx-dev/models-document/.eslintrc.json",
- "hash": "9d9c0db55bb1e91c5f2e7b64a02bc6bf69fc7cb5"
- },
- {
- "file": "nx-dev/models-document/jest.config.ts",
- "hash": "d1963365bc3de373cf02af29138301c818961f60"
- },
- {
- "file": "nx-dev/models-document/project.json",
- "hash": "a57af5018d02fdb32806f5e330d09a22c87a817c"
- },
- {
- "file": "nx-dev/models-document/README.md",
- "hash": "a2c826fedc405769a54006060b271b544fd7cac2"
- },
- {
- "file": "nx-dev/models-document/src/index.ts",
- "hash": "e6fdfbe1101caf009d094cef6869254ca07dc74e"
- },
- {
- "file": "nx-dev/models-document/src/lib/documents.models.ts",
- "hash": "563616cdcc508909d72a93e0c75df51e0643af3f"
- },
- {
- "file": "nx-dev/models-document/tsconfig.json",
- "hash": "62ebbd946474cea997e774d20fffc4d585c184f3"
- },
- {
- "file": "nx-dev/models-document/tsconfig.lib.json",
- "hash": "5c589aef9e7c76c6bd9a4eea2464ea8a75508919"
- },
- {
- "file": "nx-dev/models-document/tsconfig.spec.json",
- "hash": "a85d573fcf6c629c85c96fcf377be0248588576f"
- }
- ]
- }
- },
- {
- "name": "nx-dev-ui-sponsor-card",
- "type": "lib",
- "data": {
- "tags": ["scope:nx-dev", "type:ui"],
- "root": "nx-dev/ui-sponsor-card",
- "files": [
- {
- "file": "nx-dev/ui-sponsor-card/.eslintrc.json",
- "hash": "734ddaceea447738208c9519158ad6b3062f3929"
- },
- {
- "file": "nx-dev/ui-sponsor-card/jest.config.ts",
- "hash": "44863a47c89baea3da778132b323ed409ea9bf85"
- },
- {
- "file": "nx-dev/ui-sponsor-card/project.json",
- "hash": "59e14af4655fd1aa33f6f44e9da26f035ac59a64"
- },
- {
- "file": "nx-dev/ui-sponsor-card/README.md",
- "hash": "d51b6da378bfc6357026b2ce4401fa306fbd8ff8"
- },
- {
- "file": "nx-dev/ui-sponsor-card/src/index.ts",
- "hash": "4d7636bd6bcaac407e1a6d4d7aefaf3b8ea3ce9a"
- },
- {
- "file": "nx-dev/ui-sponsor-card/src/lib/sponsor-card.spec.tsx",
- "hash": "71913f1a590ca5c457eea17f3d88a1a5f3f158f5",
- "deps": ["npm:@testing-library/react"]
- },
- {
- "file": "nx-dev/ui-sponsor-card/src/lib/sponsor-card.tsx",
- "hash": "b3c7decf56336b9c9df5e9978ef311d4f39ec824",
- "deps": ["npm:next"]
- },
- {
- "file": "nx-dev/ui-sponsor-card/test-setup.ts",
- "hash": "2ab2ad075b06b962f43a56d2da571379e91fabe5"
- },
- {
- "file": "nx-dev/ui-sponsor-card/tsconfig.json",
- "hash": "3230750a884f72a8d552144dcb423f1ed5899fff"
- },
- {
- "file": "nx-dev/ui-sponsor-card/tsconfig.lib.json",
- "hash": "3b5302ca8e44c1749ae211f00c5e0e15deb69412"
- },
- {
- "file": "nx-dev/ui-sponsor-card/tsconfig.spec.json",
- "hash": "46f9467f3bd81cb7ec6abc5dcec5c1d35c42f28a"
- }
- ]
- }
- },
- {
- "name": "e2e-storybook-angular",
- "type": "app",
- "data": {
- "tags": [],
- "root": "e2e/storybook-angular",
- "files": [
- {
- "file": "e2e/storybook-angular/jest.config.ts",
- "hash": "f29da5f0b7f58ba5d5ad69ebfc3e81f9bbe64fa0"
- },
- {
- "file": "e2e/storybook-angular/project.json",
- "hash": "345482e1e5fb008d82c8ac82b4f9bc1b790cec81"
- },
- {
- "file": "e2e/storybook-angular/src/storybook-angular.test.ts",
- "hash": "95535ddd5038fdec6b7e36cb37e82dd478a0b3ae",
- "deps": [
- "e2e-utils",
- "npm:react",
- "npm:@storybook/react",
- "npm:@storybook/angular",
- "npm:@angular/core"
- ]
- },
- {
- "file": "e2e/storybook-angular/tsconfig.json",
- "hash": "6d5abf84832009a8c70e7a910c49f332bf1f0612"
- },
- {
- "file": "e2e/storybook-angular/tsconfig.spec.json",
- "hash": "1a24bfb0a13536cd17717808ca5609e15def438f"
- }
- ]
- }
- },
- {
- "name": "nx-dev-feature-search",
- "type": "lib",
- "data": {
- "tags": ["scope:nx-dev", "type:feature"],
- "root": "nx-dev/feature-search",
- "files": [
- {
- "file": "nx-dev/feature-search/.eslintrc.json",
- "hash": "734ddaceea447738208c9519158ad6b3062f3929"
- },
- {
- "file": "nx-dev/feature-search/jest.config.ts",
- "hash": "dd11a03d60495c16dc9a56e21f77067306b3d3e6"
- },
- {
- "file": "nx-dev/feature-search/project.json",
- "hash": "5e5e922eaf60378ff002abec04a763d7288cb53d"
- },
- {
- "file": "nx-dev/feature-search/README.md",
- "hash": "4cc6aa1c66180342c4c54ba42f7ae1aa2ea661b9"
- },
- {
- "file": "nx-dev/feature-search/src/index.ts",
- "hash": "020b270945095a7e3f4276359017b29f77af9c8a"
- },
- {
- "file": "nx-dev/feature-search/src/lib/algolia-search.global.css",
- "hash": "9bfc2418c54a728daaac13fb7a7b8e107ef61d7f"
- },
- {
- "file": "nx-dev/feature-search/src/lib/algolia-search.tsx",
- "hash": "9b8b63b18fa342c02bd2f29dd5ca6dd125ab5101",
- "deps": [
- "npm:@docsearch/react",
- "npm:@heroicons/react",
- "npm:next",
- "npm:react",
- "npm:react-dom"
- ]
- },
- {
- "file": "nx-dev/feature-search/tsconfig.json",
- "hash": "3230750a884f72a8d552144dcb423f1ed5899fff"
- },
- {
- "file": "nx-dev/feature-search/tsconfig.lib.json",
- "hash": "1672120ed9815bb1c6596cff06605c5bf670e0ca"
- },
- {
- "file": "nx-dev/feature-search/tsconfig.spec.json",
- "hash": "46f9467f3bd81cb7ec6abc5dcec5c1d35c42f28a"
- }
- ]
- }
- },
- {
- "name": "nx-dev-models-package",
- "type": "lib",
- "data": {
- "tags": ["scope:nx-dev", "type:util"],
- "root": "nx-dev/models-package",
- "files": [
- {
- "file": "nx-dev/models-package/.babelrc",
- "hash": "cf7ddd99c615a064ac18eb3109eee4f394ab1faf"
- },
- {
- "file": "nx-dev/models-package/.eslintrc.json",
- "hash": "9d9c0db55bb1e91c5f2e7b64a02bc6bf69fc7cb5"
- },
- {
- "file": "nx-dev/models-package/jest.config.ts",
- "hash": "44aa51b9a7d94e83ef05a4b6c4bbd61c382a62b7"
- },
- {
- "file": "nx-dev/models-package/project.json",
- "hash": "f635041fef4e3c2ce52bb0346c2d3c63d0f60fde"
- },
- {
- "file": "nx-dev/models-package/README.md",
- "hash": "f36cf13ba61a62c8e6e276deda847fcd8ed73858"
- },
- {
- "file": "nx-dev/models-package/src/index.ts",
- "hash": "ab9551a1fb989d415d1aa4f4e8520f84822c60db"
- },
- {
- "file": "nx-dev/models-package/src/lib/json-schema.draft-07.json",
- "hash": "ccbd25472090ea79d8c3b20c6d87e63cf8d17fda"
- },
- {
- "file": "nx-dev/models-package/src/lib/json-schema.models.ts",
- "hash": "5c9857c69b24eb06d4d320ee758827413d23c700"
- },
- {
- "file": "nx-dev/models-package/src/lib/package.models.ts",
- "hash": "ab5844dd752e25b7a73011bcf3348a208838745a"
- },
- {
- "file": "nx-dev/models-package/tsconfig.json",
- "hash": "62ebbd946474cea997e774d20fffc4d585c184f3"
- },
- {
- "file": "nx-dev/models-package/tsconfig.lib.json",
- "hash": "5c589aef9e7c76c6bd9a4eea2464ea8a75508919"
- },
- {
- "file": "nx-dev/models-package/tsconfig.spec.json",
- "hash": "a85d573fcf6c629c85c96fcf377be0248588576f"
- }
- ]
- }
- },
- {
- "name": "nx-dev-ui-member-card",
- "type": "lib",
- "data": {
- "tags": ["scope:nx-dev", "type:ui"],
- "root": "nx-dev/ui-member-card",
- "files": [
- {
- "file": "nx-dev/ui-member-card/.eslintrc.json",
- "hash": "734ddaceea447738208c9519158ad6b3062f3929"
- },
- {
- "file": "nx-dev/ui-member-card/jest.config.ts",
- "hash": "c3006cb7bf222988430b609f0f7d726bce3f076c"
- },
- {
- "file": "nx-dev/ui-member-card/project.json",
- "hash": "bcc08cbe1ef5dfa2ede0b97c7f44181b09f473a9"
- },
- {
- "file": "nx-dev/ui-member-card/README.md",
- "hash": "1b9e231baf2c3900b406b3ea99c2670ed4b3e942"
- },
- {
- "file": "nx-dev/ui-member-card/src/index.ts",
- "hash": "903ed7cb339718e2447544f4d7fe0da9a3313ef3"
- },
- {
- "file": "nx-dev/ui-member-card/src/lib/member-card.spec.tsx",
- "hash": "5eaff096860243b9aefea5446d7799b9bdc6dfca",
- "deps": ["npm:@testing-library/react"]
- },
- {
- "file": "nx-dev/ui-member-card/src/lib/member-card.tsx",
- "hash": "84f5a5f1cf8e663c59d990637c6f48dfae4df5c0",
- "deps": ["npm:next"]
- },
- {
- "file": "nx-dev/ui-member-card/test-setup.ts",
- "hash": "2ab2ad075b06b962f43a56d2da571379e91fabe5"
- },
- {
- "file": "nx-dev/ui-member-card/tsconfig.json",
- "hash": "3230750a884f72a8d552144dcb423f1ed5899fff"
- },
- {
- "file": "nx-dev/ui-member-card/tsconfig.lib.json",
- "hash": "9f379952904394a85d5d2aa1ff7ddd432df24ff0"
- },
- {
- "file": "nx-dev/ui-member-card/tsconfig.spec.json",
- "hash": "46f9467f3bd81cb7ec6abc5dcec5c1d35c42f28a"
- }
- ]
- }
- },
- {
- "name": "react-native",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/react-native",
- "files": [
- {
- "file": "packages/react-native/.eslintrc.json",
- "hash": "3c1f9d1789c85a4204a86b7362ba5d84d489d784"
- },
- {
- "file": "packages/react-native/executors.json",
- "hash": "214e05a25a6df9344302291762885f082447b8e3"
- },
- {
- "file": "packages/react-native/generators.json",
- "hash": "4e4e8b33821c55e908804a2ca2b66a96e24c8da1"
- },
- {
- "file": "packages/react-native/index.ts",
- "hash": "18ca544f227fe7acdca2b67b39956b3650573e37"
- },
- {
- "file": "packages/react-native/jest.config.ts",
- "hash": "5e08a7f8f73ebc78576c266a4c9e4409e3643087"
- },
- {
- "file": "packages/react-native/migrations.json",
- "hash": "38100ab6404631a7c36f6898e9c9c9a92a7b74dd"
- },
- {
- "file": "packages/react-native/migrations.spec.ts",
- "hash": "ef3f74488bb79c7da12f7d0c10fad3facbeb08f8"
- },
- {
- "file": "packages/react-native/nx_post_install.rb",
- "hash": "62bce6ae0a99cb4994963d340185dd4a6831de3b"
- },
- {
- "file": "packages/react-native/package.json",
- "hash": "436b5d21bc2aa3443b512d78d331539c9206ee7f",
- "deps": [
- "detox",
- "devkit",
- "jest",
- "linter",
- "react",
- "storybook",
- "workspace",
- "npm:chalk",
- "npm:enhanced-resolve",
- "npm:fs-extra",
- "npm:ignore",
- "npm:metro-resolver",
- "npm:minimatch",
- "npm:node-fetch",
- "npm:tsconfig-paths"
- ]
- },
- {
- "file": "packages/react-native/plugins/jest/svg-mock.ts",
- "hash": "5d45aae397ab5f9b242c822197ea219bbad27b14"
- },
- {
- "file": "packages/react-native/plugins/metro-resolver.ts",
- "hash": "13a4628cf805a0eb849f5790a8a27c23e7413bd7",
- "deps": [
- "npm:metro-resolver",
- "npm:tsconfig-paths",
- "npm:chalk",
- "npm:enhanced-resolve",
- "devkit"
- ]
- },
- {
- "file": "packages/react-native/plugins/with-nx-metro.ts",
- "hash": "beace1dface6c70bd2f3d206f330270cc6ad3afd",
- "deps": ["devkit", "npm:fs-extra"]
- },
- {
- "file": "packages/react-native/project.json",
- "hash": "8d7007a700995eec7aba68fff2d0cc6c9c2a9872"
- },
- {
- "file": "packages/react-native/README.md",
- "hash": "1748f9b1e540f5828a244832b3b3ff18357b7278"
- },
- {
- "file": "packages/react-native/src/executors/build-android/build-android.impl.ts",
- "hash": "3cb9454aca2696d19d9d0fa25af930bb2fdf7c35",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/executors/build-android/compat.ts",
- "hash": "12465b9fe895c139937626bc62f03481d6509c34",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/executors/build-android/schema.d.ts",
- "hash": "4c7f574a07a13a4d82ce6e8bea5d257e2df94eb2"
- },
- {
- "file": "packages/react-native/src/executors/build-android/schema.json",
- "hash": "bd33bda8e27d1d4e3275654b5b036896b561c590"
- },
- {
- "file": "packages/react-native/src/executors/bundle/bundle.impl.ts",
- "hash": "e12b7d235baedb9cc549f013ccbb5c2397fb8d63",
- "deps": ["workspace", "devkit"]
- },
- {
- "file": "packages/react-native/src/executors/bundle/compat.ts",
- "hash": "5ee72ffcf7032ab3f13e26f15a0cd2df53f894eb",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/executors/bundle/schema.d.ts",
- "hash": "133f0b98661f10dff5030c3a40378ac647e287ab"
- },
- {
- "file": "packages/react-native/src/executors/bundle/schema.json",
- "hash": "b8836701bc90bebf9c4ddac8db357fd221f427c2"
- },
- {
- "file": "packages/react-native/src/executors/ensure-symlink/compat.ts",
- "hash": "94c2df8239aa6a7cdbb0df1938911fe5ae2de3c5",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/executors/ensure-symlink/ensure-symlink.impl.ts",
- "hash": "b07fce099eae220cac30292997c4bc0ebf3078e2",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/executors/ensure-symlink/schema.json",
- "hash": "2b90bb8a1c8e49c292678f01a461151d9813ecdf"
- },
- {
- "file": "packages/react-native/src/executors/run-android/compat.ts",
- "hash": "42e734a8a7adc9a20e54488c9951c09c4b7a78a5",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/executors/run-android/run-android.impl.ts",
- "hash": "1bfe4113b3327589b0e70e4c2cb530ca23946829",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/executors/run-android/schema.d.ts",
- "hash": "215d3487e27ab1f8818056b48d08e7354b4d92e0"
- },
- {
- "file": "packages/react-native/src/executors/run-android/schema.json",
- "hash": "7b1aa258c586b9f1a644e780ae2287b278602df5"
- },
- {
- "file": "packages/react-native/src/executors/run-ios/compat.ts",
- "hash": "df1ef7090fb7be75e8d455b733295e6c4f5073ca",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/executors/run-ios/run-ios.impl.ts",
- "hash": "268ad273fc980dabd93cdd3f3594cfd0a884499b",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/executors/run-ios/schema.d.ts",
- "hash": "1b5c73ad15328452ead28e36d2c60112a3f7b95a"
- },
- {
- "file": "packages/react-native/src/executors/run-ios/schema.json",
- "hash": "ca91baa87575893012c96307f4daae9b98ff012b"
- },
- {
- "file": "packages/react-native/src/executors/start/compat.ts",
- "hash": "dfc3aa7e71e14a2fe479614497575efe0741f99c",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/executors/start/lib/is-packager-running.ts",
- "hash": "4ea543fb7a014cc8449ed17b12a0ac7da87b6a8b",
- "deps": ["npm:node-fetch"]
- },
- {
- "file": "packages/react-native/src/executors/start/schema.d.ts",
- "hash": "1681796682b8f5aefe0ff071dd199abe8996cee5"
- },
- {
- "file": "packages/react-native/src/executors/start/schema.json",
- "hash": "72183732b5466154fac4bb75c8ddee0b22b6995e"
- },
- {
- "file": "packages/react-native/src/executors/start/start.impl.ts",
- "hash": "8004423ec411f71f2d551ec381ec8a4e53157d13",
- "deps": ["npm:chalk", "devkit"]
- },
- {
- "file": "packages/react-native/src/executors/storybook/compat.ts",
- "hash": "c279293d0cd582c5ac066574f4fc4e13750c73d7",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/executors/storybook/schema.d.ts",
- "hash": "cf193971d3ac601692b6667b1f385af3f1d856e9"
- },
- {
- "file": "packages/react-native/src/executors/storybook/schema.json",
- "hash": "380246b311b7a11408594bf701641d5d254d7ddb"
- },
- {
- "file": "packages/react-native/src/executors/storybook/storybook.impl.ts",
- "hash": "2e5c5467f0929bb614150afc09cfccf45ea34511",
- "deps": ["devkit", "workspace", "npm:chalk"]
- },
- {
- "file": "packages/react-native/src/executors/sync-deps/compat.ts",
- "hash": "91634e4ee6cba653788679e2021aa382caaf0df3",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/executors/sync-deps/schema.d.ts",
- "hash": "c88982181eb22ddec18a5e2b7dcb3cdffd40b595"
- },
- {
- "file": "packages/react-native/src/executors/sync-deps/schema.json",
- "hash": "a065308aa012c541b97ff6345578e15f20acf2c7"
- },
- {
- "file": "packages/react-native/src/executors/sync-deps/sync-deps.impl.ts",
- "hash": "45cc9f3e20933628f0f7a1635df570ea2dc5c99e",
- "deps": ["npm:chalk", "devkit"]
- },
- {
- "file": "packages/react-native/src/generators/application/application.spec.ts",
- "hash": "979a4b3304ccfab27526d691d465e454f812ec2b",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/react-native/src/generators/application/application.ts",
- "hash": "9a1e6e4410b74606d4a8e25119e7b933f57b6ff7",
- "deps": ["workspace", "devkit"]
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/_BUCK.template",
- "hash": "9359ab06b6661316dff0e1b596182343e126d146"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/build_defs.bzl",
- "hash": "fff270f8d1d48432e85353a715d7ebad229b6d94"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/build.gradle.template",
- "hash": "6c1457766df5733444a4495f0a1c3ec27c97e372"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/debug.keystore",
- "hash": "364e105ed39fbfd62001429a68140672b06ec0de"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/proguard-rules.pro",
- "hash": "11b025724a3f7a4a3685bbcd27da16440749f5e8"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/androidTest/java/com/__lowerCaseName__/DetoxTest.java.template",
- "hash": "4cd0b0f9dcc6352cc9e425119f0a9b6e00fb543d"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/debug/AndroidManifest.xml.template",
- "hash": "447dd46e6b9ba54446ff0d155d3830eb777d027a"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/debug/java/com/__lowerCaseName__/ReactNativeFlipper.java.template",
- "hash": "943a5ba7b78eddfa9980922643da024a65e8eb41"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/AndroidManifest.xml.template",
- "hash": "2a750fbcf2080e9d6ad4625a52b2aa4887322f9d"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/java/com/__lowerCaseName__/MainActivity.java.template",
- "hash": "3aec16c7d045f5c686a0678a001e5ec03d1ae9ca"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/java/com/__lowerCaseName__/MainApplication.java.template",
- "hash": "0592e9e692f87b3d473958abe368b08bb08f3d5a"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/java/com/__lowerCaseName__/newarchitecture/components/MainComponentsRegistry.java.template",
- "hash": "4c896506cf071fd6d36956aaafe371a3e86d4508"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/java/com/__lowerCaseName__/newarchitecture/MainApplicationReactNativeHost.java.template",
- "hash": "8f74cc044d3b13e7726db1c1fff33200cc06fc4d"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/java/com/__lowerCaseName__/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java.template",
- "hash": "c16d98218a20f3a1c68b0b88e577551eade87d2e"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/jni/Android.mk.template",
- "hash": "3d2e7203f3afe7fd7390d593beaccfdd731b213c"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/jni/MainApplicationModuleProvider.cpp",
- "hash": "0ac23cc62634522b78e548991c01b4099794191e"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/jni/MainApplicationModuleProvider.h",
- "hash": "0fa43fa69ad4e504094353d737b5b9b503610b78"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp",
- "hash": "dbbdc3d13205feb667f7e301979e45db88b15ef8"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h.template",
- "hash": "2a06d42fefdaf76f2124f6af8d0de8b0590c2419"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/jni/MainComponentsRegistry.cpp",
- "hash": "8f7edffd64234237c2056d7a3a666bc21430986b"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/jni/MainComponentsRegistry.h.template",
- "hash": "f3af506cb75899f40067768337c18a70a205908c"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/jni/OnLoad.cpp",
- "hash": "c569b6e865dab50c7ee59cc2ac0ebe898c802c55"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/res/drawable/rn_edit_text_material.xml",
- "hash": "f35d9962026a854a166779fd2a3850d05ce315c6"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png",
- "hash": "1b523998081149a985cef0cdf89045b9ed29964a"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png",
- "hash": "a2f5908281d070150700378b64a84c7db1f97aa1"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png",
- "hash": "115a4c768a20c9e13185c17043f4c4d12dd4632a"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png",
- "hash": "ff10afd6e182edb2b1a63c8f984e9070d9f950ba"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png",
- "hash": "459ca609d3ae0d3943ab44cdc27feef9256dc6d7"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png",
- "hash": "dcd3cd8083358269d6ed7894726283bb9bcbbfea"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png",
- "hash": "8e19b410a1b15ff180f3dacac19395fe3046cdec"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png",
- "hash": "8ca12fe024be86e868d14e91120a6902f8e88ac6"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png",
- "hash": "4c19a13c239cb67b8a2134ddd5f325db1d2d5bee"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png",
- "hash": "b824ebdd48db917eea2e67a82260a100371f8a24"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/res/values/strings.xml.template",
- "hash": "c4cd4a46298552111f6636381d19e9c97a35de8c"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/res/values/styles.xml",
- "hash": "7ba83a2ad5a2c9be2d9eb2a4211590336f28209b"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/app/src/main/res/xml/network_security_config.xml",
- "hash": "c7755e76fa0e61a91089d31eea051c7dbd989e1f"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/build.gradle.template",
- "hash": "96401f27c62ec8026997953dccd3bc095c8d9e8d"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/gradle.properties",
- "hash": "fa4feae5f19024c8cf5f9daab05c50a04cc22e3a"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/gradle/wrapper/gradle-wrapper.jar",
- "hash": "7454180f2ae8848c63b8b4dea2cb829da983f2fa"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/gradle/wrapper/gradle-wrapper.properties",
- "hash": "669386b870a696d84b189d4ea7af4c4a7211d31f"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/gradlew.bat",
- "hash": "107acd32c4e687021ef32db511e8a206129b88ec"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/gradlew.template",
- "hash": "1b6c787337ffb79f0e3cf8b1e9f00f680a959de1"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/android/settings.gradle.template",
- "hash": "8fcce31e023575c7cf71911a6c954347f281e7a6"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/app.json.template",
- "hash": "4e3ababec032372612bc592a0afc349debbd0562"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/babel.config.json.template",
- "hash": "d4b74b5be7b43daf5c6bba8c69f1ae0f25fbfadb"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/ios/__className__.xcodeproj/project.pbxproj.template",
- "hash": "806cd7bda102e5d7a39926ebcd4b917b6a70a8f1"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/ios/__className__.xcodeproj/xcshareddata/xcschemes/__className__.xcscheme.template",
- "hash": "088b0c30b2db6447b844d87dededee653e42ac60"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/ios/__className__.xcworkspace/contents.xcworkspacedata.template",
- "hash": "b711c275d9110af629da0fdfb895f055822800fb"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/ios/__className__/AppDelegate.h",
- "hash": "ef1de86a2a80acb9c8c18d0879a7f70d9a191f0f"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/ios/__className__/AppDelegate.mm.template",
- "hash": "3ffcb6f42b2a77bfef26151a1d78b496ccae4312"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/ios/__className__/Images.xcassets/AppIcon.appiconset/Contents.json",
- "hash": "ddd7fca89e9b22a15ecf1fb9098302b016699ab0"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/ios/__className__/Images.xcassets/Contents.json",
- "hash": "97a8662ebdb4372c5a5153036a38645cb92d1892"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/ios/__className__/Info.plist.template",
- "hash": "f943833b04fcd14ee98a263c3e856edcf604b63b"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/ios/__className__/LaunchScreen.storyboard.template",
- "hash": "2015153029df9e2cf8ef216deca084d82538490f"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/ios/__className__/main.m",
- "hash": "d645c7246c42e45510cfcdcd7a7ff584a700d4c1"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/ios/__className__Tests/__className__Tests.m",
- "hash": "03fbd0e5d7732468fa2d18d2ce512a0cf6393466"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/ios/__className__Tests/Info.plist",
- "hash": "ba72822e8728ef2951005e49b6c27a2f1da6572d"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/ios/.xcode.env.template",
- "hash": "fdd0b50af5950b9880178535864415fb57b43650"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/ios/Podfile.template",
- "hash": "4728334f725ec5d7cecb010c27cf557067ae64f0"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/metro.config.js.template",
- "hash": "25434b26bd748cf96cc901aedea0b3dfd88d8b4d"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/package.json.template",
- "hash": "64a5051b0a913a64903b80103c61020ab2c0f37b"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/src/app/App.spec.tsx.template",
- "hash": "75138098480dbb641138b9d358e4f6167644b753"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/src/app/App.tsx.template",
- "hash": "c68ffe02225dccede52c16545155e31ca9269dfe"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/src/app/icons/blog.svg",
- "hash": "b7618efb90ad4d14e63fbd6d03a89144ffd573ed"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/src/app/icons/book.svg",
- "hash": "af2d6df1290073534c8a9ab1a2b98aa8c6f64bb9"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/src/app/icons/checkmark.svg",
- "hash": "fe2608c90b1dfe591bfa9a3ac86e76d2752a5c57"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/src/app/icons/chevron-right.svg",
- "hash": "332879444aef8dba0c77d0f171c28065f52028e3"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/src/app/icons/courses.svg",
- "hash": "1a3d480024762f9ff7d16a3dd7b0fdc8159f969e"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/src/app/icons/github.svg",
- "hash": "266c1f766d13526402e3f7df1c4a7cde28b33e28"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/src/app/icons/heart.svg",
- "hash": "74c66cb72894b6cc03312870c073ff3f203c8170"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/src/app/icons/logo.png",
- "hash": "e9b9b6eb620ffe5c4ee48dec55e9a6392a136cf9"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/src/app/icons/nx-cloud.svg",
- "hash": "0637cbd3dbb87f24f4ab3f5699084cca3b3f474b"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/src/app/icons/pointer.svg",
- "hash": "47cb0edce4c5be959ceb171be52b800076c002bc"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/src/app/icons/terminal.svg",
- "hash": "2041db0dd30e431af6eed45a1d2f9342e6f86f08"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/src/app/icons/vscode.svg",
- "hash": "70ae6e92c912fb923781c17c5a7c3dcc19787708"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/src/app/icons/youtube.svg",
- "hash": "b527eaa1c18c922da06cbad0977c5363f30b33df"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/src/main.tsx.template",
- "hash": "fb78c7fa7105308c2bff38d35b1be42f9ad7da87"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/test-setup.ts.template",
- "hash": "9f28ad211b736a83e3f064922cd2a5f03289b156"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/tsconfig.app.json.template",
- "hash": "7799be4ddbfe8aa55f959775a0a9393916159bdc"
- },
- {
- "file": "packages/react-native/src/generators/application/files/app/tsconfig.json.template",
- "hash": "bed1e573009c6e3c08f8eb15184d6f70be95b07f"
- },
- {
- "file": "packages/react-native/src/generators/application/lib/add-detox.ts",
- "hash": "7f4030c4e2e58eba178069111e09ab0738099daf",
- "deps": ["detox", "devkit", "linter"]
- },
- {
- "file": "packages/react-native/src/generators/application/lib/add-project.ts",
- "hash": "558001ff91800f10ebec1b29118b8f595b906fc8",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/generators/application/lib/create-application-files.ts",
- "hash": "46d198448165a7ed24025197f9a138a28c349fc5",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/react-native/src/generators/application/lib/nomalize-options.spec.ts",
- "hash": "beea0d7666e4aa998d6868bcdf82d64f1e882afa",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/react-native/src/generators/application/lib/normalize-options.ts",
- "hash": "1a7845470522b111fad3fbbdbb6979b077e3b788",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/generators/application/schema.d.ts",
- "hash": "143fe13c831cad030f2205d898c11d7174f2751a",
- "deps": ["linter"]
- },
- {
- "file": "packages/react-native/src/generators/application/schema.json",
- "hash": "2130a3413219afc7ac1dde39e25aab73bce30621"
- },
- {
- "file": "packages/react-native/src/generators/component-story/component-story.spec.ts",
- "hash": "566e10b01b5277e9e7e80160212a06aa83ded78e",
- "deps": ["devkit", "linter", "npm:react"]
- },
- {
- "file": "packages/react-native/src/generators/component-story/component-story.ts",
- "hash": "53c5a86b0f6dbbd05e8551a17d57b5435e204163",
- "deps": ["devkit", "npm:typescript", "react"]
- },
- {
- "file": "packages/react-native/src/generators/component-story/files/__componentFileName__.stories.__fileExt__",
- "hash": "2243e7611f20a61a7b1d20e4843268424c12fb43"
- },
- {
- "file": "packages/react-native/src/generators/component-story/schema.d.ts",
- "hash": "5fa087a5abfed489e25ff0f7129709adbb4a9314"
- },
- {
- "file": "packages/react-native/src/generators/component-story/schema.json",
- "hash": "06611da4fce2d91ac2b77f100fc06afc3779b488"
- },
- {
- "file": "packages/react-native/src/generators/component/component.spec.ts",
- "hash": "ae4d2e56635383491757df8ec793f2a9e2950b7f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/generators/component/component.ts",
- "hash": "9ba5280263ffdf15083aa95c42a9b1d0bb2ffa9c",
- "deps": ["npm:typescript", "devkit"]
- },
- {
- "file": "packages/react-native/src/generators/component/files/__fileName__.spec.tsx__tmpl__",
- "hash": "d42366c2ff40d72ce7e843e1839641570cd7ffe3"
- },
- {
- "file": "packages/react-native/src/generators/component/files/__fileName__.tsx__tmpl__",
- "hash": "130b2fe9266f63bbebef87ab295329bf04c42968"
- },
- {
- "file": "packages/react-native/src/generators/component/lib/add-import.ts",
- "hash": "b151ee22261a03ffad3ad391882476d2e6a4a61a",
- "deps": ["workspace", "npm:typescript", "devkit"]
- },
- {
- "file": "packages/react-native/src/generators/component/lib/normalize-options.ts",
- "hash": "23bc23c724f43a2fe4294d84e14701ca9c445b4f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/generators/component/schema.d.ts",
- "hash": "17e23f569d7568304e4864c899ce8a083db9e05e"
- },
- {
- "file": "packages/react-native/src/generators/component/schema.json",
- "hash": "7a4e18ab05b003b2a31d13002dd758bd531a0468"
- },
- {
- "file": "packages/react-native/src/generators/init/init.spec.ts",
- "hash": "e4f0e585af75aebac6355266be3df9772a0a19b5",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/generators/init/init.ts",
- "hash": "33aa6a817bb3cf1e4a563d3a43c2059d7b7c8fba",
- "deps": ["devkit", "workspace", "jest", "detox", "react"]
- },
- {
- "file": "packages/react-native/src/generators/init/lib/add-git-ignore-entry.ts",
- "hash": "d22015fb9bbbc8f18b7ae2f0e57484afbfac4e98",
- "deps": ["devkit", "npm:ignore"]
- },
- {
- "file": "packages/react-native/src/generators/init/lib/gitignore-entries.ts",
- "hash": "a68ef0f0dacd226a06ed7e206bf4d2aaab02e571"
- },
- {
- "file": "packages/react-native/src/generators/init/lib/init-root-babel-config.ts",
- "hash": "a3f079a2ce479e120ad5b88e594cf0ed26343c9d",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/generators/init/schema.d.ts",
- "hash": "831a2d5d19d8dea4b6a78b707ed3aaaf60348b05"
- },
- {
- "file": "packages/react-native/src/generators/init/schema.json",
- "hash": "315e90c57df820cafee1415eee6d24cfa781e8d0"
- },
- {
- "file": "packages/react-native/src/generators/library/files/lib/babel.config.json.template",
- "hash": "3c1b877fca28cebe01a21d841165e119f0271ae0"
- },
- {
- "file": "packages/react-native/src/generators/library/files/lib/package.json__tmpl__",
- "hash": "fa518765a372fc2c8593fdd59b748f284d1ee495"
- },
- {
- "file": "packages/react-native/src/generators/library/files/lib/README.md",
- "hash": "b74453ce2e8395837aad3c7c03e3ab14ae819218"
- },
- {
- "file": "packages/react-native/src/generators/library/files/lib/src/index.ts__tmpl__",
- "hash": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"
- },
- {
- "file": "packages/react-native/src/generators/library/files/lib/test-setup.ts.template",
- "hash": "9f28ad211b736a83e3f064922cd2a5f03289b156"
- },
- {
- "file": "packages/react-native/src/generators/library/files/lib/tsconfig.json__tmpl__",
- "hash": "d9affba903da06e09c01d311c65426b70293cb69"
- },
- {
- "file": "packages/react-native/src/generators/library/files/lib/tsconfig.lib.json__tmpl__",
- "hash": "f78209302ef29c22dc53c2c3facca1fa09ffeb2b"
- },
- {
- "file": "packages/react-native/src/generators/library/lib/normalize-options.ts",
- "hash": "37d0f18a53cd9c5e44428e615425f5906734b368",
- "deps": ["devkit", "nx"]
- },
- {
- "file": "packages/react-native/src/generators/library/library.spec.ts",
- "hash": "10d8c7429e168fe6792633afcc56ee5290c32b99",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/react-native/src/generators/library/library.ts",
- "hash": "8f432fbdeb422b3f829ce320b4ea6fcc6bffc0aa",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/react-native/src/generators/library/schema.d.ts",
- "hash": "0e3f85008eee9ceca41fd0af57d2a82b62be8dde",
- "deps": ["linter"]
- },
- {
- "file": "packages/react-native/src/generators/library/schema.json",
- "hash": "a86bfd2f6ef51622c64044fc33d61af5c9e8cb0f"
- },
- {
- "file": "packages/react-native/src/generators/stories/schema.d.ts",
- "hash": "363b7c14bad1c8f24eb84bdd7692379cc6c07504"
- },
- {
- "file": "packages/react-native/src/generators/stories/schema.json",
- "hash": "a9ee09a535143ce4de2e1dfe55cc7aa1d7b76271"
- },
- {
- "file": "packages/react-native/src/generators/stories/stories-app.spec.ts",
- "hash": "1746e5a9f24448b319b143e95676df8e9a3bd6f5",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/react-native/src/generators/stories/stories-lib.spec.ts",
- "hash": "534f56686798dd4e73f50455f2d84a3efbc9ff10",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/react-native/src/generators/stories/stories.ts",
- "hash": "637a5f3e4946523786825f140bf739ac87bde242",
- "deps": ["devkit", "react", "storybook", "npm:minimatch"]
- },
- {
- "file": "packages/react-native/src/generators/storybook-configuration/configuration.spec.ts",
- "hash": "f4a8bef243f45f2cc409885882538b48dda6995c",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/react-native/src/generators/storybook-configuration/configuration.ts",
- "hash": "33ab8ee69b316c378c0932a1acc53626745060e7",
- "deps": ["devkit", "storybook"]
- },
- {
- "file": "packages/react-native/src/generators/storybook-configuration/files/app/storybook.ts.template",
- "hash": "fb30ee16855356377ed4da09f0810f29591a5ecb"
- },
- {
- "file": "packages/react-native/src/generators/storybook-configuration/files/app/toggle-storybook.tsx.template",
- "hash": "c3aff31df7d382fafa7554cc938424d99a492f46"
- },
- {
- "file": "packages/react-native/src/generators/storybook-configuration/files/root/story-loader.js.template",
- "hash": "162b6755d2f3339c613cb32d97bdf43f4ddc5ae0"
- },
- {
- "file": "packages/react-native/src/generators/storybook-configuration/lib/add-resolver-main-fields-to-metro-config.spec.ts",
- "hash": "2b62c40a357139bec1cb4960b6893b3300c218ba",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/generators/storybook-configuration/lib/add-resolver-main-fields-to-metro-config.ts",
- "hash": "93bd0bf53c8e1514ccb022aecba1e4316197b4db",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/generators/storybook-configuration/lib/create-storybook-files.ts",
- "hash": "4f01fbd9c3e0a64aa6b0aca2c36983574331b67e",
- "deps": ["devkit", "npm:chalk"]
- },
- {
- "file": "packages/react-native/src/generators/storybook-configuration/lib/replace-app-import-with-storybook-toggle.spec.ts",
- "hash": "eb5afdaa38c18c310b2b22f80bbe98009a2afa68",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/generators/storybook-configuration/lib/replace-app-import-with-storybook-toggle.ts",
- "hash": "0f624be606db7a1f08b9f7b3a831bf4ef625ae09",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/generators/storybook-configuration/schema.d.ts",
- "hash": "aff6812b038959c95dfdc988dcf0afa4c15c71e7",
- "deps": ["linter"]
- },
- {
- "file": "packages/react-native/src/generators/storybook-configuration/schema.json",
- "hash": "c9bc36ae298c8546c361d6032d337084f305c72a"
- },
- {
- "file": "packages/react-native/src/generators/upgrade-native/lib/create-native-files.ts",
- "hash": "1378ec6c0e43b83163f26ef1fc72f5b908c4af04",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/generators/upgrade-native/lib/normalize-options.ts",
- "hash": "d47e76fe99bca9e08867df53baffd1d70925df4b",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/generators/upgrade-native/schema.d.ts",
- "hash": "8962cc481925b37393a51b3b244bd65f05bd3dc1",
- "deps": ["linter"]
- },
- {
- "file": "packages/react-native/src/generators/upgrade-native/schema.json",
- "hash": "74079e279838fd9926356dd14398a23e1e75e6de"
- },
- {
- "file": "packages/react-native/src/generators/upgrade-native/upgrade-native.ts",
- "hash": "4bd20c02ed82521583e95f16117d9066f8efc3dd",
- "deps": ["workspace", "devkit", "npm:fs-extra"]
- },
- {
- "file": "packages/react-native/src/migrations/update-12-10-0/add-react-native-svg-12-10-0.spec.ts",
- "hash": "8c675a9f3092693934509d540fccb9c652e25db0",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/migrations/update-12-10-0/add-react-native-svg-12-10-0.ts",
- "hash": "c8ca620213d44a92c408aa7b34a3e6fa55f6d264",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/migrations/update-12-5-0/update-jest-for-react-native.ts",
- "hash": "d23d22b7bc67aa3ac31fdcdaa82e3c3c4a533c69",
- "deps": ["devkit", "workspace", "jest"]
- },
- {
- "file": "packages/react-native/src/migrations/update-13-5-0/add-babel-config-root-13-5-0.spec.ts",
- "hash": "39c4d362c5a3d75086f4f72e645daa38b1bccc65",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/migrations/update-13-5-0/add-babel-config-root-13-5-0.ts",
- "hash": "9af0586c2101b6471dac0109601c02af79dfb018",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/migrations/update-13-5-0/update-react-native-typing-svg-13-5-0.spec.ts",
- "hash": "bae0a6a6b9e453322c4e74741adc4ee684c77d67",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/migrations/update-13-5-0/update-react-native-typing-svg-13-5-0.ts",
- "hash": "68f8faf0692ecae289b7750cde885258b6aedf58",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/migrations/update-14-0-0/add-project-root-metro-config-14-0-0.spec.ts",
- "hash": "2dff4dd8badc00a350c8be0b747a07e22ca5afd0",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/migrations/update-14-0-0/add-project-root-metro-config-14-0-0.ts",
- "hash": "839272174459efdf8f871ca5de41cacd0985d203",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/migrations/update-14-0-0/update-entry-file-bundle-14-0-0.spec.ts",
- "hash": "52d8883a48f954bc8a1d05bee55060f7f430de67",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/migrations/update-14-0-0/update-entry-file-bundle-14-0-0.ts",
- "hash": "01ff3dab4ec032d8beae9e6dbcf6090e7bc4030f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/migrations/update-14-0-2/change-main-to-class-name-14-0-2.spec.ts",
- "hash": "03cdb150909ca4938b5347e7193c0fcf7551588e",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/migrations/update-14-0-2/change-main-to-class-name-14-0-2.ts",
- "hash": "3fcb3378cde84b69944aaa73226ce60b17cb4f1b",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/migrations/update-14-2-1/rename-blockList-metro-config.spec.ts",
- "hash": "246b426f55fe984a3704427648dae24b913a4fc2",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/migrations/update-14-2-1/rename-blockList-metro-config.ts",
- "hash": "589b63e855872daec58b5a10e540e433c2e297f5",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/migrations/update-14-5-5/add-exclude-sync-deps.spec.ts",
- "hash": "bee8e5bf81df3e36493e22c53ebd4348ab271e61",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/migrations/update-14-5-5/add-exclude-sync-deps.ts",
- "hash": "d08f4fef2be0e36782a081b5d8bf77de6464aa69",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/migrations/update-14-5-8/change-searchDir-storybook.spec.ts",
- "hash": "0b75f28627d84d93639d7737ff668e6cbc2f0c0a",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/migrations/update-14-5-8/change-searchDir-storybook.ts",
- "hash": "0767b06b525ce77613600cd1879f566e5bf27cda",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/migrations/update-14-6-0/remove-jest-transform.spec.ts",
- "hash": "28d36b7d3da3599c6082547b784594dc94e4dc3f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/migrations/update-14-6-0/remove-jest-transform.ts",
- "hash": "59de3157df58afc8ea53718f52da839f9ebb3068",
- "deps": ["devkit", "jest", "workspace"]
- },
- {
- "file": "packages/react-native/src/utils/add-jest.ts",
- "hash": "d46e770636541f3b17057c7def82bcd64987dae4",
- "deps": ["devkit", "jest"]
- },
- {
- "file": "packages/react-native/src/utils/add-linting.spec.ts",
- "hash": "f9ba126f4c364a1b924ee3a2eb8c46eb960350aa",
- "deps": ["devkit", "linter", "workspace"]
- },
- {
- "file": "packages/react-native/src/utils/add-linting.ts",
- "hash": "3519c866ba116905533e4055a418176d33489d6b",
- "deps": ["workspace", "linter", "devkit", "react", "npm:eslint"]
- },
- {
- "file": "packages/react-native/src/utils/chmod-task.ts",
- "hash": "a71d8b89f59c4814b08e86b52c9f1c646427ae19",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/utils/ensure-node-modules-symlink.spec.ts",
- "hash": "76b1bca3e5ad4228d5b767f997c167b82bfc4cd4",
- "deps": ["npm:fs-extra"]
- },
- {
- "file": "packages/react-native/src/utils/ensure-node-modules-symlink.ts",
- "hash": "ac150334d6ccfc10251b3bc0455d37fd2826ea5f",
- "deps": ["npm:fs-extra"]
- },
- {
- "file": "packages/react-native/src/utils/find-all-npm-dependencies.spec.ts",
- "hash": "440a43d405a84bf66dcec1d3a3ff4641d3a7603e",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/utils/find-all-npm-dependencies.ts",
- "hash": "7943e9a668a3a2881268451b988114c3c5840810",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react-native/src/utils/format-file.ts",
- "hash": "84364f0ff7a5a8a49847083fa3d6194f933188fb",
- "deps": ["devkit", "npm:prettier"]
- },
- {
- "file": "packages/react-native/src/utils/pod-install-task.ts",
- "hash": "fc8f6c3d94d310d647a827360bf4bc93d7b64f93",
- "deps": ["npm:chalk", "devkit"]
- },
- {
- "file": "packages/react-native/src/utils/symlink-task.ts",
- "hash": "47662c59e55c93eac8cb4cf1935fe7774f666e90",
- "deps": ["npm:chalk", "devkit"]
- },
- {
- "file": "packages/react-native/src/utils/testing-generators.ts",
- "hash": "531858dfeada9d90c69198743129c7b4da4ede41",
- "deps": ["devkit", "linter", "npm:react"]
- },
- {
- "file": "packages/react-native/src/utils/versions.ts",
- "hash": "e82ec89ca801abb60503abb206f21e0d4357a972"
- },
- {
- "file": "packages/react-native/tsconfig.json",
- "hash": "62ebbd946474cea997e774d20fffc4d585c184f3"
- },
- {
- "file": "packages/react-native/tsconfig.lib.json",
- "hash": "5c589aef9e7c76c6bd9a4eea2464ea8a75508919"
- },
- {
- "file": "packages/react-native/tsconfig.spec.json",
- "hash": "46f9467f3bd81cb7ec6abc5dcec5c1d35c42f28a"
- },
- {
- "file": "packages/react-native/typings/svg.d.ts",
- "hash": "7c42ae1dd74f2bcfb11c22c80260105f994efd80",
- "deps": ["npm:react"]
- }
- ]
- }
- },
- {
- "name": "e2e-workspace-create",
- "type": "app",
- "data": {
- "tags": [],
- "root": "e2e/workspace-create",
- "files": [
- {
- "file": "e2e/workspace-create/jest.config.ts",
- "hash": "cd636c6db71b610069e8918f5b3571ba8215218d"
- },
- {
- "file": "e2e/workspace-create/project.json",
- "hash": "bf0d2d3c1dd65527a6ba7873682790f52582bafe"
- },
- {
- "file": "e2e/workspace-create/src/create-nx-plugin.test.ts",
- "hash": "f1c049c2c6cdbc0dec5039434cfc9823ec695fa4",
- "deps": ["e2e-utils"]
- },
- {
- "file": "e2e/workspace-create/src/create-nx-workspace.test.ts",
- "hash": "56fcc35489b8aeb8e9e03738e3f3af0c1efaa25b",
- "deps": ["e2e-utils", "npm:fs-extra"]
- },
- {
- "file": "e2e/workspace-create/tsconfig.json",
- "hash": "6d5abf84832009a8c70e7a910c49f332bf1f0612"
- },
- {
- "file": "e2e/workspace-create/tsconfig.spec.json",
- "hash": "1a24bfb0a13536cd17717808ca5609e15def438f"
- }
- ]
- }
- },
- {
- "name": "nx-dev-ui-conference",
- "type": "lib",
- "data": {
- "tags": ["scope:nx-dev", "type:feature"],
- "root": "nx-dev/ui-conference",
- "files": [
- {
- "file": "nx-dev/ui-conference/.eslintrc.json",
- "hash": "734ddaceea447738208c9519158ad6b3062f3929"
- },
- {
- "file": "nx-dev/ui-conference/jest.config.ts",
- "hash": "09b85cab28b0d430d1f64feb5bbea20df25805a1"
- },
- {
- "file": "nx-dev/ui-conference/project.json",
- "hash": "60bf9b12e259fd30ace094cbf40bf1b32fcea9f2"
- },
- {
- "file": "nx-dev/ui-conference/README.md",
- "hash": "0839abc755d096a49b200d26e607f67e42da79db"
- },
- {
- "file": "nx-dev/ui-conference/src/index.ts",
- "hash": "f4ff6d28658224b91eb5cc94c7d2b95b615a26e4"
- },
- {
- "file": "nx-dev/ui-conference/src/lib/conf-health-and-safety.tsx",
- "hash": "41e090a3b17d4869ef411da119a23a6572012330"
- },
- {
- "file": "nx-dev/ui-conference/src/lib/conf-location.tsx",
- "hash": "b7319c0003f471f19ba6fee691b2acaedb140d59"
- },
- {
- "file": "nx-dev/ui-conference/src/lib/conf-schedule-short.tsx",
- "hash": "6fa676d81395d27b47b3bb250f969e349e5c00ba"
- },
- {
- "file": "nx-dev/ui-conference/src/lib/conf-schedule.tsx",
- "hash": "2937172ce4f71a09a7fb27a5a466b6aabcccd38b",
- "deps": ["npm:react"]
- },
- {
- "file": "nx-dev/ui-conference/src/lib/conf-speakers.tsx",
- "hash": "69b85eed5887f18764ef2420fb139b2946ffe8e7",
- "deps": ["nx-dev-ui-member-card"]
- },
- {
- "file": "nx-dev/ui-conference/src/lib/conf-sponsors.tsx",
- "hash": "f18013a3712355189cfe99ac63cfa330ef812bdb",
- "deps": ["nx-dev-ui-sponsor-card", "npm:classnames"]
- },
- {
- "file": "nx-dev/ui-conference/src/lib/conf-workshop.tsx",
- "hash": "a60fbdbd6defd70231435b89331753d6dc921ada"
- },
- {
- "file": "nx-dev/ui-conference/test-setup.ts",
- "hash": "2ab2ad075b06b962f43a56d2da571379e91fabe5"
- },
- {
- "file": "nx-dev/ui-conference/tsconfig.json",
- "hash": "3230750a884f72a8d552144dcb423f1ed5899fff"
- },
- {
- "file": "nx-dev/ui-conference/tsconfig.lib.json",
- "hash": "ad41401e71c05059f162a6729f494b2e64945ad9"
- },
- {
- "file": "nx-dev/ui-conference/tsconfig.spec.json",
- "hash": "46f9467f3bd81cb7ec6abc5dcec5c1d35c42f28a"
- }
- ]
- }
- },
- {
- "name": "nx-dev-ui-references",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "nx-dev/ui-references",
- "files": [
- {
- "file": "nx-dev/ui-references/.babelrc",
- "hash": "ccae900be42788285eb6e1b3a2af4b81f56f14fe"
- },
- {
- "file": "nx-dev/ui-references/.eslintrc.json",
- "hash": "734ddaceea447738208c9519158ad6b3062f3929"
- },
- {
- "file": "nx-dev/ui-references/jest.config.ts",
- "hash": "a086d57b1e03f47fddeca596dc2887b24490b4f6"
- },
- {
- "file": "nx-dev/ui-references/project.json",
- "hash": "48ee000ea1c6a88c76d10965fdee7773f01220c0"
- },
- {
- "file": "nx-dev/ui-references/README.md",
- "hash": "b984b2d7a66ec539fe3ec1b2e20795c8a3bbc767"
- },
- {
- "file": "nx-dev/ui-references/src/index.ts",
- "hash": "0c38bbdc516ceca174585ca77b9225941b9f13cc"
- },
- {
- "file": "nx-dev/ui-references/src/lib/icons-map.ts",
- "hash": "61637cb371363f754ea987dd704173e76bba8c82"
- },
- {
- "file": "nx-dev/ui-references/src/lib/references-index-item.tsx",
- "hash": "2b451de946bf51b921b459d04575a32aaf44be11",
- "deps": ["npm:classnames"]
- },
- {
- "file": "nx-dev/ui-references/src/lib/references-nav-list.tsx",
- "hash": "5836efd688f2f9ac980c15ede023b403d77c1288",
- "deps": ["npm:@heroicons/react", "nx-dev-models-menu"]
- },
- {
- "file": "nx-dev/ui-references/src/lib/references-package-card.tsx",
- "hash": "15fa28bee6717c6598dfe6bf1b1f012f4b896d20"
- },
- {
- "file": "nx-dev/ui-references/src/lib/references-section.tsx",
- "hash": "9157b6134abf16910261dc28eba509c642297465",
- "deps": ["npm:@heroicons/react", "nx-dev-models-menu"]
- },
- {
- "file": "nx-dev/ui-references/tsconfig.json",
- "hash": "4c089585ed6b0a3c4767aee6a136bb6f47cad2b6"
- },
- {
- "file": "nx-dev/ui-references/tsconfig.lib.json",
- "hash": "af84f21cfc8066d0302f5772b7c157e81d418617"
- },
- {
- "file": "nx-dev/ui-references/tsconfig.spec.json",
- "hash": "ff08addd60ff581234ec9423d2bb90f31d8166e8"
- }
- ]
- }
- },
- {
- "name": "nx-dev-ui-community",
- "type": "lib",
- "data": {
- "tags": ["scope:nx-dev", "type:ui"],
- "root": "nx-dev/ui-community",
- "files": [
- {
- "file": "nx-dev/ui-community/.babelrc",
- "hash": "ccae900be42788285eb6e1b3a2af4b81f56f14fe"
- },
- {
- "file": "nx-dev/ui-community/.eslintrc.json",
- "hash": "734ddaceea447738208c9519158ad6b3062f3929"
- },
- {
- "file": "nx-dev/ui-community/jest.config.ts",
- "hash": "b683d280d6b729a36b868cbad575ebb7a3314ab2"
- },
- {
- "file": "nx-dev/ui-community/project.json",
- "hash": "9d1e40dfacb5e5eeb8a2ed328267fb5a18d62c98"
- },
- {
- "file": "nx-dev/ui-community/README.md",
- "hash": "1c62a5a0e8f136be853db903370799217a5dd7a4"
- },
- {
- "file": "nx-dev/ui-community/src/index.ts",
- "hash": "937a46cc445daed2fea054cb9162aba52f9c0169"
- },
- {
- "file": "nx-dev/ui-community/src/lib/connect-with-us.tsx",
- "hash": "3ad132827b8d6562728c6593f0bf2a51bed55f47",
- "deps": ["npm:@heroicons/react"]
- },
- {
- "file": "nx-dev/ui-community/src/lib/create-nx-plugin.tsx",
- "hash": "5ed204283b3e5a5a19ff9dfe61714e44d274138c",
- "deps": ["npm:@heroicons/react", "npm:next"]
- },
- {
- "file": "nx-dev/ui-community/src/lib/plugin-directory.tsx",
- "hash": "0f65d6a7fa1688a358ffc390710158506dd82fcd",
- "deps": ["npm:@heroicons/react", "nx-dev-ui-common", "npm:react"]
- },
- {
- "file": "nx-dev/ui-community/tsconfig.json",
- "hash": "4c089585ed6b0a3c4767aee6a136bb6f47cad2b6"
- },
- {
- "file": "nx-dev/ui-community/tsconfig.lib.json",
- "hash": "b2447df1e533eb836f113cb03b90a495daacf0ec"
- },
- {
- "file": "nx-dev/ui-community/tsconfig.spec.json",
- "hash": "a85d573fcf6c629c85c96fcf377be0248588576f"
- }
- ]
- }
- },
- {
- "name": "cra-to-nx",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/cra-to-nx",
- "files": [
- {
- "file": "packages/cra-to-nx/.eslintrc.json",
- "hash": "fea46111a20ae8689af46385367f70421bb9b054"
- },
- {
- "file": "packages/cra-to-nx/jest.config.ts",
- "hash": "37b4e4bf05b17827dad05d4ca65d0b5560b2b26d"
- },
- {
- "file": "packages/cra-to-nx/package.json",
- "hash": "cbea705e9ea525a9cc2b4c55e331082ef2d03ce1",
- "deps": [
- "devkit",
- "workspace",
- "npm:fs-extra",
- "nx",
- "npm:tslib",
- "npm:yargs-parser"
- ]
- },
- {
- "file": "packages/cra-to-nx/project.json",
- "hash": "f3c92459fb4986890e374494864f5c73cef47028"
- },
- {
- "file": "packages/cra-to-nx/README.md",
- "hash": "985e9871f6212eb3a64718d842d3fb0dc32b0c78"
- },
- {
- "file": "packages/cra-to-nx/src/index.ts",
- "hash": "943ca63d318f9498c9f6167fb61787f80678757c",
- "deps": ["npm:yargs-parser"]
- },
- {
- "file": "packages/cra-to-nx/src/lib/add-cra-commands-to-nx.ts",
- "hash": "c8a63a5304a2e0ffcc3594693d7300594a613bfc",
- "deps": ["npm:fs-extra"]
- },
- {
- "file": "packages/cra-to-nx/src/lib/check-for-uncommitted-changes.ts",
- "hash": "192f13715282504b3d1f9e3625ea6494585c9d98"
- },
- {
- "file": "packages/cra-to-nx/src/lib/clean-up-files.ts",
- "hash": "acdffd1aaf74a7e7fa2c1c248154e5498873c9d6",
- "deps": ["npm:fs-extra"]
- },
- {
- "file": "packages/cra-to-nx/src/lib/cra-to-nx.ts",
- "hash": "3811c6975e0d1d6f659b4b1a226c7bbb05fc6408",
- "deps": ["workspace", "npm:fs-extra", "devkit"]
- },
- {
- "file": "packages/cra-to-nx/src/lib/read-name-from-package-json.ts",
- "hash": "3719bd324ccca7d10216f72c40461dee3f680fa6",
- "deps": ["workspace"]
- },
- {
- "file": "packages/cra-to-nx/src/lib/setup-e2e-project.ts",
- "hash": "c915c82c3c40c38562cab016b884233678dbce89",
- "deps": ["workspace"]
- },
- {
- "file": "packages/cra-to-nx/src/lib/tsconfig-setup.ts",
- "hash": "9a898b62d348909313c6f20f27d9f36d36598597",
- "deps": ["workspace"]
- },
- {
- "file": "packages/cra-to-nx/src/lib/write-craco-config.ts",
- "hash": "2e789b5e8ba2263df088b4e846fb579ae6335d1a"
- },
- {
- "file": "packages/cra-to-nx/tsconfig.json",
- "hash": "62ebbd946474cea997e774d20fffc4d585c184f3"
- },
- {
- "file": "packages/cra-to-nx/tsconfig.lib.json",
- "hash": "3ce6be94ee126475022d31118a12a5895185a461"
- },
- {
- "file": "packages/cra-to-nx/tsconfig.spec.json",
- "hash": "831ab6481bfec07dac66b6f62828f76f898f0edf"
- }
- ]
- }
- },
- {
- "name": "eslint-rules",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "tools/eslint-rules",
- "files": [
- {
- "file": "tools/eslint-rules/index.ts",
- "hash": "3a451ca03e015fed9328cb809fc36bd3f4b6ad69"
- },
- {
- "file": "tools/eslint-rules/jest.config.ts",
- "hash": "753cb7e238967200eed04a279558d50535f8adc2"
- },
- {
- "file": "tools/eslint-rules/project.json",
- "hash": "3add7eafae0b9a74330d3ef481a3a0a45d47043d"
- },
- {
- "file": "tools/eslint-rules/rules/valid-schema-description.spec.ts",
- "hash": "8089c9902cc6d1532371d4a88b3ec14e0a1c4443",
- "deps": ["npm:@typescript-eslint/utils"]
- },
- {
- "file": "tools/eslint-rules/rules/valid-schema-description.ts",
- "hash": "ea02827577e48ac019a401552e8c2b85cf712f2f",
- "deps": ["npm:@typescript-eslint/utils", "npm:jsonc-eslint-parser"]
- },
- {
- "file": "tools/eslint-rules/tsconfig.json",
- "hash": "51165861a766df2a6a4a0e03f6d1f9cc3ee5ab29"
- },
- {
- "file": "tools/eslint-rules/tsconfig.lint.json",
- "hash": "9012486116d00645121da26e99099b342deff68b"
- },
- {
- "file": "tools/eslint-rules/tsconfig.spec.json",
- "hash": "f95b08f8f79e54f596db3da65676c4dc00ac9dea"
- }
- ]
- }
- },
- {
- "name": "nx-dev-models-menu",
- "type": "lib",
- "data": {
- "tags": ["scope:nx-dev", "type:util"],
- "root": "nx-dev/models-menu",
- "files": [
- {
- "file": "nx-dev/models-menu/.babelrc",
- "hash": "cf7ddd99c615a064ac18eb3109eee4f394ab1faf"
- },
- {
- "file": "nx-dev/models-menu/.eslintrc.json",
- "hash": "9d9c0db55bb1e91c5f2e7b64a02bc6bf69fc7cb5"
- },
- {
- "file": "nx-dev/models-menu/jest.config.ts",
- "hash": "4b8353c606726e5cb9505801e63240faa5197230"
- },
- {
- "file": "nx-dev/models-menu/project.json",
- "hash": "c37796fd94d1798537a0dc839e559593239606bc"
- },
- {
- "file": "nx-dev/models-menu/README.md",
- "hash": "fae2bf93fda20ee3a0a9c555ac39b8a675e146ab"
- },
- {
- "file": "nx-dev/models-menu/src/index.ts",
- "hash": "9bdb858ec7b14bb354c599f465b25fe6faaea33e"
- },
- {
- "file": "nx-dev/models-menu/src/lib/menu.models.ts",
- "hash": "aded16cbec49ff8fc73aee766f8dfbcbe1b2b327",
- "deps": ["nx-dev-models-document"]
- },
- {
- "file": "nx-dev/models-menu/tsconfig.json",
- "hash": "62ebbd946474cea997e774d20fffc4d585c184f3"
- },
- {
- "file": "nx-dev/models-menu/tsconfig.lib.json",
- "hash": "5c589aef9e7c76c6bd9a4eea2464ea8a75508919"
- },
- {
- "file": "nx-dev/models-menu/tsconfig.spec.json",
- "hash": "a85d573fcf6c629c85c96fcf377be0248588576f"
- }
- ]
- }
- },
- {
- "name": "nx-dev-ui-commands",
- "type": "lib",
- "data": {
- "tags": ["scope:nx-dev", "type:ui"],
- "root": "nx-dev/ui-commands",
- "files": [
- {
- "file": "nx-dev/ui-commands/.babelrc",
- "hash": "ccae900be42788285eb6e1b3a2af4b81f56f14fe"
- },
- {
- "file": "nx-dev/ui-commands/.eslintrc.json",
- "hash": "734ddaceea447738208c9519158ad6b3062f3929"
- },
- {
- "file": "nx-dev/ui-commands/jest.config.ts",
- "hash": "d930a42603856d8c580324adcd70623956bd9f1a"
- },
- {
- "file": "nx-dev/ui-commands/project.json",
- "hash": "8e84b2123b125d95fa67427db9a852a44d0ded12"
- },
- {
- "file": "nx-dev/ui-commands/README.md",
- "hash": "2e7080248984e640dae7c643d2ea1f6603b342b5"
- },
- {
- "file": "nx-dev/ui-commands/src/index.ts",
- "hash": "1148e39ec203c46c4bb5ab94eaa3565daaf886db"
- },
- {
- "file": "nx-dev/ui-commands/src/lib/inline-command.tsx",
- "hash": "ac1afb5cbd4b1d53b2fbba1e48f5fd1ea19a1d47",
- "deps": [
- "npm:react",
- "npm:react-copy-to-clipboard",
- "npm:react-syntax-highlighter"
- ]
- },
- {
- "file": "nx-dev/ui-commands/tsconfig.json",
- "hash": "3230750a884f72a8d552144dcb423f1ed5899fff"
- },
- {
- "file": "nx-dev/ui-commands/tsconfig.lib.json",
- "hash": "ad41401e71c05059f162a6729f494b2e64945ad9"
- },
- {
- "file": "nx-dev/ui-commands/tsconfig.spec.json",
- "hash": "46f9467f3bd81cb7ec6abc5dcec5c1d35c42f28a"
- }
- ]
- }
- },
- {
- "name": "nx-plugin",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/nx-plugin",
- "files": [
- {
- "file": "packages/nx-plugin/.eslintrc.json",
- "hash": "cc515a27eb399b518f6cafbee252476d16078da7"
- },
- {
- "file": "packages/nx-plugin/executors.json",
- "hash": "c76824ab98c581bd7f3ba6704dca5f9eac28f303"
- },
- {
- "file": "packages/nx-plugin/generators.json",
- "hash": "b889b233cf3b86e3d383002665d9ed4f05c8d25b"
- },
- {
- "file": "packages/nx-plugin/generators.ts",
- "hash": "a5c482e0a95801d6bf9323e11b5c0db937f70762"
- },
- {
- "file": "packages/nx-plugin/index.ts",
- "hash": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"
- },
- {
- "file": "packages/nx-plugin/jest.config.ts",
- "hash": "303721253026477e7143d5bc5b45b25c671b6415"
- },
- {
- "file": "packages/nx-plugin/migrations.json",
- "hash": "fa8bdf3994433da08450e7d1b92b58441520e6c8"
- },
- {
- "file": "packages/nx-plugin/package.json",
- "hash": "914e015d4df61e60f715666a8ca497a27b7620a9",
- "deps": [
- "devkit",
- "jest",
- "js",
- "linter",
- "npm:dotenv",
- "npm:fs-extra",
- "npm:rxjs",
- "npm:semver",
- "npm:tslib"
- ]
- },
- {
- "file": "packages/nx-plugin/project.json",
- "hash": "c42155f8c3a0a3c27cd8bb1eeb103cc40d714447"
- },
- {
- "file": "packages/nx-plugin/README.md",
- "hash": "15aabb9a7b6d4d24c82b46808dfb8a4b84e9d130"
- },
- {
- "file": "packages/nx-plugin/src/executors/e2e/compat.ts",
- "hash": "13c6ece28c10c3cefb620f9a07a48cb4b3de7809",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nx-plugin/src/executors/e2e/e2e.impl.ts",
- "hash": "63e35a8fa0295e7e11af688ecde084fae0ab5663",
- "deps": ["npm:dotenv", "devkit", "jest"]
- },
- {
- "file": "packages/nx-plugin/src/executors/e2e/schema.d.ts",
- "hash": "cdd2c2193bfbcbf3b573535470fce009c94e200f",
- "deps": ["jest"]
- },
- {
- "file": "packages/nx-plugin/src/executors/e2e/schema.json",
- "hash": "fc023641a96ed1457c9b80183481a91d5dedc11d"
- },
- {
- "file": "packages/nx-plugin/src/generators/e2e-project/e2e.spec.ts",
- "hash": "b3ddf396b2abea8fbea1bd3e134fb18652f7ad9f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nx-plugin/src/generators/e2e-project/e2e.ts",
- "hash": "dc6e33d2bab3be89616ac9533665ce54fa6bf67b",
- "deps": ["devkit", "jest", "workspace"]
- },
- {
- "file": "packages/nx-plugin/src/generators/e2e-project/files/tests/__pluginName__.spec.ts__tmpl__",
- "hash": "e4c62d874ea8d28f5a27f99b22a7c2474a1f27a0"
- },
- {
- "file": "packages/nx-plugin/src/generators/e2e-project/files/tsconfig.json__tmpl__",
- "hash": "3de54e124e2451c03952d6538a15dab26a1babb1"
- },
- {
- "file": "packages/nx-plugin/src/generators/e2e-project/schema.d.ts",
- "hash": "43dbadd9bbd6fbb694ae795f44ed97270989fc20"
- },
- {
- "file": "packages/nx-plugin/src/generators/e2e-project/schema.json",
- "hash": "d3c40b989a20ec0dcf2669ab3fd68ed28ccc4f2f"
- },
- {
- "file": "packages/nx-plugin/src/generators/executor/executor.spec.ts",
- "hash": "658327025f524659a2a701541976ad6b02b182bc",
- "deps": ["devkit", "js"]
- },
- {
- "file": "packages/nx-plugin/src/generators/executor/executor.ts",
- "hash": "1a9310a4acdd75ab6879ca7e49500a1be4584465",
- "deps": ["devkit", "nx"]
- },
- {
- "file": "packages/nx-plugin/src/generators/executor/files/executor/__fileName__/executor.spec.ts__tmpl__",
- "hash": "97f3fa015b4430d3e1b1a783c5654ea68c9221c5"
- },
- {
- "file": "packages/nx-plugin/src/generators/executor/files/executor/__fileName__/executor.ts__tmpl__",
- "hash": "7d2bb28d58129670e76dfacb0a2e6ab868d0924d"
- },
- {
- "file": "packages/nx-plugin/src/generators/executor/files/executor/__fileName__/schema.d.ts__tmpl__",
- "hash": "e243f94a61ce03c84227d7edee7652b26f73a9ab"
- },
- {
- "file": "packages/nx-plugin/src/generators/executor/files/executor/__fileName__/schema.json__tmpl__",
- "hash": "d585d76c47cb480b6ec69125c1fa94426fc1c64d"
- },
- {
- "file": "packages/nx-plugin/src/generators/executor/files/hasher/__fileName__/hasher.spec.ts__tmpl__",
- "hash": "115ddb410a3633e90675c3998ad3785b3a3a83eb"
- },
- {
- "file": "packages/nx-plugin/src/generators/executor/files/hasher/__fileName__/hasher.ts__tmpl__",
- "hash": "215ed61755f79a25760cfea8af3902e9385ca632"
- },
- {
- "file": "packages/nx-plugin/src/generators/executor/schema.d.ts",
- "hash": "7b67bda9197de61771306aea1ba23cc381b3200b"
- },
- {
- "file": "packages/nx-plugin/src/generators/executor/schema.json",
- "hash": "5a2e791730e57efa0e38e9a0ffa6a7d03a19fc2f"
- },
- {
- "file": "packages/nx-plugin/src/generators/generator/files/generator/__fileName__/generator.spec.ts__tmpl__",
- "hash": "a1756cee998e7b28d8aed6da844a92c900ff9da2"
- },
- {
- "file": "packages/nx-plugin/src/generators/generator/files/generator/__fileName__/generator.ts__tmpl__",
- "hash": "6ec01c3e27d528c71b3a1e6f52e93c18addaed58"
- },
- {
- "file": "packages/nx-plugin/src/generators/generator/files/generator/__fileName__/schema.d.ts__tmpl__",
- "hash": "8905d0c2467ff0a069122c2a8ab94344cbe4a8ad"
- },
- {
- "file": "packages/nx-plugin/src/generators/generator/files/generator/__fileName__/schema.json__tmpl__",
- "hash": "341aeedd32e42be1f7ce36aff601051c6583e6b0"
- },
- {
- "file": "packages/nx-plugin/src/generators/generator/generator.spec.ts",
- "hash": "14167a2270e8e0cc6876f002c42cbb42e2149a8d",
- "deps": ["devkit", "js"]
- },
- {
- "file": "packages/nx-plugin/src/generators/generator/generator.ts",
- "hash": "ad550464343c49ff2797f7697343cfcaab31fcb3",
- "deps": ["devkit", "nx"]
- },
- {
- "file": "packages/nx-plugin/src/generators/generator/schema.d.ts",
- "hash": "c0088067da3af81e875effb4f86e7f99b358bb53"
- },
- {
- "file": "packages/nx-plugin/src/generators/generator/schema.json",
- "hash": "ca9787d7d59a5b31d14306cb2242400c523bc06a"
- },
- {
- "file": "packages/nx-plugin/src/generators/lint-checks/generator.spec.ts",
- "hash": "7f23479f9a2d6030026ca6e4634ad70c46c5fbe5",
- "deps": ["devkit", "npm:eslint", "linter", "nx"]
- },
- {
- "file": "packages/nx-plugin/src/generators/lint-checks/generator.ts",
- "hash": "62dac38b268dfc9b8f83fb4faa9471a2aa7afe08",
- "deps": ["devkit", "npm:eslint", "nx"]
- },
- {
- "file": "packages/nx-plugin/src/generators/lint-checks/schema.d.ts",
- "hash": "e268defed66be8f63456085108ab975759463d19"
- },
- {
- "file": "packages/nx-plugin/src/generators/lint-checks/schema.json",
- "hash": "1872957d8531cd1506d409b98404fa8ed4d23445"
- },
- {
- "file": "packages/nx-plugin/src/generators/migration/files/migration/__name__/__name__.ts__tmpl__",
- "hash": "c16470b439d2dc31f587fcd1407a151a39b2f7e9"
- },
- {
- "file": "packages/nx-plugin/src/generators/migration/migration.spec.ts",
- "hash": "171a69bf1b654e4b7fb4a513663d9f9e3be92bc7",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nx-plugin/src/generators/migration/migration.ts",
- "hash": "45f8bcf4b8ae9847fce37cb3b1cf002bf1152bf9",
- "deps": ["devkit", "npm:eslint", "nx"]
- },
- {
- "file": "packages/nx-plugin/src/generators/migration/schema.d.ts",
- "hash": "d55df3f32f11dfa4db2616d0d01f5d04a7e5c6a0"
- },
- {
- "file": "packages/nx-plugin/src/generators/migration/schema.json",
- "hash": "1f407c823f1a85be06d9e9ddfcb8a5f79bc9c145"
- },
- {
- "file": "packages/nx-plugin/src/generators/plugin/files/plugin/executors.json__tmpl__",
- "hash": "b64f99d988d2c44bed20931b7768061c5a56b496"
- },
- {
- "file": "packages/nx-plugin/src/generators/plugin/files/plugin/generators.json__tmpl__",
- "hash": "ad73df570caa3c03402467c846160fae0e460d0f"
- },
- {
- "file": "packages/nx-plugin/src/generators/plugin/files/plugin/package.json__tmpl__",
- "hash": "0364fd3a35c5602c7a8656aad800e802395c2b23"
- },
- {
- "file": "packages/nx-plugin/src/generators/plugin/files/plugin/src/index.ts__tmpl__",
- "hash": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"
- },
- {
- "file": "packages/nx-plugin/src/generators/plugin/plugin.spec.ts",
- "hash": "fe73cc1312695ebac34923d684beba73cff17507",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/nx-plugin/src/generators/plugin/plugin.ts",
- "hash": "82ca999556f8e04a1219753f8f35665d32cfac65",
- "deps": ["devkit", "js", "linter", "nx"]
- },
- {
- "file": "packages/nx-plugin/src/generators/plugin/schema.d.ts",
- "hash": "ee83483a68066aa2be9e42de6d73d59489ff24e9",
- "deps": ["linter"]
- },
- {
- "file": "packages/nx-plugin/src/generators/plugin/schema.json",
- "hash": "afaa8282e2a81e0a998a52874d43775e05ac7328"
- },
- {
- "file": "packages/nx-plugin/src/generators/plugin/utils/normalize-schema.ts",
- "hash": "153f0abdfdd97a8107def4349f7b91dcbe75e382",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nx-plugin/src/migrations/update-10-2-0/update-10-2-0.spec.ts",
- "hash": "d4b062f3eafa0f93103b96b6971a72158fe413a7",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/nx-plugin/src/migrations/update-10-2-0/update-10-2-0.ts",
- "hash": "1027e5c11c5846b176cad9ce6bfb345d536fbbe8",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/nx-plugin/src/migrations/update-11-0-0/rename-ng-update-into-nx-migrate.ts",
- "hash": "9a582d95e56bbf8b8e7bc63f376b229c4c8dd8ca",
- "deps": ["workspace", "devkit"]
- },
- {
- "file": "packages/nx-plugin/src/migrations/update-11-0-0/update-schema-version-for-executors-and-generators.ts",
- "hash": "56bc598f08d11b83434bbd943e432d6b76be6cd5",
- "deps": ["workspace", "devkit"]
- },
- {
- "file": "packages/nx-plugin/src/migrations/update-14-1-9/add-swc-deps-if-needed.ts",
- "hash": "dbd3ecfceb38abad3f4f969f0ded11472c6fcf5f",
- "deps": ["devkit", "nx"]
- },
- {
- "file": "packages/nx-plugin/src/utils/testing-utils/async-commands.ts",
- "hash": "248e4db1d1c929958f7b85cd2fe6f914b2df51f1",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nx-plugin/src/utils/testing-utils/commands.ts",
- "hash": "b943a71f8a349379039c50496dbe392d0b7b7146",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nx-plugin/src/utils/testing-utils/index.ts",
- "hash": "81414ad685bfb5e3e3ba48a0f570592c4fc2de59"
- },
- {
- "file": "packages/nx-plugin/src/utils/testing-utils/nx-project.ts",
- "hash": "6235b9e3917cd98ec514a5e3de461e547092167d",
- "deps": ["devkit", "npm:fs-extra"]
- },
- {
- "file": "packages/nx-plugin/src/utils/testing-utils/paths.ts",
- "hash": "a7430522721739fe0572978195ef8bc9ac750bc8"
- },
- {
- "file": "packages/nx-plugin/src/utils/testing-utils/utils.ts",
- "hash": "5d6e0022ff69fce055f4b4685b93e52b5150c6fe",
- "deps": ["npm:fs-extra", "devkit", "nx"]
- },
- {
- "file": "packages/nx-plugin/src/utils/versions.ts",
- "hash": "a2274b18b889bd010e945d87f72c0eeb37290f75"
- },
- {
- "file": "packages/nx-plugin/testing.ts",
- "hash": "52c637a4d1713f6d575c13a1f084efcb6c4562c6"
- },
- {
- "file": "packages/nx-plugin/tsconfig.json",
- "hash": "58bd2c97a66f5e5ea5d05c8a5709ee79bad02094"
- },
- {
- "file": "packages/nx-plugin/tsconfig.lib.json",
- "hash": "e6e1541013245c4ac22875d43a397f703dc5c572"
- },
- {
- "file": "packages/nx-plugin/tsconfig.spec.json",
- "hash": "869c90c526a0fe7b4b32c39d3989c66259545d9a"
- }
- ]
- }
- },
- {
- "name": "storybook",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/storybook",
- "files": [
- {
- "file": "packages/storybook/.eslintrc.json",
- "hash": "7a43e59e3deea796655d61ae888cdd0ad74af44a"
- },
- {
- "file": "packages/storybook/executors.json",
- "hash": "99af40211761173ef01f02082a92ae40d089eeb3"
- },
- {
- "file": "packages/storybook/generators.json",
- "hash": "93350a3cb3f2d0de5387668bcbdecf8847ee744c"
- },
- {
- "file": "packages/storybook/index.ts",
- "hash": "99767d862ee9e9560679fa030e8b596740ede34a"
- },
- {
- "file": "packages/storybook/jest.config.ts",
- "hash": "43973712400584f2d165f1de6be239aa6a73806e"
- },
- {
- "file": "packages/storybook/migrations.json",
- "hash": "7962ca30b3875528f252df3ed4124f7f97301230"
- },
- {
- "file": "packages/storybook/migrations.spec.ts",
- "hash": "a03eaad2a9bdb2337c4f936ef943f3e9d1f02d9e"
- },
- {
- "file": "packages/storybook/package.json",
- "hash": "938d05f8b39e7f3cc1aa7c03275b114006cfe14c",
- "deps": [
- "cypress",
- "devkit",
- "linter",
- "workspace",
- "npm:core-js",
- "npm:dotenv",
- "npm:semver",
- "npm:ts-loader",
- "npm:tsconfig-paths-webpack-plugin"
- ]
- },
- {
- "file": "packages/storybook/presets/cypress.ts",
- "hash": "ece9209cf92b1dc793dce80e358b2d6f7de4af0b",
- "deps": ["cypress"]
- },
- {
- "file": "packages/storybook/project.json",
- "hash": "334a891999c888f240f173288fede7e5596b47cf"
- },
- {
- "file": "packages/storybook/README.md",
- "hash": "6bf685d6586c41e6a3f207ca4d498dc1a0f9d4d6"
- },
- {
- "file": "packages/storybook/src/executors/build-storybook/build-storybook.impl.spec.ts",
- "hash": "7c926e53fb1ca54741c99aa861043e2d789e6520",
- "deps": ["devkit", "npm:@storybook/core-server"]
- },
- {
- "file": "packages/storybook/src/executors/build-storybook/build-storybook.impl.ts",
- "hash": "591142011479b448af9a0e4653511d9f7fe5746d",
- "deps": ["devkit", "npm:@storybook/core-server", "npm:dotenv"]
- },
- {
- "file": "packages/storybook/src/executors/build-storybook/compat.ts",
- "hash": "b339343ae7a2abe11c5419900c466c3e23f27878",
- "deps": ["devkit"]
- },
- {
- "file": "packages/storybook/src/executors/build-storybook/schema.json",
- "hash": "e0c3c9c6c6f3e866b2509f2e6b125cb353b9263b"
- },
- {
- "file": "packages/storybook/src/executors/models.ts",
- "hash": "312f0928a916a51d08a9d368d8065623669a67a1"
- },
- {
- "file": "packages/storybook/src/executors/storybook/compat.ts",
- "hash": "e49c497e58c5b1f0743ed5904f443c5a5827a1b4",
- "deps": ["devkit"]
- },
- {
- "file": "packages/storybook/src/executors/storybook/schema.json",
- "hash": "e6fb1182d6d99ce2e791c46a068c601c62b6d0ae"
- },
- {
- "file": "packages/storybook/src/executors/storybook/storybook.impl.spec.ts",
- "hash": "34a71c89d68c955bc8c3fab3d5ddf1691d70e665",
- "deps": [
- "npm:memfs",
- "devkit",
- "npm:@storybook/core-server",
- "npm:fs-extra"
- ]
- },
- {
- "file": "packages/storybook/src/executors/storybook/storybook.impl.ts",
- "hash": "cb2e1d0f2b93f80c80dfdcdf43ab89090d3a5dc1",
- "deps": ["devkit", "npm:@storybook/core-server", "npm:dotenv"]
- },
- {
- "file": "packages/storybook/src/executors/utils.spec.ts",
- "hash": "f11e2fa330265f12c42db75312deb0d1be3c7634",
- "deps": ["npm:typescript", "devkit"]
- },
- {
- "file": "packages/storybook/src/executors/utils.ts",
- "hash": "aeacccef4ad3cc0f973dab918a48dbb86053cb94",
- "deps": [
- "devkit",
- "workspace",
- "npm:dotenv",
- "npm:semver",
- "npm:typescript"
- ]
- },
- {
- "file": "packages/storybook/src/generators/change-storybook-targets/__snapshots__/change-storybook-targets.spec.ts.snap",
- "hash": "62afbed8b49414ee2148c9c7a9656a9434ba2119"
- },
- {
- "file": "packages/storybook/src/generators/change-storybook-targets/change-storybook-targets.spec.ts",
- "hash": "258b13d432ed989305024501e3459e83b5e8a588",
- "deps": ["devkit"]
- },
- {
- "file": "packages/storybook/src/generators/change-storybook-targets/change-storybook-targets.ts",
- "hash": "9224f6753aaa25c8943290696616e470a5e44ab6",
- "deps": ["devkit"]
- },
- {
- "file": "packages/storybook/src/generators/change-storybook-targets/schema.d.ts",
- "hash": "0d9cdac014503c8cbda20ab732031f6da2489b53"
- },
- {
- "file": "packages/storybook/src/generators/change-storybook-targets/schema.json",
- "hash": "11898e43cfd79afb4d58f1af1014a25a3b258d7d"
- },
- {
- "file": "packages/storybook/src/generators/change-storybook-targets/test-configs/custom-names-config.json",
- "hash": "aaca550c33f906e960bf9bab18d3014a3a51226f"
- },
- {
- "file": "packages/storybook/src/generators/change-storybook-targets/test-configs/default-config.json",
- "hash": "c47d7f7453e3e484268220d83dffe70ce2e7cc52"
- },
- {
- "file": "packages/storybook/src/generators/change-storybook-targets/test-configs/extra-options-for-storybook.json",
- "hash": "37396f85b30cdbac837983ead45224e8d3fffad6"
- },
- {
- "file": "packages/storybook/src/generators/change-storybook-targets/test-configs/no-build-storybook-target.json",
- "hash": "e415f43eb1400dd902cbcdfd2af36812a8fd5f79"
- },
- {
- "file": "packages/storybook/src/generators/change-storybook-targets/test-configs/no-storybook-targets.json",
- "hash": "b626bca09b9ab162f0731d783d72a48d4fec02f1"
- },
- {
- "file": "packages/storybook/src/generators/change-storybook-targets/test-configs/non-angular.json",
- "hash": "db81e6f301526951e3b99b40ff8c771ecf0829df"
- },
- {
- "file": "packages/storybook/src/generators/configuration/__snapshots__/configuration.spec.ts.snap",
- "hash": "91b4742c3f51746941ebf58d2a75e8cd5130b20c"
- },
- {
- "file": "packages/storybook/src/generators/configuration/configuration.spec.ts",
- "hash": "62d841ed3d328a970fb2770b32168ca60ea2679e",
- "deps": ["devkit", "linter", "workspace"]
- },
- {
- "file": "packages/storybook/src/generators/configuration/configuration.ts",
- "hash": "99494469414e0e67e7cbc7195d00f2c05fa6ad8b",
- "deps": ["devkit", "workspace", "linter"]
- },
- {
- "file": "packages/storybook/src/generators/configuration/project-files-ts/.storybook/main.ts__tmpl__",
- "hash": "8a8411e3a5789cb08d49b28bc759234ad0a556e4"
- },
- {
- "file": "packages/storybook/src/generators/configuration/project-files-ts/.storybook/preview.ts__tmpl__",
- "hash": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"
- },
- {
- "file": "packages/storybook/src/generators/configuration/project-files-ts/.storybook/tsconfig.json__tmpl__",
- "hash": "64ec6b32ccf57f34e0ae2f8b25a9e12b89680e0f"
- },
- {
- "file": "packages/storybook/src/generators/configuration/project-files/.storybook/main.js__tmpl__",
- "hash": "bc4b7154d45eb89f5704e6abb61189d89ef5e82d"
- },
- {
- "file": "packages/storybook/src/generators/configuration/project-files/.storybook/preview.js__tmpl__",
- "hash": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"
- },
- {
- "file": "packages/storybook/src/generators/configuration/project-files/.storybook/tsconfig.json__tmpl__",
- "hash": "a9ecd20a0e1c4b93db357a707a1809dac78fc25b"
- },
- {
- "file": "packages/storybook/src/generators/configuration/root-files-ts/.storybook/main.ts",
- "hash": "acaa1f82c83bc409e7389096a840f0a56afda66b"
- },
- {
- "file": "packages/storybook/src/generators/configuration/root-files-ts/.storybook/tsconfig.json",
- "hash": "1e25d668b5a97c48c71c32cc4c39e0f235e539cb"
- },
- {
- "file": "packages/storybook/src/generators/configuration/root-files/.storybook/main.js",
- "hash": "1492ac61f6fd000a73c9f0d5995e3cfa7074c06c"
- },
- {
- "file": "packages/storybook/src/generators/configuration/root-files/.storybook/tsconfig.json",
- "hash": "1e25d668b5a97c48c71c32cc4c39e0f235e539cb"
- },
- {
- "file": "packages/storybook/src/generators/configuration/schema.d.ts",
- "hash": "1267d4d5b0824820a1e77d74c8cb9c4c9a19696e",
- "deps": ["linter"]
- },
- {
- "file": "packages/storybook/src/generators/configuration/schema.json",
- "hash": "829b4dde1ffded6147c429879a114ae7e7e0a166"
- },
- {
- "file": "packages/storybook/src/generators/configuration/test-configs/workspace-conifiguration.json",
- "hash": "cf667554384016791bcf706929c403c15dc3b0ce"
- },
- {
- "file": "packages/storybook/src/generators/configuration/util-functions.ts",
- "hash": "f49997d7d3746befc945ed32a86fea8981e4f887",
- "deps": ["devkit", "linter", "workspace"]
- },
- {
- "file": "packages/storybook/src/generators/cypress-project/__snapshots__/cypress-project.spec.ts.snap",
- "hash": "17c8131a65b2906cf7d153ea83d75c396a996b9b"
- },
- {
- "file": "packages/storybook/src/generators/cypress-project/cypress-project.spec.ts",
- "hash": "b01921077c8fbc21a26de6f68e74454c3d98df14",
- "deps": ["cypress", "devkit", "linter", "workspace"]
- },
- {
- "file": "packages/storybook/src/generators/cypress-project/cypress-project.ts",
- "hash": "103fab4e9ef7a2075da50fdda556c1b64b148201",
- "deps": ["cypress", "devkit", "linter", "workspace"]
- },
- {
- "file": "packages/storybook/src/generators/cypress-project/files/cypress.config.ts__tpl__",
- "hash": "5b3e381db7d0d23091cdd77b98ea7c11cb4ea9ae"
- },
- {
- "file": "packages/storybook/src/generators/cypress-project/schema.json",
- "hash": "fa85a557b8937876e17f91cb0c539860b79594dc"
- },
- {
- "file": "packages/storybook/src/generators/init/__snapshots__/init.spec.ts.snap",
- "hash": "cfe46a5130333bf6a818b64ccf2441ec40368ee1"
- },
- {
- "file": "packages/storybook/src/generators/init/init.spec.ts",
- "hash": "55e12dbdb925c3bb4139fa331e7e8fee2b2ba377",
- "deps": ["devkit"]
- },
- {
- "file": "packages/storybook/src/generators/init/init.ts",
- "hash": "1f3c7202aa718ad1657a088dae66b356130f1936",
- "deps": ["devkit"]
- },
- {
- "file": "packages/storybook/src/generators/init/schema.d.ts",
- "hash": "95144489336828ce6226b641053494cf558679db"
- },
- {
- "file": "packages/storybook/src/generators/init/schema.json",
- "hash": "9ac28d5bdae8c829b3e3f96d6f3b7f98d07ca38c"
- },
- {
- "file": "packages/storybook/src/migrations/update-10-2-1/update-10-2-1.spec.ts",
- "hash": "7b537e2fb0b01e7ca55f5f0084ed2a612f855965",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/storybook/src/migrations/update-10-2-1/update-10-2-1.ts",
- "hash": "9ed343a14a1fd9d4949e2666cba69140a6db89d6",
- "deps": [
- "npm:@angular-devkit/schematics",
- "workspace",
- "devkit",
- "npm:@angular-devkit/core"
- ]
- },
- {
- "file": "packages/storybook/src/migrations/update-10-3-0/update-10-3-0.spec.ts",
- "hash": "6e604cea7671c84cc227d98da4947d44f9b7b1e3",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/storybook/src/migrations/update-10-3-0/update-10-3-0.ts",
- "hash": "d1adbf219ada27150deb7a1a859fe349fc739f5f",
- "deps": [
- "npm:@angular-devkit/schematics",
- "workspace",
- "npm:@angular-devkit/core",
- "devkit"
- ]
- },
- {
- "file": "packages/storybook/src/migrations/update-11-0-12/update-storybook.spec.ts",
- "hash": "52a2c0aaa9aba536e21ffc69f6abab6251b6f334",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/storybook/src/migrations/update-11-0-12/update-storybook.ts",
- "hash": "2435676f06ff49ebce0dc98e566e6275da285d16",
- "deps": [
- "npm:@angular-devkit/schematics",
- "workspace",
- "npm:semver"
- ]
- },
- {
- "file": "packages/storybook/src/migrations/update-11-5-3/update-lint-ignores.spec.ts",
- "hash": "7526e7a8da3ac011197bfc705dfb1afbfd143fa9",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/storybook/src/migrations/update-11-5-3/update-lint-ignores.ts",
- "hash": "668e2b7796e9680f04dae3dfe13811454d95a678",
- "deps": [
- "npm:@angular-devkit/schematics",
- "workspace",
- "npm:@angular-devkit/core",
- "devkit"
- ]
- },
- {
- "file": "packages/storybook/src/migrations/update-11-6-0/update-storybook.spec.ts",
- "hash": "e0f61b995f553944b603bf34c1c0d034adb1faab",
- "deps": ["devkit"]
- },
- {
- "file": "packages/storybook/src/migrations/update-11-6-0/update-storybook.ts",
- "hash": "253888b7d18794afde97e414a7444cc183a5ebf4",
- "deps": ["workspace", "npm:semver", "devkit"]
- },
- {
- "file": "packages/storybook/src/migrations/update-12-1-0/fix-storybook-tsconfig.spec.ts",
- "hash": "d565b3c4b679a380285482e1822a8396483d0f83",
- "deps": ["devkit"]
- },
- {
- "file": "packages/storybook/src/migrations/update-12-1-0/fix-storybook-tsconfig.ts",
- "hash": "90dd905878852b57813b6dd20053745184149aa1",
- "deps": ["devkit"]
- },
- {
- "file": "packages/storybook/src/migrations/update-12-5-0/install-addon-essentials.spec.ts",
- "hash": "58f06330a5f42d92dba5380f30c843b8cffff75f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/storybook/src/migrations/update-12-5-0/install-addon-essentials.ts",
- "hash": "f1fd549db1736741840ecd485c63d3a4f2877a81",
- "deps": ["devkit", "workspace", "npm:typescript"]
- },
- {
- "file": "packages/storybook/src/migrations/update-12-5-0/migrate-storybook-6-3.spec.ts",
- "hash": "8bfbb4cb24dd10c621c42fb123335b58f0fbeaf4",
- "deps": ["devkit"]
- },
- {
- "file": "packages/storybook/src/migrations/update-12-5-0/migrate-storybook-6-3.ts",
- "hash": "e92cb8b3e04ac174939cfbc88f35da9ba26b3c54",
- "deps": ["devkit", "workspace", "npm:semver"]
- },
- {
- "file": "packages/storybook/src/migrations/update-12-5-9/__snapshots__/update-storybook-react-typings.spec.ts.snap",
- "hash": "16dda464c2c53308b1c7dfa535e96b567401d153"
- },
- {
- "file": "packages/storybook/src/migrations/update-12-5-9/update-storybook-react-typings.spec.ts",
- "hash": "0b82a3c9e52e4fc6863bc53f5cac69014efbb0e5",
- "deps": ["devkit"]
- },
- {
- "file": "packages/storybook/src/migrations/update-12-5-9/update-storybook-react-typings.ts",
- "hash": "f51dd2853f9e3c1638979c887ccbdfff11dbec41",
- "deps": ["devkit"]
- },
- {
- "file": "packages/storybook/src/migrations/update-12-8-0/__snapshots__/update-storybook-styled-jsx-typings.spec.ts.snap",
- "hash": "58ed3d3f755564631b4f226ae6bd7cae224857b1"
- },
- {
- "file": "packages/storybook/src/migrations/update-12-8-0/update-storybook-styled-jsx-typings.spec.ts",
- "hash": "789d04da30a293dbac61db215fcadbca3dc79159",
- "deps": ["devkit"]
- },
- {
- "file": "packages/storybook/src/migrations/update-12-8-0/update-storybook-styled-jsx-typings.ts",
- "hash": "96b045a9296f1bf02ebef51957a751102923a61a",
- "deps": ["devkit"]
- },
- {
- "file": "packages/storybook/src/migrations/update-13-4-6/__snapshots__/set-project-build-config.spec.ts.snap",
- "hash": "7e8041203206d1eb23a8b15e2771f36a4c7ea65e"
- },
- {
- "file": "packages/storybook/src/migrations/update-13-4-6/set-project-build-config.spec.ts",
- "hash": "d42b30084718c8741101219ba3a8567feb9498c1",
- "deps": ["devkit"]
- },
- {
- "file": "packages/storybook/src/migrations/update-13-4-6/set-project-build-config.ts",
- "hash": "a7dd382f80d061c18f808e655519dd06d329fe95",
- "deps": ["devkit"]
- },
- {
- "file": "packages/storybook/src/migrations/update-13-4-6/test-configs/custom-names-config.json",
- "hash": "492fb8d1cd54fe6957b1c0c5dd214726bc9b4bf6"
- },
- {
- "file": "packages/storybook/src/migrations/update-13-4-6/test-configs/default-config.json",
- "hash": "439d649ab46048e560a94d331756cd77867fb014"
- },
- {
- "file": "packages/storybook/src/migrations/update-13-4-6/test-configs/non-angular.json",
- "hash": "db81e6f301526951e3b99b40ff8c771ecf0829df"
- },
- {
- "file": "packages/storybook/src/migrations/update-14-0-0/migrate-defaults-5-to-6/migrate-defaults-5-to-6.spec.ts",
- "hash": "2a19e123fcba390ec8dcf108fadbc35d4d7ce530",
- "deps": ["devkit"]
- },
- {
- "file": "packages/storybook/src/migrations/update-14-0-0/migrate-defaults-5-to-6/migrate-defaults-5-to-6.ts",
- "hash": "5aa16a2ec11060237e75c6c7cee761d4ef45b2e8",
- "deps": ["devkit", "npm:semver", "workspace"]
- },
- {
- "file": "packages/storybook/src/migrations/update-14-0-0/migrate-stories-to-6-2/migrate-stories-to-6-2.spec.ts",
- "hash": "1b19a69330360dff8ac8c9e3e417cbf14600b8de",
- "deps": ["devkit", "workspace", "npm:typescript"]
- },
- {
- "file": "packages/storybook/src/migrations/update-14-0-0/migrate-stories-to-6-2/migrate-stories-to-6-2.ts",
- "hash": "34f8650e18db6f5cc6c47e3073716c4e5522d37c",
- "deps": ["devkit", "workspace", "npm:typescript"]
- },
- {
- "file": "packages/storybook/src/migrations/update-14-0-0/migrate-to-storybook-6.ts",
- "hash": "3e84c94c746fb40063014ec461ba98017b1e9787",
- "deps": ["devkit"]
- },
- {
- "file": "packages/storybook/src/migrations/update-14-1-8/change-storybook-targets.ts",
- "hash": "8ae413e3d013b172bf2c01c3ec85b3934b3758d1",
- "deps": ["devkit"]
- },
- {
- "file": "packages/storybook/src/utils/test-configs/different-target-variations.json",
- "hash": "6e365a2a636a677db300441952d5cabf9f7041b8"
- },
- {
- "file": "packages/storybook/src/utils/testing.ts",
- "hash": "b76491b6d7d5420b7d9e5fe098fbd37f8d3d91f9",
- "deps": [
- "npm:@angular-devkit/schematics",
- "devkit",
- "workspace",
- "linter",
- "npm:@angular/core"
- ]
- },
- {
- "file": "packages/storybook/src/utils/utilities.spec.ts",
- "hash": "9a264a861c8d908271f348720fea9daa59b260f7",
- "deps": ["devkit"]
- },
- {
- "file": "packages/storybook/src/utils/utilities.ts",
- "hash": "93e5476ca333afcf012101bf138e2a70b03bf443",
- "deps": ["devkit", "npm:typescript", "workspace"]
- },
- {
- "file": "packages/storybook/src/utils/versions.ts",
- "hash": "99cc57c5f4b54bdea044903ac4f61bd8ce1d054a"
- },
- {
- "file": "packages/storybook/tsconfig.json",
- "hash": "58bd2c97a66f5e5ea5d05c8a5709ee79bad02094"
- },
- {
- "file": "packages/storybook/tsconfig.lib.json",
- "hash": "1d2ddef3c1be3aa86cb55b66b9c912d3c6bf1a07"
- },
- {
- "file": "packages/storybook/tsconfig.spec.json",
- "hash": "869c90c526a0fe7b4b32c39d3989c66259545d9a"
- }
- ]
- }
- },
- {
- "name": "workspace",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/workspace",
- "files": [
- {
- "file": "packages/workspace/.babelrc",
- "hash": "0cae4a9a81270d6cf3315436f594bf2fbd4fb3e2"
- },
- {
- "file": "packages/workspace/.eslintrc.json",
- "hash": "29c949912ce49bb52b0ba403ad0705680779ae51"
- },
- {
- "file": "packages/workspace/docs/run-commands-examples.md",
- "hash": "41d43eeff62e458f67983ee34d3e6c72c8426f14"
- },
- {
- "file": "packages/workspace/docs/run-script-examples.md",
- "hash": "ddfc4c77bf80695de3cd5b770df790b73bc093ca"
- },
- {
- "file": "packages/workspace/executors.json",
- "hash": "96bab759742a2e01e844e54cec05513bcdcb1869"
- },
- {
- "file": "packages/workspace/generators.json",
- "hash": "90e0958f84b43df142ae1af3ebc2fc7873939ad3"
- },
- {
- "file": "packages/workspace/generators.ts",
- "hash": "9d860fa7307da335888559b5027b01f22df57948"
- },
- {
- "file": "packages/workspace/index.ts",
- "hash": "1eb2794da672c06097e32ed252fe198b3b3a1371",
- "deps": ["devkit", "nx"]
- },
- {
- "file": "packages/workspace/jest.config.ts",
- "hash": "0452eae6562b81a0257fb43a1dbaa469c1ea8af2"
- },
- {
- "file": "packages/workspace/migrations.json",
- "hash": "f3c86f74416acd15a5b764fe4a212f71fec4558f"
- },
- {
- "file": "packages/workspace/migrations.spec.ts",
- "hash": "ac654694972ab516bce097fca49acbe2c7908024"
- },
- {
- "file": "packages/workspace/package.json",
- "hash": "ef48748011c85dccc8597b04b314b41451693362",
- "deps": [
- "devkit",
- "npm:@parcel/watcher",
- "npm:chalk",
- "npm:chokidar",
- "npm:dotenv",
- "npm:enquirer",
- "npm:flat",
- "npm:fs-extra",
- "npm:glob",
- "npm:ignore",
- "npm:minimatch",
- "npm:npm-run-path",
- "npm:open",
- "npm:rxjs",
- "npm:semver",
- "npm:tmp",
- "npm:tslib",
- "npm:yargs",
- "npm:yargs-parser",
- "npm:prettier"
- ]
- },
- {
- "file": "packages/workspace/presets/core.json",
- "hash": "b57cee16a5f204092728507c35c9c4b86582ede5"
- },
- {
- "file": "packages/workspace/presets/npm.json",
- "hash": "060d46fc5db0fef525c8533acc46a3a28b6ab2f3"
- },
- {
- "file": "packages/workspace/project.json",
- "hash": "d586dddf540467563998a1777786a7f0a4bda0e8"
- },
- {
- "file": "packages/workspace/README.md",
- "hash": "37eb64ddbdbef18069a53a64e26181513e5cfb32"
- },
- {
- "file": "packages/workspace/src/core/file-utils.ts",
- "hash": "652835861ffbba4c7c1cf4c0ab85566911121805",
- "deps": ["nx"]
- },
- {
- "file": "packages/workspace/src/core/project-graph.ts",
- "hash": "693beb9f7b77901b87618f5f930b8d7552c1096c",
- "deps": ["nx"]
- },
- {
- "file": "packages/workspace/src/executors/counter/counter.impl.ts",
- "hash": "2bfb3d72a68eab296c5476b67c8d2cbbdcee7147"
- },
- {
- "file": "packages/workspace/src/executors/counter/schema.json",
- "hash": "c6108ab386229add4bdd09c91d8a80d009a344c8"
- },
- {
- "file": "packages/workspace/src/executors/run-commands/compat.ts",
- "hash": "c9d7cf04d19b5e083a4d1fc6625d2768b8c40c68",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/executors/run-commands/run-commands.impl.ts",
- "hash": "4404493968a5f433c3345440860536772e058f52",
- "deps": ["nx"]
- },
- {
- "file": "packages/workspace/src/executors/run-commands/schema.json",
- "hash": "d15ad9201bf5dd50883e190248dbf505280fa468"
- },
- {
- "file": "packages/workspace/src/executors/run-script/compat.ts",
- "hash": "3cb0469557bc192ef89cbd6160844be54ca4316f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/executors/run-script/run-script.impl.ts",
- "hash": "b0b79550067ddf1b4f3a4e712733c7a39f5da580",
- "deps": ["nx"]
- },
- {
- "file": "packages/workspace/src/executors/run-script/schema.json",
- "hash": "ada463360833d1e4a1759d3dcef75ccab851ab75"
- },
- {
- "file": "packages/workspace/src/generators/ci-workflow/__snapshots__/ci-workflow.spec.ts.snap",
- "hash": "5cf14a509258cba3460b06a2fcc938e6c27e4127"
- },
- {
- "file": "packages/workspace/src/generators/ci-workflow/ci-workflow.spec.ts",
- "hash": "e4690d013ab808b8dcd59ca9ab6a204a92473377",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/ci-workflow/ci-workflow.ts",
- "hash": "6ecd659410a40907439923d0e20551f9faf6417d",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/ci-workflow/files/azure/azure-pipelines.yml__tmpl__",
- "hash": "a9ddb89ed5d09cd63b3d7255f09c3182613271ef"
- },
- {
- "file": "packages/workspace/src/generators/ci-workflow/files/circleci/.circleci/config.yml__tmpl__",
- "hash": "913918953e633381aa080cf2fc08acfdbaa9d7ea"
- },
- {
- "file": "packages/workspace/src/generators/ci-workflow/files/github/.github/workflows/__workflowFileName__.yml__tmpl__",
- "hash": "9988d3f340cf9541fdcb9f8e91f4415018f235c7"
- },
- {
- "file": "packages/workspace/src/generators/ci-workflow/schema.json",
- "hash": "2851e7aadf945c1bcbc5dfa83a14f3ff4327ccba"
- },
- {
- "file": "packages/workspace/src/generators/convert-to-nx-project/convert-to-nx-project.spec.ts",
- "hash": "84ea9dccaae6463faa4d44ce2ce83cf89edd59ae",
- "deps": ["devkit", "npm:enquirer"]
- },
- {
- "file": "packages/workspace/src/generators/convert-to-nx-project/convert-to-nx-project.ts",
- "hash": "2cd1d7b5fdb97cb6e9172fdc46b7f60c79242c12",
- "deps": ["npm:enquirer", "devkit"]
- },
- {
- "file": "packages/workspace/src/generators/convert-to-nx-project/schema.d.ts",
- "hash": "2a529d9d95d8a20f2ac19bf0afcade1247a7e5d4"
- },
- {
- "file": "packages/workspace/src/generators/convert-to-nx-project/schema.json",
- "hash": "717766713274825afb48fddcbcace5a5691de8fc"
- },
- {
- "file": "packages/workspace/src/generators/convert-to-nx-project/utils/get-project-configuration-path.ts",
- "hash": "ff9ac8e5e0a81956cb11bf6be21491e0342e29db",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/library/files/lib/__dot__babelrc__tmpl__",
- "hash": "cf7ddd99c615a064ac18eb3109eee4f394ab1faf"
- },
- {
- "file": "packages/workspace/src/generators/library/files/lib/package.json__tmpl__",
- "hash": "e3a3ad83c46eb57baf768ec2c0e0be269c7bac1c"
- },
- {
- "file": "packages/workspace/src/generators/library/files/lib/README.md",
- "hash": "6c5d01351e2edea9d1def513a5d9e48268cfabb0"
- },
- {
- "file": "packages/workspace/src/generators/library/files/lib/src/index.ts__tmpl__",
- "hash": "32176b3ef175e1c81af513d1381762f4dca7e1b2"
- },
- {
- "file": "packages/workspace/src/generators/library/files/lib/src/lib/__fileName__.spec.ts__tmpl__",
- "hash": "35b0948b95087892cb9694ff9880cf254de6985e"
- },
- {
- "file": "packages/workspace/src/generators/library/files/lib/src/lib/__fileName__.ts__tmpl__",
- "hash": "ae311e3ac41f0b1ffb8f097e7f4e27ca08512f91"
- },
- {
- "file": "packages/workspace/src/generators/library/files/lib/tsconfig.json",
- "hash": "8bf55e434eef11c72ac34d04bde2ecd698fa62a4"
- },
- {
- "file": "packages/workspace/src/generators/library/files/lib/tsconfig.lib.json",
- "hash": "0c95a2973ab2db0a564ef25ed2507bf8d83f6668"
- },
- {
- "file": "packages/workspace/src/generators/library/library.spec.ts",
- "hash": "477e81a9d2adab4dcdc75e1135d94ddbc7c53f9c",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/library/library.ts",
- "hash": "0b19b198ae1b7c10e742d06af1a627b90e61e5dd",
- "deps": ["devkit", "nx"]
- },
- {
- "file": "packages/workspace/src/generators/library/schema.d.ts",
- "hash": "c9dae74e9715590d9f63d48de1b525facd007e45"
- },
- {
- "file": "packages/workspace/src/generators/library/schema.json",
- "hash": "fc671e80db3fc3d814ac19a4341635a69e228a99"
- },
- {
- "file": "packages/workspace/src/generators/move/lib/__snapshots__/update-imports.spec.ts.snap",
- "hash": "8a0103dc3c09344955f23fd39e7b8bd978c704a5"
- },
- {
- "file": "packages/workspace/src/generators/move/lib/check-destination.spec.ts",
- "hash": "9f455a7d200bb33d24966bba147816d029229423",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/check-destination.ts",
- "hash": "b2665bd79136e42997a85b747ac44daf7bab9860",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/move-project-configuration.spec.ts",
- "hash": "05345768d4f972249fa6f0986bbb8b8386004c0d",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/move-project-configuration.ts",
- "hash": "69573f8b263cb577f1a9ab3fa784079878a1ceb0",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/move-project.spec.ts",
- "hash": "307d0effa3601edc83e3c3091f8a660794ae5452",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/move-project.ts",
- "hash": "9ac9aacc343922eb538aea0d0d122e6eb8c4af37",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/normalize-schema.spec.ts",
- "hash": "9cfafa0e81e7ee2993d8ca40fe530b2219f81d9a",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/normalize-schema.ts",
- "hash": "f4ef1f1a631cc2bdaa7abe44b4501659cbd9860b",
- "deps": ["devkit", "nx"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/update-build-targets.spec.ts",
- "hash": "5b0c396280cffd2e2f2e4f116d2d0dbc263fcbe5",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/update-build-targets.ts",
- "hash": "a943dce11c930a6f55275f2fd6dd9a55171a2518",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/update-cypress-config.spec.ts",
- "hash": "aa2f7d0cd8e3f61a55ca22d5fe0a8f08c7b80b9a",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/update-cypress-config.ts",
- "hash": "e726aaf7487be738ad6b7ec42c3b020c0d487f78",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/update-default-project.spec.ts",
- "hash": "f4a9c51c734806d0b23d28991fb1e62082178296",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/update-default-project.ts",
- "hash": "9a00bb327d5e0f7c243bc3be714b47f5366bbf1c",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/update-eslintrc-json.spec.ts",
- "hash": "2f86a20a738c9a79a7dacb71f8886686e309b60a",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/update-eslintrc-json.ts",
- "hash": "ac903122de28b650b5fefd746d11ad23135628ab",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/update-implicit-dependencies.spec.ts",
- "hash": "632ded675f435e30b3177766bc3d0a4fbcfeb4f8",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/update-implicit-dependencies.ts",
- "hash": "a9f3603ba64ce9beffbbccd5ff497c9d94875848",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/update-imports.spec.ts",
- "hash": "09b8c6f256fc1a5a0fdb7f059044226928d2b5f1",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/update-imports.ts",
- "hash": "286a24aace67c0cdf88d9974b0e7e1b6b976bd30",
- "deps": ["devkit", "nx", "npm:typescript"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/update-jest-config.spec.ts",
- "hash": "005caf7b281ecfc456430439a2e16bd708dbee4a",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/update-jest-config.ts",
- "hash": "256134ac7e8b3e45b5c45fbbe3d9a4e15f7e2068",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/update-package-json.spec.ts",
- "hash": "dae2131d81975f1ada237406aebff5b5ee86c163",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/update-package-json.ts",
- "hash": "6dd227294a49825e700a3c440a02bf01bfffd91c",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/update-project-root-files.spec.ts",
- "hash": "bdf9b70f13b54c054fbbb7e46aefb66d972e9e2d",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/update-project-root-files.ts",
- "hash": "22d377088c8ff23917b9d7c5932d20e2314a8b5b",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/update-readme.spec.ts",
- "hash": "4c83972a3ddea1964d1f718d7ba02944720188c8",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/update-readme.ts",
- "hash": "ebc66f433a866eb8977ea06d4070539e5dd6aaef",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/update-storybook-config.spec.ts",
- "hash": "c25a39dd2f526540dae228d29a691681e8a45b47",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/update-storybook-config.ts",
- "hash": "977dc21f31f2d22d558ea3c11a930394269fd026",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/lib/utils.ts",
- "hash": "26b5453c777b9649fcd08cfab85ab08f3e27bef7",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/move.spec.ts",
- "hash": "234f2b0bf3dc8f493e013feb557b59487c310561",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/move.ts",
- "hash": "2ded499afb7a4c16b72666ce4538c898f37d1f5f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/move/schema.d.ts",
- "hash": "53a360d1709dd3ee5afe05017b274444542032cf"
- },
- {
- "file": "packages/workspace/src/generators/move/schema.json",
- "hash": "350e90f90ad80828c68b04be84ae3329aeaad952"
- },
- {
- "file": "packages/workspace/src/generators/new/__snapshots__/new.spec.ts.snap",
- "hash": "06132c4e0758205b492e4107e571465000ea7ee0"
- },
- {
- "file": "packages/workspace/src/generators/new/new.spec.ts",
- "hash": "9c8fd5faf73cb7f2f1f1f095dab7ac0397af88a0",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/new/new.ts",
- "hash": "5296742e32e3e50da3df7290180113d36a21273b",
- "deps": ["devkit", "npm:yargs-parser"]
- },
- {
- "file": "packages/workspace/src/generators/new/schema.json",
- "hash": "a23442c27269b00dd1de89d9b2b9aa4d600e464b"
- },
- {
- "file": "packages/workspace/src/generators/npm-package/files/index.js.template",
- "hash": "3451e9b7ed77c5e234c85ef85b155e809842a78f"
- },
- {
- "file": "packages/workspace/src/generators/npm-package/npm-package.spec.ts",
- "hash": "9f6cc0165a6d9b0ab584b56ee25999782a510f78",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/npm-package/npm-package.ts",
- "hash": "e475df8624f23553afe3668cbcf9f732399a7b01",
- "deps": ["devkit", "nx"]
- },
- {
- "file": "packages/workspace/src/generators/npm-package/schema.json",
- "hash": "8ff754734e6af87f14ae37e82a69e2762a5967c1"
- },
- {
- "file": "packages/workspace/src/generators/preset/__snapshots__/preset.spec.ts.snap",
- "hash": "7b6bcd58c8776f051c8eb98b4c9994236abd9668"
- },
- {
- "file": "packages/workspace/src/generators/preset/files/angular/app.module.ts",
- "hash": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"
- },
- {
- "file": "packages/workspace/src/generators/preset/files/pnpm-workspace/pnpm-workspace.yaml",
- "hash": "600b4bb4863e9c64e21b6185f21096e1777c5a6d"
- },
- {
- "file": "packages/workspace/src/generators/preset/preset.spec.ts",
- "hash": "703241322492122fa315f7fb0920a433b88ef0d2",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/preset/preset.ts",
- "hash": "85ba5496abd6fe03a3a888297ffcde87da101a0e",
- "deps": [
- "devkit",
- "nx",
- "npm:@angular/core",
- "npm:@angular/common",
- "npm:@nestjs/common",
- "npm:react",
- "npm:@testing-library/react",
- "npm:express"
- ]
- },
- {
- "file": "packages/workspace/src/generators/preset/schema.d.ts",
- "hash": "50be2f7e3dd2708e5755f3bb9006cd0551f3e1a0",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/preset/schema.json",
- "hash": "9fec15553076cfca12481312dbb2504ab0c14f06"
- },
- {
- "file": "packages/workspace/src/generators/remove/lib/__snapshots__/update-jest-config.spec.ts.snap",
- "hash": "049484599e15d3ee78685b64cfddeb7ab9c7b866"
- },
- {
- "file": "packages/workspace/src/generators/remove/lib/check-dependencies.spec.ts",
- "hash": "d1a4d2e2ac5473135b28f72e1a30ae20ec5f480b",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/remove/lib/check-dependencies.ts",
- "hash": "5f8bb5f5ff11000a1a5390884e5b76062228b5ec",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/remove/lib/check-targets.spec.ts",
- "hash": "8d114dcc4122fb7c53cbd384dcd50bb5b9aed89a",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/remove/lib/check-targets.ts",
- "hash": "58e0edc4b35b5ed00d13ccc5cd8868cb3fddf09a",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/remove/lib/remove-project-config.spec.ts",
- "hash": "7cabca041aaee3bd37d04821025eb552cd2f97f0",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/remove/lib/remove-project-config.ts",
- "hash": "8ac38f77dd6ba16392918480c5b04f208b58b12c",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/remove/lib/remove-project.spec.ts",
- "hash": "e0f0b7ff459b4d4695d3922d34245a52dca630df",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/remove/lib/remove-project.ts",
- "hash": "8e3a09309e3d2f63b6b310c3f1cb41c600743ad4",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/remove/lib/test-files/jest.config.ts",
- "hash": "77a1a0010c5572b94d35f495910e7f3e48a5424d"
- },
- {
- "file": "packages/workspace/src/generators/remove/lib/update-jest-config.spec.ts",
- "hash": "e0e806573b5235ccfb25075bb82db792001cbfe6",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/remove/lib/update-jest-config.ts",
- "hash": "7a5fa9501615b52dd43b2e4a28fde757f1845c8c",
- "deps": ["devkit", "npm:typescript"]
- },
- {
- "file": "packages/workspace/src/generators/remove/lib/update-tsconfig.spec.ts",
- "hash": "b71b4721143eecdb51a1be7adbec5735281cad28",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/remove/lib/update-tsconfig.ts",
- "hash": "a5a2c633b6e631dca86bd2714cf23f064320a2c7",
- "deps": ["devkit", "nx"]
- },
- {
- "file": "packages/workspace/src/generators/remove/remove.ts",
- "hash": "54b24bbc112ee1881cc74f484453076a736a6a01",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/remove/schema.d.ts",
- "hash": "bfc6a591bb1adb0b8685ddcbf72ab2f4165404fe"
- },
- {
- "file": "packages/workspace/src/generators/remove/schema.json",
- "hash": "ab27686b603c43ea0031e4363bb6138c364e69da"
- },
- {
- "file": "packages/workspace/src/generators/run-commands/run-commands.spec.ts",
- "hash": "df39c8871ade0079fd88edce56ee9af62ca68a29",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/run-commands/run-commands.ts",
- "hash": "42312a54df4acc60147d6d1d96f651a98e59e1c7",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/run-commands/schema.d.ts",
- "hash": "9a94e1a512445c9c9f8f1530e05e580e7bd2bf2c"
- },
- {
- "file": "packages/workspace/src/generators/run-commands/schema.json",
- "hash": "69b20391137ec0d5c77e0fdd6589c100cd7c020f"
- },
- {
- "file": "packages/workspace/src/generators/utils/decorate-angular-cli.js__tmpl__",
- "hash": "79e58d5c5843055044db81c68c34c306dbf263fa"
- },
- {
- "file": "packages/workspace/src/generators/utils/get-npm-package-version.ts",
- "hash": "f98174cb3330b24290c1c98d4e7abbbad4a5ca7c"
- },
- {
- "file": "packages/workspace/src/generators/utils/insert-import.spec.ts",
- "hash": "18d3c258ca80fd18539c4d124ed8a5cf1cc37485",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/utils/insert-import.ts",
- "hash": "ebf13ceb5b280393e222919c932d09db1e9b85f9",
- "deps": ["devkit", "npm:typescript"]
- },
- {
- "file": "packages/workspace/src/generators/utils/insert-statement.spec.ts",
- "hash": "527ac03f3efe63b2f8d6751608309f6b5702adda",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/utils/insert-statement.ts",
- "hash": "85dfee7004461668c5a0b08df2f5f0de40106a7f",
- "deps": ["devkit", "npm:typescript"]
- },
- {
- "file": "packages/workspace/src/generators/utils/presets.ts",
- "hash": "e4a91772c25a7c759783b27b2a8293e5fd66b8d4"
- },
- {
- "file": "packages/workspace/src/generators/workspace-generator/files/index.ts__tmpl__",
- "hash": "1bbe1f066df96d381c294341bfd13e83658b3994"
- },
- {
- "file": "packages/workspace/src/generators/workspace-generator/files/schema.json__tmpl__",
- "hash": "ec10698f02a298ed45f7cfc06ea3190ed76b4c79"
- },
- {
- "file": "packages/workspace/src/generators/workspace-generator/schema.d.ts",
- "hash": "13e049e4b1cd10337fe12395c79380c93137308b"
- },
- {
- "file": "packages/workspace/src/generators/workspace-generator/schema.json",
- "hash": "775975ee8d6223b030c03ef907436569f7518737"
- },
- {
- "file": "packages/workspace/src/generators/workspace-generator/workspace-generator.spec.ts",
- "hash": "ed541ba38bda19514992be3a776fc3a6daca82e9",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/workspace-generator/workspace-generator.ts",
- "hash": "6a7c00a0f66fd74625955ba5c28bb5f6748b57f3",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/generators/workspace/__snapshots__/workspace.spec.ts.snap",
- "hash": "8a0e79adc57842d4d97a3aed31370082d246f027"
- },
- {
- "file": "packages/workspace/src/generators/workspace/files/__dot__editorconfig",
- "hash": "6e87a003da89defd554080af5af93600cc9f91fe"
- },
- {
- "file": "packages/workspace/src/generators/workspace/files/__dot__gitignore",
- "hash": "f5a5e0b5a2bdff14002b5037fdaf2ae1eb3a55f1"
- },
- {
- "file": "packages/workspace/src/generators/workspace/files/__dot__prettierignore",
- "hash": "d0b804da2a462044bb1c63364440b2c2164e86ad"
- },
- {
- "file": "packages/workspace/src/generators/workspace/files/__dot__vscode/extensions.json__tmpl__",
- "hash": "116b35fadacea33949feb622c944494d40ed23ab"
- },
- {
- "file": "packages/workspace/src/generators/workspace/files/__workspaceFile__.json__tmpl__",
- "hash": "2aacd396f2dd62067d7475b09156cbd2e70f4c4e"
- },
- {
- "file": "packages/workspace/src/generators/workspace/files/nx.json__tmpl__",
- "hash": "76914de80446ab2ea8d242a33767705acac457d8"
- },
- {
- "file": "packages/workspace/src/generators/workspace/files/package.json__tmpl__",
- "hash": "815bbc2cd9d72eef3fcb573ac26084e62742058b"
- },
- {
- "file": "packages/workspace/src/generators/workspace/files/README.md__tmpl__",
- "hash": "d9d3986ff8b7966b22fe6053059399966251cfb3"
- },
- {
- "file": "packages/workspace/src/generators/workspace/files/tools/generators/.gitkeep",
- "hash": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"
- },
- {
- "file": "packages/workspace/src/generators/workspace/files/tools/tsconfig.tools.json",
- "hash": "99428e1473febd3534100c4ce261c5904b461d8a"
- },
- {
- "file": "packages/workspace/src/generators/workspace/files/tsconfig.base.json",
- "hash": "11253ac5c2b7bc7ccc8003036c9379134582575c"
- },
- {
- "file": "packages/workspace/src/generators/workspace/schema.d.ts",
- "hash": "10398c15a76a7ca180d102a66b4f236191fcfbd0"
- },
- {
- "file": "packages/workspace/src/generators/workspace/schema.json",
- "hash": "5a948204e18aa63679a2da5b362c250b93f0fb2f"
- },
- {
- "file": "packages/workspace/src/generators/workspace/workspace.spec.ts",
- "hash": "18049d6afe887e3073e71098ae8d152592806de4",
- "deps": ["devkit", "npm:ajv", "nx"]
- },
- {
- "file": "packages/workspace/src/generators/workspace/workspace.ts",
- "hash": "f307f2b8936cebbf2849541457b3f69a88998aa9",
- "deps": ["devkit", "nx"]
- },
- {
- "file": "packages/workspace/src/migrations/update-12-5-0/add-target-dependencies.ts",
- "hash": "038881269236b45de6b3c8a91286dab7fbb574f0",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/migrations/update-13-0-0/config-locations/config-locations.spec.ts",
- "hash": "2fdda0c4063557e727e82afb399c34123012239b",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/migrations/update-13-0-0/config-locations/config-locations.ts",
- "hash": "30b33555402bd454216272a6b414e017cb5a93c8",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/migrations/update-13-0-0/set-default-base-if-not-set.spec.ts",
- "hash": "eea59b815013c9131d96fab9ee47a5e1c0050c02",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/migrations/update-13-0-0/set-default-base-if-not-set.ts",
- "hash": "04d21c10923d481ce024556edc1c49f845e225d1",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/migrations/update-13-10-0/update-decorate-cli.ts",
- "hash": "9334b9a991673222b3ed0282b748a6de9eca2ced",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/migrations/update-13-10-0/update-tasks-runner.ts",
- "hash": "d450289045463d655b4125253f8f4aede47e8a7c",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/migrations/update-13-2-0/set-parallel-default.ts",
- "hash": "030a77515f470dd7c60aaae0fe3e4f468d7ff716",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/migrations/update-13-3-0/update-tsc-executor-location.spec.ts",
- "hash": "7c1d68a7170f7c9774033c10e6b3c67c8bb5a092",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/migrations/update-13-3-0/update-tsc-executor-location.ts",
- "hash": "2850c235418b92f92539b6498417ad1fda55b945",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/migrations/update-13-6-0/remove-old-task-runner-options.spec.ts",
- "hash": "cb0b9a25dddf22fc7dda7e05d9199ca3874e42f6",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/migrations/update-13-6-0/remove-old-task-runner-options.ts",
- "hash": "665518a4434b502dca43cdc808e74832b73b8db6",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/migrations/update-13-9-0/replace-tao-with-nx.ts",
- "hash": "addea9c1bc5a5eef2d856439b8f9bc4e4d0993e4",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/migrations/update-13-9-0/update-decorate-cli.ts",
- "hash": "eae7efc8c2562ec1948245df2a84223d41e63bce",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/migrations/update-14-0-0/change-npm-script-executor.spec.ts",
- "hash": "ba26be4f1b2644f191bfa3cb9ae4b0c8f8f75e9c",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/migrations/update-14-0-0/change-npm-script-executor.ts",
- "hash": "ee5eed0caa4a7a4ace2c08c71fd0ad8544bd0d88",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/migrations/update-14-0-0/change-nx-json-presets.spec.ts",
- "hash": "ccc0cab11d96b4ecf836b94c6d37083060edb16e",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/migrations/update-14-0-0/change-nx-json-presets.ts",
- "hash": "aef3df3d3ef48f3df6c0605d121cb28c82369873",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/migrations/update-14-2-0/enable-source-analysis.ts",
- "hash": "a534ac484e39567b10d0424ab910bce103d17590",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/tasks-runner/cache.ts",
- "hash": "e0f8a3d7ac0ef35286ea6cb8c78fc9515f1da2aa",
- "deps": ["nx"]
- },
- {
- "file": "packages/workspace/src/tasks-runner/default-tasks-runner.ts",
- "hash": "97cf174945c94c3e77e97bb94940f7c24fb2fdf2",
- "deps": ["nx"]
- },
- {
- "file": "packages/workspace/src/tasks-runner/life-cycle.ts",
- "hash": "cbff9a6e40d0dae14d57ae0887e43e4a030155be",
- "deps": ["nx"]
- },
- {
- "file": "packages/workspace/src/tasks-runner/life-cycles/dynamic-run-many-terminal-output-life-cycle.ts",
- "hash": "52d7c8bfc9a18295d553753d3c661577a2909993",
- "deps": ["nx"]
- },
- {
- "file": "packages/workspace/src/tasks-runner/tasks-runner-v2.ts",
- "hash": "e88bc28a20429333570ca46dbed39c144404a235",
- "deps": ["nx"]
- },
- {
- "file": "packages/workspace/src/tasks-runner/tasks-runner.ts",
- "hash": "bb2a5effd8a2d5ae68f35fc3e8e8b5d5d1fa04f7",
- "deps": ["nx", "devkit"]
- },
- {
- "file": "packages/workspace/src/tasks-runner/utils.ts",
- "hash": "b655d1650c461ce9d679ce3e3927d8495a60d196",
- "deps": ["nx"]
- },
- {
- "file": "packages/workspace/src/tslint/nxEnforceModuleBoundariesRule.spec.ts",
- "hash": "78ac58238b1b68128d3cfa0138c55bf7a001cbfc",
- "deps": [
- "npm:memfs",
- "npm:tslint",
- "npm:typescript",
- "devkit",
- "nx"
- ]
- },
- {
- "file": "packages/workspace/src/tslint/nxEnforceModuleBoundariesRule.ts",
- "hash": "66b26154b70807ac7638c1ee75d027f8c6b8020f",
- "deps": ["npm:tslint", "npm:typescript", "devkit", "nx"]
- },
- {
- "file": "packages/workspace/src/utilities/app-root.ts",
- "hash": "a4e612047e6d1ca8125de939960d6b40709b0e42",
- "deps": ["nx"]
- },
- {
- "file": "packages/workspace/src/utilities/assets.ts",
- "hash": "a84d55d70b350b4b94ea8341a3144312885da4d5",
- "deps": ["npm:glob"]
- },
- {
- "file": "packages/workspace/src/utilities/ast-utils.ts",
- "hash": "77a29d53f9c9ed9ba2c873d5d110eb94f4ecd529",
- "deps": ["devkit", "npm:typescript"]
- },
- {
- "file": "packages/workspace/src/utilities/buildable-libs-utils.spec.ts",
- "hash": "e3c30cfd39dc82bbe7900d207d8d08fefc13f8c8",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/utilities/buildable-libs-utils.ts",
- "hash": "231f50e2aef239cb02a4719379b1ee194363af7f",
- "deps": ["devkit", "npm:typescript", "nx"]
- },
- {
- "file": "packages/workspace/src/utilities/create-package-json.ts",
- "hash": "8038c29d8cef70ef127947c8196f5286bac95473",
- "deps": ["devkit", "nx"]
- },
- {
- "file": "packages/workspace/src/utilities/default-base.spec.ts",
- "hash": "859ff3949fe1987c696ac8bc8feb9c7c2990e236"
- },
- {
- "file": "packages/workspace/src/utilities/default-base.ts",
- "hash": "42a410f41bb1909540197cec9fdd764b82a17d9e"
- },
- {
- "file": "packages/workspace/src/utilities/executor-options-utils.spec.ts",
- "hash": "5b98139d13a338c55d8fe34bb7ca7955bae90e1e",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/utilities/executor-options-utils.ts",
- "hash": "bbcefef7ff6ef8c09a4a3653b61f9476374a1437",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/utilities/fileutils.spec.ts",
- "hash": "d3acf32602a6afeda28d22305e6ae9ef1bdca17d",
- "deps": ["npm:memfs"]
- },
- {
- "file": "packages/workspace/src/utilities/fileutils.ts",
- "hash": "6ccccaeb9ef716aea373fa03bf144539da410b79",
- "deps": ["nx"]
- },
- {
- "file": "packages/workspace/src/utilities/generate-globs.ts",
- "hash": "eefb58fa265676744f0f00b1099a2dd5c686bb92",
- "deps": ["devkit", "nx"]
- },
- {
- "file": "packages/workspace/src/utilities/output.ts",
- "hash": "4879397aac66e628470f68a8a7decdaac64f42c2",
- "deps": ["nx"]
- },
- {
- "file": "packages/workspace/src/utilities/plugins/community-plugins.ts",
- "hash": "dd8f84c66f17d16d954e741d64e1d242a3c29b57",
- "deps": ["npm:chalk"]
- },
- {
- "file": "packages/workspace/src/utilities/plugins/core-plugins.ts",
- "hash": "2c5ab108ee1544d30d9a295b1f66604014cf02f8",
- "deps": ["npm:chalk"]
- },
- {
- "file": "packages/workspace/src/utilities/plugins/index.ts",
- "hash": "9ac357e92d22cfcc5c205fa5405bf8546ddd35b7"
- },
- {
- "file": "packages/workspace/src/utilities/plugins/installed-plugins.ts",
- "hash": "97851ccd7e3ded7c7dde248954eaaf18adef6539",
- "deps": ["npm:chalk", "devkit", "nx"]
- },
- {
- "file": "packages/workspace/src/utilities/plugins/models.ts",
- "hash": "695dab75f1355de959133ffa146fce3e760d49ed",
- "deps": ["nx"]
- },
- {
- "file": "packages/workspace/src/utilities/plugins/plugin-capabilities.ts",
- "hash": "8703989ed32ffc04ac3f2396eb88769e53f55132",
- "deps": ["devkit", "npm:chalk", "nx"]
- },
- {
- "file": "packages/workspace/src/utilities/plugins/shared.ts",
- "hash": "534feccefec66b287622c7a2c6206b234d160ac2"
- },
- {
- "file": "packages/workspace/src/utilities/prettier.ts",
- "hash": "6332922d528c1d91b3b5638431e9cdd18734dfa2",
- "deps": ["npm:prettier"]
- },
- {
- "file": "packages/workspace/src/utilities/project-type.ts",
- "hash": "73c86ef4b4b2018ad8f61a336235a05db2234cd7",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/utilities/run-tasks-in-serial.ts",
- "hash": "9cba28a0f662713595f20ad34542c2b4e369446b",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/utilities/set-default-collection.ts",
- "hash": "d52ddfd2deee92fda1516da8c31901a2aa5070f1",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/utilities/typescript.ts",
- "hash": "a01f8ba1c13fb491a7e49c26b1ae595c2cbcc8fd",
- "deps": ["devkit", "npm:typescript"]
- },
- {
- "file": "packages/workspace/src/utilities/typescript/compilation.ts",
- "hash": "8b8d45b887750c6787bbfc0d69d1e3cc000ec85b",
- "deps": ["devkit", "npm:fs-extra", "npm:typescript"]
- },
- {
- "file": "packages/workspace/src/utilities/typescript/find-nodes.ts",
- "hash": "ca4369f8014f9cd817865829d86f09f40198306b",
- "deps": ["npm:typescript"]
- },
- {
- "file": "packages/workspace/src/utilities/typescript/get-source-nodes.ts",
- "hash": "e2b6fa7f24da629c3423f1429f5c660ac84f8ab3",
- "deps": ["npm:typescript"]
- },
- {
- "file": "packages/workspace/src/utilities/version-utils.ts",
- "hash": "9e693139ee90478b303b6970cca822211fa1aa46",
- "deps": ["npm:semver"]
- },
- {
- "file": "packages/workspace/src/utils/app-root.ts",
- "hash": "1946df902090bf82fee2ec2eb111328f61d1f073",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/utils/ast-utils.spec.ts",
- "hash": "cd9337f36caeeaaad1393a51e631e41bc5770f4c",
- "deps": ["npm:@angular-devkit/schematics"]
- },
- {
- "file": "packages/workspace/src/utils/ast-utils.ts",
- "hash": "e2a87d4775d77097208044f1b1afc07e8583506d",
- "deps": [
- "npm:@angular-devkit/schematics",
- "npm:typescript",
- "devkit",
- "npm:@angular-devkit/core"
- ]
- },
- {
- "file": "packages/workspace/src/utils/cli-config-utils.spec.ts",
- "hash": "bdb36d99b9856260a14203cb26b95186bb94db38"
- },
- {
- "file": "packages/workspace/src/utils/cli-config-utils.ts",
- "hash": "eba2d955dcd9ccaae34e60742f99296babda08ef",
- "deps": ["npm:@angular-devkit/schematics", "devkit"]
- },
- {
- "file": "packages/workspace/src/utils/fileutils.ts",
- "hash": "f9a2e53f409ae2597a5801f0944fc8f5fde569e9",
- "deps": ["nx"]
- },
- {
- "file": "packages/workspace/src/utils/graph-utils.spec.ts",
- "hash": "6259f52efe5d5e3656ede8455c38f1b69bc66c51",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/utils/graph-utils.ts",
- "hash": "dbf88e2f35c4b51bc1621857ac8bce2f106dcd2d",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/utils/lint.ts",
- "hash": "a323959928dd298a73f245f077ef5a56dd47d028",
- "deps": [
- "npm:@angular-devkit/core",
- "npm:@angular-devkit/schematics",
- "devkit"
- ]
- },
- {
- "file": "packages/workspace/src/utils/output.ts",
- "hash": "01398095f91e4b0dbf156b12c2a7ce2badb86046",
- "deps": ["npm:chalk"]
- },
- {
- "file": "packages/workspace/src/utils/perf-logging.ts",
- "hash": "ce3b8cbc6378164b1a3b40c08c7ccb9ab84dd07e"
- },
- {
- "file": "packages/workspace/src/utils/project-type.ts",
- "hash": "454def4325f7347927fe8a51a4620fbf84f9e23e",
- "deps": [
- "npm:@angular-devkit/schematics",
- "npm:@angular-devkit/core"
- ]
- },
- {
- "file": "packages/workspace/src/utils/rules/add-install-task.ts",
- "hash": "ab7fb6c38e9082ccea1e242317f582572ea9c214",
- "deps": ["npm:@angular-devkit/schematics"]
- },
- {
- "file": "packages/workspace/src/utils/rules/check-project-exists.spec.ts",
- "hash": "79a1ae21d32b8082f31da13ae0315285396b4f80",
- "deps": ["npm:@angular-devkit/schematics"]
- },
- {
- "file": "packages/workspace/src/utils/rules/check-project-exists.ts",
- "hash": "021a6ca20283bbe9a7aa81f15cb6276f9a7f0998",
- "deps": ["npm:@angular-devkit/schematics", "npm:rxjs"]
- },
- {
- "file": "packages/workspace/src/utils/rules/deleteFile.ts",
- "hash": "2e145397453f79e6601a7001150e87228c768834",
- "deps": ["npm:@angular-devkit/schematics"]
- },
- {
- "file": "packages/workspace/src/utils/rules/format-files.spec.ts",
- "hash": "cb23ef3b79d64383e09946f2a239d8cbc248bd44",
- "deps": [
- "npm:@angular-devkit/schematics",
- "npm:prettier",
- "nx",
- "devkit"
- ]
- },
- {
- "file": "packages/workspace/src/utils/rules/format-files.ts",
- "hash": "41f68cf6e2463c5e43f6687a4f639c27edd9bab4",
- "deps": [
- "npm:@angular-devkit/schematics",
- "npm:rxjs",
- "devkit",
- "nx",
- "npm:prettier"
- ]
- },
- {
- "file": "packages/workspace/src/utils/rules/move-npm-packages.spec.ts",
- "hash": "6ab7b696c6b0e223890b0dd573410cbb96923627",
- "deps": ["npm:@angular-devkit/schematics"]
- },
- {
- "file": "packages/workspace/src/utils/rules/move-npm-packages.ts",
- "hash": "ab49394337115682d3da0fcbcab72d99408c35bc",
- "deps": ["npm:@angular-devkit/schematics"]
- },
- {
- "file": "packages/workspace/src/utils/rules/ng-add.ts",
- "hash": "c701f53a124540fae605110377263fa715355770",
- "deps": ["npm:@angular-devkit/schematics"]
- },
- {
- "file": "packages/workspace/src/utils/rules/rename-npm-packages.spec.ts",
- "hash": "f870a96feac27ad619ca659bbb66e9969edeb9d7",
- "deps": ["npm:@angular-devkit/schematics"]
- },
- {
- "file": "packages/workspace/src/utils/rules/rename-npm-packages.ts",
- "hash": "576033eba24f6c6d1c58f392605b0c99a5218a2e",
- "deps": ["npm:@angular-devkit/schematics"]
- },
- {
- "file": "packages/workspace/src/utils/rules/rename-package-imports.spec.ts",
- "hash": "c184aa06959fcc666c5c74496e20292fab36eaae",
- "deps": ["npm:@angular-devkit/schematics"]
- },
- {
- "file": "packages/workspace/src/utils/rules/rename-package-imports.ts",
- "hash": "283c3d3d730b4306f0ac9e0d5f849a56ed420c46",
- "deps": [
- "npm:typescript",
- "npm:@angular-devkit/schematics",
- "npm:@angular-devkit/core"
- ]
- },
- {
- "file": "packages/workspace/src/utils/rules/to-js.ts",
- "hash": "05a855fa8b41c1468f19ccd8cc08ccc30b157b68",
- "deps": [
- "npm:typescript",
- "npm:@angular-devkit/schematics",
- "npm:@angular-devkit/core"
- ]
- },
- {
- "file": "packages/workspace/src/utils/rules/update-karma-conf.spec.ts",
- "hash": "de9df05ffc162ff2ea6c199bf0c40b2e1bfcb131",
- "deps": ["npm:@angular-devkit/schematics"]
- },
- {
- "file": "packages/workspace/src/utils/rules/update-karma-conf.ts",
- "hash": "908f4030029781e67fb1e9dc4f504d69a7255615",
- "deps": ["npm:@angular-devkit/schematics", "devkit"]
- },
- {
- "file": "packages/workspace/src/utils/rules/visit-not-ignored-files.ts",
- "hash": "74cbb07981054b27be4afb388fecc623947bf313",
- "deps": [
- "npm:@angular-devkit/core",
- "npm:@angular-devkit/schematics",
- "npm:ignore"
- ]
- },
- {
- "file": "packages/workspace/src/utils/rules/workspace.spec.ts",
- "hash": "c27fcf072e4c43e495b7ebea2336eedb8b98246c",
- "deps": [
- "npm:@angular-devkit/schematics",
- "npm:@angular-devkit/core"
- ]
- },
- {
- "file": "packages/workspace/src/utils/rules/workspace.ts",
- "hash": "a9cee88ab48ad0cdcdfe5ea60a8166d84bff508a",
- "deps": [
- "npm:@angular-devkit/core",
- "npm:@angular-devkit/schematics"
- ]
- },
- {
- "file": "packages/workspace/src/utils/runtime-lint-utils.spec.ts",
- "hash": "53f0ce78cacbebe02ec40644399c7297d5587cea",
- "deps": ["devkit"]
- },
- {
- "file": "packages/workspace/src/utils/runtime-lint-utils.ts",
- "hash": "41015d1699ec2484a61d318b9f418fdbe5cbdabe",
- "deps": ["devkit", "nx"]
- },
- {
- "file": "packages/workspace/src/utils/strings.spec.ts",
- "hash": "346545405ca45a04b3a3cb2f9abb9c9f9b16040b"
- },
- {
- "file": "packages/workspace/src/utils/strings.ts",
- "hash": "140fe1c3e80d4e342497d8d2f394f0565750c213"
- },
- {
- "file": "packages/workspace/src/utils/testing-utils.ts",
- "hash": "35df2581d022efc2ca1f43c96afffb3f060cc6d5",
- "deps": [
- "npm:@angular-devkit/schematics",
- "npm:@angular-devkit/core",
- "devkit",
- "npm:@angular-devkit/architect"
- ]
- },
- {
- "file": "packages/workspace/src/utils/testing.ts",
- "hash": "ea848d29fd90cd4a2e9d752bcf6a160d11c41344",
- "deps": [
- "npm:@angular-devkit/schematics",
- "npm:@angular-devkit/architect",
- "npm:@angular-devkit/core",
- "devkit"
- ]
- },
- {
- "file": "packages/workspace/src/utils/update-packages-in-package-json.ts",
- "hash": "f8cdd68897f5b7f8984dbf3b71cbc6dd0a5c9291",
- "deps": ["npm:@angular-devkit/schematics", "npm:semver"]
- },
- {
- "file": "packages/workspace/src/utils/update-task.ts",
- "hash": "761b830612c29ec86feb13bc7a5365e7e878dd28",
- "deps": ["npm:@angular-devkit/schematics", "npm:rxjs"]
- },
- {
- "file": "packages/workspace/src/utils/version-utils.ts",
- "hash": "a01e1e86aaa0789be214d318c9cfefc62bfd2d3f"
- },
- {
- "file": "packages/workspace/src/utils/versions.ts",
- "hash": "79ee5b08b1087e0860d155de4f51f7d561fb4ae0"
- },
- {
- "file": "packages/workspace/src/utils/workspace.spec.ts",
- "hash": "2fef421c4e91a6287759abf4d8f12ff7923de0f5",
- "deps": ["npm:@angular-devkit/schematics"]
- },
- {
- "file": "packages/workspace/src/utils/workspace.ts",
- "hash": "7961c776792a21724401c405bf8c1a71e3230f4f",
- "deps": [
- "npm:@angular-devkit/schematics",
- "npm:@angular-devkit/core"
- ]
- },
- {
- "file": "packages/workspace/tasks-runners/default.ts",
- "hash": "2dc1b8076eddb14fb7022c13fe87df0895fa41e0",
- "deps": ["nx"]
- },
- {
- "file": "packages/workspace/testing.ts",
- "hash": "295759d6b8680403f760e5fc3c7cf9ca54fa229a"
- },
- {
- "file": "packages/workspace/tsconfig.json",
- "hash": "58bd2c97a66f5e5ea5d05c8a5709ee79bad02094"
- },
- {
- "file": "packages/workspace/tsconfig.lib.json",
- "hash": "5c589aef9e7c76c6bd9a4eea2464ea8a75508919"
- },
- {
- "file": "packages/workspace/tsconfig.spec.json",
- "hash": "46f9467f3bd81cb7ec6abc5dcec5c1d35c42f28a"
- }
- ]
- }
- },
- {
- "name": "nx-dev-e2e",
- "type": "e2e",
- "data": {
- "tags": ["scope:nx-dev", "type:e2e"],
- "root": "nx-dev/nx-dev-e2e",
- "files": [
- {
- "file": "nx-dev/nx-dev-e2e/.eslintrc.json",
- "hash": "696cb8b12127425419f6d2809c5f15a5963d86de"
- },
- {
- "file": "nx-dev/nx-dev-e2e/cypress.json",
- "hash": "7e04c6cd6648dfd30016e71bfec0e65778526736"
- },
- {
- "file": "nx-dev/nx-dev-e2e/project.json",
- "hash": "7238d7e37a2346d716c76993b4adcd019e60c284"
- },
- {
- "file": "nx-dev/nx-dev-e2e/src/fixtures/.gitkeep",
- "hash": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"
- },
- {
- "file": "nx-dev/nx-dev-e2e/src/integration/additional-api-references.spec.ts",
- "hash": "a87165f35aab4c05806d99fba02a105bd70d926d"
- },
- {
- "file": "nx-dev/nx-dev-e2e/src/integration/app.spec.ts",
- "hash": "4a67c4351e1df76f5ddc47e3032f971212c3a079"
- },
- {
- "file": "nx-dev/nx-dev-e2e/src/integration/helpers.ts",
- "hash": "8bfd6292260125a5e40bc4c6b8241a42b603bfdc"
- },
- {
- "file": "nx-dev/nx-dev-e2e/src/integration/nx-cloud-documentation.spec.ts",
- "hash": "038fe74d5f51c09df48be94df0321b158d3b3105"
- },
- {
- "file": "nx-dev/nx-dev-e2e/src/integration/packages.spec.ts",
- "hash": "b57e7a4f0606c0a62b05acacfc8a14078ea259b3"
- },
- {
- "file": "nx-dev/nx-dev-e2e/src/support/commands.ts",
- "hash": "11e5f772fa708d3d34acb0cb1d3e47cbeae88276"
- },
- {
- "file": "nx-dev/nx-dev-e2e/src/support/index.ts",
- "hash": "3d469a6b6cf31eb66117d73e278bcf74f398f1db"
- },
- {
- "file": "nx-dev/nx-dev-e2e/tsconfig.json",
- "hash": "78d684cc23ebb6106305c83a26a0b9f7691849aa"
- }
- ]
- }
- },
- {
- "name": "nx-dev-ui-markdoc",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "nx-dev/ui-markdoc",
- "files": [
- {
- "file": "nx-dev/ui-markdoc/.babelrc",
- "hash": "ccae900be42788285eb6e1b3a2af4b81f56f14fe"
- },
- {
- "file": "nx-dev/ui-markdoc/.eslintrc.json",
- "hash": "734ddaceea447738208c9519158ad6b3062f3929"
- },
- {
- "file": "nx-dev/ui-markdoc/jest.config.ts",
- "hash": "6d5aa66f9c068f4c037babad5aa35328a98e17bc"
- },
- {
- "file": "nx-dev/ui-markdoc/project.json",
- "hash": "d9c1de8270f955cecb38cda1cf8fdd6bc09b3ba3"
- },
- {
- "file": "nx-dev/ui-markdoc/README.md",
- "hash": "aeeb30bae53e9e7caa02fe31e26bdb5a25e7e5b2"
- },
- {
- "file": "nx-dev/ui-markdoc/src/index.ts",
- "hash": "cbdde30ce5ec00eaa83523179eea6803d3ac4853",
- "deps": [
- "npm:@markdoc/markdoc",
- "nx-dev-models-document",
- "npm:react"
- ]
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/nodes/fence.component.tsx",
- "hash": "f59f1a81c0fb2e7891d619b9475b7de0226ec9e7",
- "deps": [
- "npm:react",
- "npm:react-copy-to-clipboard",
- "npm:react-syntax-highlighter"
- ]
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/nodes/fence.schema.ts",
- "hash": "08b95bba72b33ac566dddf90209e20963f968fda",
- "deps": ["npm:@markdoc/markdoc"]
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/nodes/heading.component.tsx",
- "hash": "6d4adf260e036cd00c5637d7534390b81b90f575",
- "deps": ["npm:@heroicons/react", "npm:react"]
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/nodes/heading.schema.ts",
- "hash": "9df6c8873a0f3bfe044b23d75e9813e6d16e8bd4",
- "deps": ["npm:@markdoc/markdoc"]
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/nodes/helpers/transform-image-path.spec.ts",
- "hash": "492083b4630b2b3fd77cf80c1de6cfcc3e6b23c8"
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/nodes/helpers/transform-image-path.ts",
- "hash": "7d6f4e8bc1488f2ea23bfe5c01904054f6fa73e7",
- "deps": ["nx-dev-models-document"]
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/nodes/helpers/uri-transformer.ts",
- "hash": "469904a9f3ccce6fdb7dd4c59e4b306faee3614c"
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/nodes/image.schema.ts",
- "hash": "154615cd33b92e08d8fe2a29ec56af4c84bf2375",
- "deps": ["npm:@markdoc/markdoc", "nx-dev-models-document"]
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/nodes/link.component.tsx",
- "hash": "7d320e48834b844a3acd3bd3413a5d747f7d0114",
- "deps": ["npm:next"]
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/nodes/link.schema.ts",
- "hash": "e34f8a2b6beb3c17fc410e244ce93f250dc1d6c9"
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/tags/callout.component.tsx",
- "hash": "1bd191ba0622b11322cdd37387b3c8a96968b456",
- "deps": ["npm:@heroicons/react", "npm:classnames", "npm:react"]
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/tags/callout.schema.ts",
- "hash": "a58827e920eb28ebd6f7694a412e04daf539e215",
- "deps": ["npm:@markdoc/markdoc"]
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/tags/github-repository.component.tsx",
- "hash": "fd373e7712f73f11f3e4d132dbd3039823c14ef3",
- "deps": ["npm:@heroicons/react"]
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/tags/github-repository.schema.ts",
- "hash": "d7fd4e74cb893a830046d405f37fb3fec6cba5fd",
- "deps": ["npm:@markdoc/markdoc"]
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/tags/iframe.component.tsx",
- "hash": "caefbde43b5d12f117d336f4e6bdb9f86e713196"
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/tags/iframe.schema.ts",
- "hash": "55449d52b895760e9a66fa9538e80272e74bd1de",
- "deps": ["npm:@markdoc/markdoc"]
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/tags/nx-cloud-section.component.tsx",
- "hash": "cf59d05c1d32e85f5af446e9c9159c3c4f7520b2",
- "deps": ["npm:react"]
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/tags/nx-cloud-section.schema.ts",
- "hash": "df0e44318ffff5c79175ae9a72e0e9a3a49f8187",
- "deps": ["npm:@markdoc/markdoc"]
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/tags/side-by-side.component.tsx",
- "hash": "76e0cf046455962a741aa0b5764ecdb8cb71a1e9",
- "deps": ["npm:react"]
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/tags/side-by-side.schema.ts",
- "hash": "099d894e0f559b831807ab53e9643f28781d30fc",
- "deps": ["npm:@markdoc/markdoc"]
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/tags/tabs.component.tsx",
- "hash": "2f928baeb31ad12f3bbfaed735c25447a2d442c8",
- "deps": ["npm:classnames", "npm:react"]
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/tags/tabs.schema.ts",
- "hash": "8785a412013446a58b59b7d39a739753b0071d3f",
- "deps": ["npm:@markdoc/markdoc"]
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/tags/vs-code-ad.component.tsx",
- "hash": "2d90a62ee670bb1b9e45e28cb838376c1ff6f524"
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/tags/vs-code-ad.schema.ts",
- "hash": "51bb0b37940052259e5cc90c4a7f3a5778341fcd",
- "deps": ["npm:@markdoc/markdoc"]
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/tags/youtube.components.tsx",
- "hash": "1e07549619b3d3620f7bbeae4dc730a7f4f664e7"
- },
- {
- "file": "nx-dev/ui-markdoc/src/lib/tags/youtube.schema.ts",
- "hash": "77ff65ed41f9f82cbfe7605fb03e962b4cd757ba",
- "deps": ["npm:@markdoc/markdoc"]
- },
- {
- "file": "nx-dev/ui-markdoc/tsconfig.json",
- "hash": "4c089585ed6b0a3c4767aee6a136bb6f47cad2b6"
- },
- {
- "file": "nx-dev/ui-markdoc/tsconfig.lib.json",
- "hash": "af84f21cfc8066d0302f5772b7c157e81d418617"
- },
- {
- "file": "nx-dev/ui-markdoc/tsconfig.spec.json",
- "hash": "ff08addd60ff581234ec9423d2bb90f31d8166e8"
- }
- ]
- }
- },
- {
- "name": "angular",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/angular",
- "files": [
- {
- "file": "packages/angular/.eslintrc.json",
- "hash": "c58bbc02588d5976f10a8696c9c38e91299d2146"
- },
- {
- "file": "packages/angular/docs/webpack-browser-examples.md",
- "hash": "b9832c8082315a6cb3599b886f2238011badaa67"
- },
- {
- "file": "packages/angular/docs/webpack-server-examples.md",
- "hash": "156893f754b3a051029676694d34ebea3064367c"
- },
- {
- "file": "packages/angular/executors.json",
- "hash": "844b65f3d0abc0d4171f6401b26ee194e6f17f8b"
- },
- {
- "file": "packages/angular/executors.ts",
- "hash": "5f6b4e06670e2a4d31eee42436496d6be682f2b3"
- },
- {
- "file": "packages/angular/generators.json",
- "hash": "ff2d3c9929293c9aab6be8a84cea67576a4f44ed"
- },
- {
- "file": "packages/angular/generators.ts",
- "hash": "ad0a4eb92732587da8bf8713b8e0da1d70ad22f9"
- },
- {
- "file": "packages/angular/index.ts",
- "hash": "ba5e98d619b4c4faa674316314601de080a84b2d"
- },
- {
- "file": "packages/angular/jest.config.ts",
- "hash": "caaa84cffdcea05a3941a9d2ac03dc52dcd14f67"
- },
- {
- "file": "packages/angular/mf/index.ts",
- "hash": "7fdf9d52a2161e07c30b977d6ace2e39e1c7f376"
- },
- {
- "file": "packages/angular/mf/mf.ts",
- "hash": "b045eeef70a20aea247d051c04c09bfe3d2474a5"
- },
- {
- "file": "packages/angular/mf/ng-package.json",
- "hash": "bb6786ef97ad717de5324caf6b2669240d61b7b5"
- },
- {
- "file": "packages/angular/migrations.json",
- "hash": "552901b6e071651770720df00b25989331aed8b0"
- },
- {
- "file": "packages/angular/migrations.spec.ts",
- "hash": "0c6e37ef567a93ba20b17eced651bcd6865f2777"
- },
- {
- "file": "packages/angular/module-federation/index.ts",
- "hash": "98d8f117707c6884522480528df65da5920ce273"
- },
- {
- "file": "packages/angular/ng-package.json",
- "hash": "23be7ab2a874bb0c0d5ad0beb00a438d601d648f"
- },
- {
- "file": "packages/angular/package.json",
- "hash": "3af78dc203373ee5ede4708587ef0203fb61c9a4",
- "deps": [
- "npm:@angular-devkit/schematics",
- "cypress",
- "devkit",
- "jest",
- "linter",
- "storybook",
- "web",
- "workspace",
- "npm:@phenomnomnominal/tsquery",
- "npm:@schematics/angular",
- "npm:chalk",
- "npm:chokidar",
- "npm:http-server",
- "npm:ignore",
- "npm:jasmine-marbles",
- "npm:magic-string",
- "npm:minimatch",
- "npm:semver",
- "npm:ts-node",
- "npm:tsconfig-paths",
- "npm:webpack",
- "npm:webpack-merge"
- ]
- },
- {
- "file": "packages/angular/project.json",
- "hash": "87e406bdc86ea9d1ac94f7b25a1aa10ddb25439f"
- },
- {
- "file": "packages/angular/README.md",
- "hash": "ab7286d6ec56ec1f61e3c9fbef04ed60b76c829b"
- },
- {
- "file": "packages/angular/scripts/nx-cli-warning.js",
- "hash": "6f057f6e7330f6ee648ec1f60432a8174fce09df",
- "deps": ["nx"]
- },
- {
- "file": "packages/angular/spec/data-persistence.spec.ts",
- "hash": "f805cf500070882c59d15c4e2ca16c4ec17512c5"
- },
- {
- "file": "packages/angular/spec/testing-utils.spec.ts",
- "hash": "7f07c8cb8f7d7aecd88e57ab0b19fa71a533ae6c",
- "deps": ["npm:rxjs"]
- },
- {
- "file": "packages/angular/src/builders/module-federation-dev-server/module-federation-dev-server.impl.ts",
- "hash": "a81260e61c3b59232d7e58ccf6fcafbd34f20e1f",
- "deps": [
- "devkit",
- "nx",
- "npm:@angular-devkit/architect",
- "npm:@angular-devkit/core"
- ]
- },
- {
- "file": "packages/angular/src/builders/module-federation-dev-server/schema.d.ts",
- "hash": "a44af5612092aeec42633e19a30015f76bad70a8"
- },
- {
- "file": "packages/angular/src/builders/module-federation-dev-server/schema.json",
- "hash": "9709d9d4ac2c848d71e2559410dc99a0f04ec153"
- },
- {
- "file": "packages/angular/src/builders/utilities/webpack.ts",
- "hash": "fd3b84ce38e7a5adf69949439fc3fe6a821789b1",
- "deps": ["npm:ts-node", "npm:tsconfig-paths"]
- },
- {
- "file": "packages/angular/src/builders/webpack-browser/schema.json",
- "hash": "931da41f911b1e4a534afd3d48ad96d583440128"
- },
- {
- "file": "packages/angular/src/builders/webpack-browser/webpack-browser.impl.ts",
- "hash": "56c8fbfba9f5b90127382e7e1a789cf827a8b617",
- "deps": [
- "npm:@angular-devkit/architect",
- "npm:@angular-devkit/build-angular",
- "npm:@angular-devkit/core",
- "devkit",
- "workspace",
- "npm:rxjs",
- "npm:webpack-merge"
- ]
- },
- {
- "file": "packages/angular/src/builders/webpack-server/lib/index.ts",
- "hash": "f9451963f55a2b8f6c45cb2af98935b2ec403598"
- },
- {
- "file": "packages/angular/src/builders/webpack-server/lib/normalize-options.ts",
- "hash": "b8cc2b3fd2f2815dd5b05accae2c3b1b1266b7f6"
- },
- {
- "file": "packages/angular/src/builders/webpack-server/schema.d.ts",
- "hash": "f534977441bf71d70ef142d232db44acbfa5fe03"
- },
- {
- "file": "packages/angular/src/builders/webpack-server/schema.json",
- "hash": "232044420ac73cd11724470022b643556ea3a93e"
- },
- {
- "file": "packages/angular/src/builders/webpack-server/webpack-server.impl.ts",
- "hash": "4978d36039cd7e9f46420761dfbe3eac6672a823",
- "deps": [
- "npm:@angular-devkit/architect",
- "npm:@angular-devkit/build-angular",
- "npm:@angular-devkit/core",
- "devkit",
- "web",
- "workspace",
- "nx",
- "npm:webpack-merge"
- ]
- },
- {
- "file": "packages/angular/src/executors/delegate-build/compat.ts",
- "hash": "7e6c066075c2850fca1e9c31568b7f2b6b04de00",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/executors/delegate-build/delegate-build.impl.spec.ts",
- "hash": "f4771401daf379fe2029e4594689ee5900860cc6",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/angular/src/executors/delegate-build/delegate-build.impl.ts",
- "hash": "e9f90df888ac3304a1f8044fe86fe25b508c4256",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/angular/src/executors/delegate-build/schema.d.ts",
- "hash": "fae6eb0f6d9892984e8a8e4f51daf48106448ed2"
- },
- {
- "file": "packages/angular/src/executors/delegate-build/schema.json",
- "hash": "9c2e55bb3ac7cae3b85bb688a99d676bc699d822"
- },
- {
- "file": "packages/angular/src/executors/file-server/compat.ts",
- "hash": "094efc423152340e16481ea0d7c25caa077a714f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/executors/file-server/file-server.impl.ts",
- "hash": "0a96dae29f5508ac0d1c045b1427e29dfddfe39d",
- "deps": ["devkit", "npm:chokidar", "npm:ignore", "nx"]
- },
- {
- "file": "packages/angular/src/executors/file-server/schema.d.ts",
- "hash": "119d207103daa389ce5b30ef23a45b2bdf5a3e19"
- },
- {
- "file": "packages/angular/src/executors/file-server/schema.json",
- "hash": "e50c80bfe0116888a259fd3d0b64e1b7fb27ee07"
- },
- {
- "file": "packages/angular/src/executors/ng-packagr-lite/compat.ts",
- "hash": "e88113f3945178058b91809f00ad20bc64536efd",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/executors/ng-packagr-lite/ng-packagr-adjustments/ng-package/entry-point/compile-ngc.di.ts",
- "hash": "075f7ddf83cffff1efd82231d9d75f3a40cdd8e8",
- "deps": ["npm:injection-js", "npm:ng-packagr"]
- },
- {
- "file": "packages/angular/src/executors/ng-packagr-lite/ng-packagr-adjustments/ng-package/entry-point/compile-ngc.transform.ts",
- "hash": "2fd67e74228787ae826444ec7a365c49bb243b89",
- "deps": ["npm:ng-packagr", "npm:typescript"]
- },
- {
- "file": "packages/angular/src/executors/ng-packagr-lite/ng-packagr-adjustments/ng-package/entry-point/entry-point.di.ts",
- "hash": "35595cf3f0e24b99ca63ae6596377e574e4f342d",
- "deps": ["npm:injection-js", "npm:ng-packagr"]
- },
- {
- "file": "packages/angular/src/executors/ng-packagr-lite/ng-packagr-adjustments/ng-package/entry-point/entry-point.transform.ts",
- "hash": "a4957f13417aa47f6b982195dc93802a7453b7da",
- "deps": ["devkit", "npm:ng-packagr", "npm:rxjs"]
- },
- {
- "file": "packages/angular/src/executors/ng-packagr-lite/ng-packagr-adjustments/ng-package/entry-point/write-package.di.ts",
- "hash": "b1038c6931613d6117089b3e2c94d3bfe358bccb",
- "deps": ["npm:injection-js", "npm:ng-packagr"]
- },
- {
- "file": "packages/angular/src/executors/ng-packagr-lite/ng-packagr-adjustments/ng-package/entry-point/write-package.transform.ts",
- "hash": "2e7d9c61c3143e9d305362bd86903024872db980",
- "deps": ["devkit", "npm:ng-packagr", "npm:@angular/compiler"]
- },
- {
- "file": "packages/angular/src/executors/ng-packagr-lite/ng-packagr-adjustments/ng-package/options.di.ts",
- "hash": "bcaaeba992e06d8c2c4c44dbbb85cd7ff488342e",
- "deps": ["npm:injection-js", "npm:ng-packagr"]
- },
- {
- "file": "packages/angular/src/executors/ng-packagr-lite/ng-packagr-adjustments/ng-package/package.di.ts",
- "hash": "53c385333eb240331f9b62cff6db2c74247395f0",
- "deps": ["npm:injection-js", "npm:ng-packagr"]
- },
- {
- "file": "packages/angular/src/executors/ng-packagr-lite/ng-packagr-adjustments/ngc/compile-source-files.ts",
- "hash": "48bf448878aa8d3ced92687e95ee0b58ecc9f57c",
- "deps": [
- "npm:@angular/compiler-cli",
- "npm:ng-packagr",
- "npm:typescript"
- ]
- },
- {
- "file": "packages/angular/src/executors/ng-packagr-lite/ng-packagr-adjustments/styles/stylesheet-processor.di.ts",
- "hash": "868e90db24c6d8b780a430ca79898da2ec88e7e1",
- "deps": ["npm:injection-js"]
- },
- {
- "file": "packages/angular/src/executors/ng-packagr-lite/ng-packagr-adjustments/styles/stylesheet-processor.ts",
- "hash": "9b17c36923d302be4b689f31025bd810eff4e7f2",
- "deps": [
- "npm:ng-packagr",
- "npm:postcss-preset-env",
- "npm:postcss-url",
- "npm:postcss",
- "npm:sass",
- "npm:less",
- "npm:stylus"
- ]
- },
- {
- "file": "packages/angular/src/executors/ng-packagr-lite/ng-packagr-adjustments/ts/cache-compiler-host.ts",
- "hash": "4997ee55429e2afae70c6b13f72d043b4c60f637",
- "deps": [
- "npm:@angular/compiler-cli",
- "npm:ng-packagr",
- "npm:typescript"
- ]
- },
- {
- "file": "packages/angular/src/executors/ng-packagr-lite/ng-packagr-lite.impl.spec.ts",
- "hash": "2f23965e35f9ffb64594c7d4183c24f43a9d5bfa",
- "deps": ["devkit", "workspace", "npm:ng-packagr", "npm:rxjs"]
- },
- {
- "file": "packages/angular/src/executors/ng-packagr-lite/ng-packagr-lite.impl.ts",
- "hash": "bb95ef66b3db5e4ed06d9f32f4cb3943a35f3086",
- "deps": ["devkit", "workspace", "npm:ng-packagr"]
- },
- {
- "file": "packages/angular/src/executors/ng-packagr-lite/schema.json",
- "hash": "0573d3bd49711d2e7655374d6e4eb220ce486e89"
- },
- {
- "file": "packages/angular/src/executors/package/compat.ts",
- "hash": "50966de81d508ea40127aac285c47d2f027e70f3",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/executors/package/ng-packagr-adjustments/ng-package/entry-point/compile-ngc.di.ts",
- "hash": "a0ea7cf921bba14379852911b1f937489a482d05",
- "deps": ["npm:injection-js", "npm:ng-packagr"]
- },
- {
- "file": "packages/angular/src/executors/package/ng-packagr-adjustments/ng-package/entry-point/compile-ngc.transform.ts",
- "hash": "9d3c47228b4ee4da90b6a5061e7fec6bff7df6af",
- "deps": ["npm:ng-packagr", "npm:typescript"]
- },
- {
- "file": "packages/angular/src/executors/package/ng-packagr-adjustments/ng-package/entry-point/entry-point.di.ts",
- "hash": "d8070cb478bcfbb91c2132299d2f7848567a3ad2",
- "deps": ["npm:injection-js", "npm:ng-packagr"]
- },
- {
- "file": "packages/angular/src/executors/package/ng-packagr-adjustments/ng-package/options.di.ts",
- "hash": "bcaaeba992e06d8c2c4c44dbbb85cd7ff488342e",
- "deps": ["npm:injection-js", "npm:ng-packagr"]
- },
- {
- "file": "packages/angular/src/executors/package/ng-packagr-adjustments/ng-package/package.di.ts",
- "hash": "084c8076726fe9d9416cec8bdf1ed256d1d0c551",
- "deps": ["npm:injection-js", "npm:ng-packagr"]
- },
- {
- "file": "packages/angular/src/executors/package/ng-packagr-adjustments/ngc/compile-source-files.ts",
- "hash": "01be8118e8a2deffb29e014f75f4afdee6d2f2ce",
- "deps": [
- "npm:@angular/compiler-cli",
- "npm:ng-packagr",
- "npm:typescript"
- ]
- },
- {
- "file": "packages/angular/src/executors/package/ng-packagr-adjustments/styles/stylesheet-processor.di.ts",
- "hash": "868e90db24c6d8b780a430ca79898da2ec88e7e1",
- "deps": ["npm:injection-js"]
- },
- {
- "file": "packages/angular/src/executors/package/ng-packagr-adjustments/styles/stylesheet-processor.ts",
- "hash": "a0310bc817f5ba526842ae606b50bdc7924ab35d",
- "deps": [
- "npm:ng-packagr",
- "npm:postcss-preset-env",
- "npm:postcss-url",
- "npm:postcss",
- "npm:sass",
- "npm:less",
- "npm:stylus"
- ]
- },
- {
- "file": "packages/angular/src/executors/package/ng-packagr-adjustments/ts/cache-compiler-host.ts",
- "hash": "4997ee55429e2afae70c6b13f72d043b4c60f637",
- "deps": [
- "npm:@angular/compiler-cli",
- "npm:ng-packagr",
- "npm:typescript"
- ]
- },
- {
- "file": "packages/angular/src/executors/package/package.impl.spec.ts",
- "hash": "de6d35fad1cd899b7436a26dd122853b4b0f664e",
- "deps": ["devkit", "workspace", "npm:ng-packagr", "npm:rxjs"]
- },
- {
- "file": "packages/angular/src/executors/package/package.impl.ts",
- "hash": "b337e90b66d87dd62530765a4fac876a6cb9cb2c",
- "deps": ["devkit", "workspace", "npm:ng-packagr", "npm:rxjs"]
- },
- {
- "file": "packages/angular/src/executors/package/schema.d.ts",
- "hash": "abe918b1ac5af2986dcda3f2c62572465f6b2ce5"
- },
- {
- "file": "packages/angular/src/executors/package/schema.json",
- "hash": "73eb6425e2a2e7222155e6a4c06dc4d21d4f8886"
- },
- {
- "file": "packages/angular/src/executors/utilities/tailwindcss.ts",
- "hash": "1216326df6da8cad460eb929b172256fc94858fe",
- "deps": ["devkit", "npm:postcss-import"]
- },
- {
- "file": "packages/angular/src/generators/add-linting/__snapshots__/add-linting.spec.ts.snap",
- "hash": "5e81a2a78711b115d7d6aaf7f9943caa05305017"
- },
- {
- "file": "packages/angular/src/generators/add-linting/add-linting.spec.ts",
- "hash": "7c47060dbb90203e43afb9012813f4749e89f873",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/angular/src/generators/add-linting/add-linting.ts",
- "hash": "f368e14acea1caeaf062183d3aae8a4718852e9c",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/angular/src/generators/add-linting/compat.ts",
- "hash": "de50b010701e0cb0e0c402483b62d3a9964ff9f3",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/add-linting/lib/add-angular-eslint-dependencies.ts",
- "hash": "526c04aca4b70a2fc08e51a3ce1f60f34f54410b",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/add-linting/lib/add-project-lint-target.ts",
- "hash": "19e0ec52138f7c86e2ea9bbd65da50d86ad21756",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/add-linting/lib/create-eslint-configuration.ts",
- "hash": "83739df838b4f15d83911a8a2a915d999e16af0d",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/angular/src/generators/add-linting/schema.d.ts",
- "hash": "c471cf65b15c630b6cbf0f1f54c87ab93978ffbe"
- },
- {
- "file": "packages/angular/src/generators/add-linting/schema.json",
- "hash": "d6b6fe68bdd1d4406f57efe93f62c0034bc05f47"
- },
- {
- "file": "packages/angular/src/generators/application/__snapshots__/application.spec.ts.snap",
- "hash": "618a807e24547d0c660aa26b63da34a427733c74"
- },
- {
- "file": "packages/angular/src/generators/application/application.compat.ts",
- "hash": "991fe623994f8655255ef191c84913c11660c36f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/application/application.spec.ts",
- "hash": "9d3ca58e293c09f8a8b6d288d6d1f4f556eaa596",
- "deps": ["cypress", "devkit", "linter"]
- },
- {
- "file": "packages/angular/src/generators/application/application.ts",
- "hash": "53eb9b93f30d9f146a4c8c62c9cb3c95ed4e7c89",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/angular/src/generators/application/files/src/favicon.ico",
- "hash": "317ebcb2336e0833a22dddf0ab287849f26fda57"
- },
- {
- "file": "packages/angular/src/generators/application/files/tsconfig.editor.json__tpl__",
- "hash": "bee8a42aca84f5d8974d67a9a9d096fd5dc953bb"
- },
- {
- "file": "packages/angular/src/generators/application/files/tsconfig.json",
- "hash": "595598eddbf3e9afb57b78e929a72fdddbae66e3"
- },
- {
- "file": "packages/angular/src/generators/application/lib/add-e2e.ts",
- "hash": "d2aad93dfb2ca17acb44f7a507b9183f70f3e71a",
- "deps": ["devkit", "cypress", "workspace", "linter"]
- },
- {
- "file": "packages/angular/src/generators/application/lib/add-linting.ts",
- "hash": "ab48337e7869eced4137b8a06efa99d169bcdab7",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/angular/src/generators/application/lib/add-mf.ts",
- "hash": "638bd53bec72b211b907d4d0077c27877cbad574",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/application/lib/add-protractor.ts",
- "hash": "33ed79ed76094c3610a73c6161b3d8310618a5ec",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/application/lib/add-proxy-config.ts",
- "hash": "221f952c042f27c8345ebd4a750bba52fd3d8943",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/application/lib/add-unit-test-runner.ts",
- "hash": "9fbf2f821d44b6eb070d11afdbace6cbbff2c7eb",
- "deps": ["devkit", "jest"]
- },
- {
- "file": "packages/angular/src/generators/application/lib/convert-to-standalone-app.ts",
- "hash": "1bcd1691cc54cda66daaaf0c4a3bfc6dbdf75111",
- "deps": [
- "devkit",
- "npm:@phenomnomnominal/tsquery",
- "npm:@angular/platform-browser"
- ]
- },
- {
- "file": "packages/angular/src/generators/application/lib/create-files.ts",
- "hash": "ed1a081d8c68a55a7fc8333a8abc40d89407e8e3",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/angular/src/generators/application/lib/enable-strict-type-checking.ts",
- "hash": "9b6b64c245e67cdbdb4d61e62ef217480b1b7a77",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/application/lib/index.ts",
- "hash": "babd5ad1dc37bd32f71510d59cb61e0de642f5b2"
- },
- {
- "file": "packages/angular/src/generators/application/lib/normalize-options.ts",
- "hash": "a51679c11d79fc4c2ee28fa5fa19d5845d018e0b",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/angular/src/generators/application/lib/normalized-schema.ts",
- "hash": "27e2e03f6a4b3eff5d676b7010466de3f354ef07"
- },
- {
- "file": "packages/angular/src/generators/application/lib/nrwl-home-tpl.ts",
- "hash": "37c5bdf3f796cb197c3dfa4c9e8a557b4493c76f"
- },
- {
- "file": "packages/angular/src/generators/application/lib/remove-scaffolded-e2e.ts",
- "hash": "0dacc06817b6c1610aa7689c7ee8a245d4fde9f8",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/application/lib/root-router-config.ts",
- "hash": "0a4188f4395b043425efa4d7c72bd49d57cb458c",
- "deps": ["devkit", "workspace", "npm:typescript"]
- },
- {
- "file": "packages/angular/src/generators/application/lib/set-app-strict-default.ts",
- "hash": "21b2fc2a598931cd84c2536fc3be63fdfe48d4a0",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/application/lib/set-default-project.ts",
- "hash": "3380ab0a560a49324140b90c067f2efff81e7777",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/application/lib/update-app-component-template.ts",
- "hash": "2ec7041167d0c777426040d0bc616176ef2341c1",
- "deps": ["devkit", "npm:typescript", "workspace"]
- },
- {
- "file": "packages/angular/src/generators/application/lib/update-component-spec.ts",
- "hash": "1e598540e9f8aac7de4d470b99bbbc01fab2b7ee",
- "deps": ["devkit", "npm:typescript", "workspace"]
- },
- {
- "file": "packages/angular/src/generators/application/lib/update-config-files.ts",
- "hash": "ad7b203202756fce776b27a85dc45c0690c9ebae",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/angular/src/generators/application/lib/update-e2e-project.ts",
- "hash": "386344c22fc334504082629fc878f5f45f3ccb90",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/angular/src/generators/application/lib/update-editor-tsconfig.ts",
- "hash": "a7e94d33df29c194a35825965ffc49fb181b81bc",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/application/lib/update-nx-component-template.ts",
- "hash": "a56564c07fd038e828314f3da3638d4b6f9619bc",
- "deps": ["devkit", "npm:typescript", "workspace"]
- },
- {
- "file": "packages/angular/src/generators/application/schema.d.ts",
- "hash": "3ae6a81bf7b0756942483af643eed0f886646e94",
- "deps": ["linter"]
- },
- {
- "file": "packages/angular/src/generators/application/schema.json",
- "hash": "5978429cd090172c8ca0cb91eaa60a7d20132eb5"
- },
- {
- "file": "packages/angular/src/generators/change-storybook-targets/change-storybook-targets.ts",
- "hash": "9ede117d7451ce29f770b6efbce39f636da22b10",
- "deps": ["devkit", "storybook"]
- },
- {
- "file": "packages/angular/src/generators/change-storybook-targets/compat.ts",
- "hash": "b00ad49789078bd3685341cb28f4cb3b00f7a951",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/change-storybook-targets/schema.d.ts",
- "hash": "e5fe924e01d2f72d7cdb2ba4cb4dd78bab024311"
- },
- {
- "file": "packages/angular/src/generators/change-storybook-targets/schema.json",
- "hash": "74f3f2bb17c1b99afc7303e798477b0299fe2089"
- },
- {
- "file": "packages/angular/src/generators/component-cypress-spec/__snapshots__/component-cypress-spec.spec.ts.snap",
- "hash": "509541a52a1372f8a469e9f82ebba60237bb89b3"
- },
- {
- "file": "packages/angular/src/generators/component-cypress-spec/compat.ts",
- "hash": "3047bda8bb9ada6803c00854c44fe112246e5b02",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/component-cypress-spec/component-cypress-spec.spec.ts",
- "hash": "9a78cab9ffce95e67ceeb2e6f2766a8e53222dbd",
- "deps": ["cypress", "devkit", "npm:@angular/core"]
- },
- {
- "file": "packages/angular/src/generators/component-cypress-spec/component-cypress-spec.ts",
- "hash": "8eab2125ac5bbe75e61263653daa3ae74a2e1c59",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/component-cypress-spec/files/__componentFileName__.__fileExt__",
- "hash": "d6e5c4e1248cf150993db952e3619919d68a4a11"
- },
- {
- "file": "packages/angular/src/generators/component-cypress-spec/lib/get-args-default-value.ts",
- "hash": "f39cf0c32ecf2e3fafd0bd7e9b0b6d16a91dcec2",
- "deps": ["npm:typescript"]
- },
- {
- "file": "packages/angular/src/generators/component-cypress-spec/lib/get-component-selector.ts",
- "hash": "669b76add19bd9fff9d88d5911aa131d678f487f",
- "deps": ["devkit", "workspace", "npm:typescript"]
- },
- {
- "file": "packages/angular/src/generators/component-cypress-spec/schema.d.ts",
- "hash": "6f86faee5fabd967fcd3d6a79e3dbe5e1b04ba7b"
- },
- {
- "file": "packages/angular/src/generators/component-cypress-spec/schema.json",
- "hash": "494fe50c345cc6a7582acddd396b1785d62d8235"
- },
- {
- "file": "packages/angular/src/generators/component-story/__snapshots__/component-story.spec.ts.snap",
- "hash": "ed20d809278828cb58bf00a86297d4e3056d6254"
- },
- {
- "file": "packages/angular/src/generators/component-story/compat.ts",
- "hash": "64866f0a57582bf79a4f31f233a0d95f2489ae59",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/component-story/component-story.spec.ts",
- "hash": "ab3d721850e91bfa202a28018fda0b2d59bffc45",
- "deps": ["devkit", "npm:@angular/core"]
- },
- {
- "file": "packages/angular/src/generators/component-story/component-story.ts",
- "hash": "b0ec73308800571c507431f323c6c553bad03a10",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/component-story/files/__componentFileName__.stories.ts__tmpl__",
- "hash": "d9f8c697a21278761b8e28743df07c8e087b4c1d"
- },
- {
- "file": "packages/angular/src/generators/component-story/lib/get-args-default-value.ts",
- "hash": "ae63054e0a8a37a370e40c013e120afab34ed0e0",
- "deps": ["npm:typescript"]
- },
- {
- "file": "packages/angular/src/generators/component-story/schema.d.ts",
- "hash": "05768fae96293ee7fbd5622f90c776333376ed75"
- },
- {
- "file": "packages/angular/src/generators/component-story/schema.json",
- "hash": "440c1095a3798523143a8c74bc4d9696b03d740d"
- },
- {
- "file": "packages/angular/src/generators/component/__snapshots__/component.spec.ts.snap",
- "hash": "7533c309f944c916640331f664713443ff1bc498"
- },
- {
- "file": "packages/angular/src/generators/component/component.compat.ts",
- "hash": "f73c31c33528b35c01ff4d9164e580df17255aa4",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/component/component.spec.ts",
- "hash": "1a4be81c5945730744cebbab2c5f876db65d4aa8",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/component/component.ts",
- "hash": "3a41f3be37e9e7a38eb85efcd358e81ecb4b64bd",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/component/lib/component.ts",
- "hash": "4f1295ce53fe4ef9335ab976c4765d782793b7d7",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/component/lib/entry-point.ts",
- "hash": "baca0200b47d96dac8b8d5907f959a8be179f384",
- "deps": [
- "devkit",
- "npm:@phenomnomnominal/tsquery",
- "npm:typescript"
- ]
- },
- {
- "file": "packages/angular/src/generators/component/lib/module.ts",
- "hash": "7d94ef37cfdebf5c50ebde5fc7e414aa086617d1",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/component/lib/normalize-options.ts",
- "hash": "62260184fdab076aae2a9123111b2ef6c55bfa16",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/component/schema.d.ts",
- "hash": "32ba328d578ed1f21c0d7800108ed15176e059de"
- },
- {
- "file": "packages/angular/src/generators/component/schema.json",
- "hash": "b4b5befb59664acdb7af74e8c64af54be9a47905"
- },
- {
- "file": "packages/angular/src/generators/convert-to-with-mf/__snapshots__/convert-to-with-mf.spec.ts.snap",
- "hash": "02b2879adf490080a6bd65dfeeb360493100f732"
- },
- {
- "file": "packages/angular/src/generators/convert-to-with-mf/convert-to-with-mf.compat.ts",
- "hash": "1389226105582383e9c4f61c179a1e86618fb8a3",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/convert-to-with-mf/convert-to-with-mf.spec.ts",
- "hash": "a71bd55820cefd29d7cc322ff15924d3c395eed5",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/convert-to-with-mf/convert-to-with-mf.test-data.ts",
- "hash": "04ca8907cd4961c133f0158a84649d8a06ca0819"
- },
- {
- "file": "packages/angular/src/generators/convert-to-with-mf/convert-to-with-mf.ts",
- "hash": "46006068e8dd33e5398976b68ff9b7b8e4648d10",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/convert-to-with-mf/lib/__snapshots__/is-host-remote-config.spec.ts.snap",
- "hash": "26ea2e502efbbad780079c1619b5bb8a21c61735"
- },
- {
- "file": "packages/angular/src/generators/convert-to-with-mf/lib/__snapshots__/write-new-webpack-config.spec.ts.snap",
- "hash": "812a607ab2f1958a9f7dab2948b3ad24878198e9"
- },
- {
- "file": "packages/angular/src/generators/convert-to-with-mf/lib/check-name-matches.spec.ts",
- "hash": "0de7043ffd9771efd3c7ec2e1e8d3c7fe0f67d63",
- "deps": ["npm:@phenomnomnominal/tsquery"]
- },
- {
- "file": "packages/angular/src/generators/convert-to-with-mf/lib/check-name-matches.ts",
- "hash": "94efb92c58bc4fd66eacb537e5252ff6ab6cd24a",
- "deps": ["npm:typescript", "npm:@phenomnomnominal/tsquery"]
- },
- {
- "file": "packages/angular/src/generators/convert-to-with-mf/lib/check-shared-npm-packages.spec.ts",
- "hash": "ebb028fdb319d93778443a30d37c1a4d91917856",
- "deps": ["npm:@phenomnomnominal/tsquery"]
- },
- {
- "file": "packages/angular/src/generators/convert-to-with-mf/lib/check-shared-npm-packages.ts",
- "hash": "85f57d5f73c46854e181e1f6d3f7a318660f736f",
- "deps": ["npm:typescript", "npm:@phenomnomnominal/tsquery"]
- },
- {
- "file": "packages/angular/src/generators/convert-to-with-mf/lib/get-webpack-config-path.ts",
- "hash": "2fccee3f1a0becf7041cf5acf65235de402e4b5f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/convert-to-with-mf/lib/index.ts",
- "hash": "f1da8f1bdf7b6478948ebddaabd08182856434a4"
- },
- {
- "file": "packages/angular/src/generators/convert-to-with-mf/lib/is-host-remote-config.spec.ts",
- "hash": "b201cc2fffe9271baec20e93ac5e3619f861c098",
- "deps": ["npm:@phenomnomnominal/tsquery"]
- },
- {
- "file": "packages/angular/src/generators/convert-to-with-mf/lib/is-host-remote-config.ts",
- "hash": "e550c7f4576a5b75a4c3a674d35cbad6235c7e6b",
- "deps": ["npm:typescript", "npm:@phenomnomnominal/tsquery"]
- },
- {
- "file": "packages/angular/src/generators/convert-to-with-mf/lib/parse-ast-webpack-config.ts",
- "hash": "f86126c85f63d35ede9c329276ba9caac330831f",
- "deps": ["devkit", "npm:@phenomnomnominal/tsquery"]
- },
- {
- "file": "packages/angular/src/generators/convert-to-with-mf/lib/write-new-webpack-config.spec.ts",
- "hash": "a89db33da573dc3d94e5ddd78553cd4fdead7ef0",
- "deps": ["npm:@phenomnomnominal/tsquery"]
- },
- {
- "file": "packages/angular/src/generators/convert-to-with-mf/lib/write-new-webpack-config.ts",
- "hash": "7dee84dea38fd3aeb16bd78d8b69af864870e955",
- "deps": ["npm:typescript"]
- },
- {
- "file": "packages/angular/src/generators/convert-to-with-mf/schema.d.ts",
- "hash": "e76548202a2ae475d98a9b52501d06440d2adaf6"
- },
- {
- "file": "packages/angular/src/generators/convert-to-with-mf/schema.json",
- "hash": "ede4e1558728c863884f074cfc67c2a5c36fe1e7"
- },
- {
- "file": "packages/angular/src/generators/convert-tslint-to-eslint/__snapshots__/convert-tslint-to-eslint.spec.ts.snap",
- "hash": "ead8b6f8926f84d46bea5f0b7747624dcc76a86f"
- },
- {
- "file": "packages/angular/src/generators/convert-tslint-to-eslint/convert-tslint-to-eslint.spec.ts",
- "hash": "d9ef5aa20defb703c8cd0d007141e973c15ece74",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/angular/src/generators/convert-tslint-to-eslint/convert-tslint-to-eslint.ts",
- "hash": "cbbde4fcdf3983aafd4d3ec1a7f50cf4b90e22a2",
- "deps": ["cypress", "devkit", "linter", "npm:eslint"]
- },
- {
- "file": "packages/angular/src/generators/convert-tslint-to-eslint/schema.json",
- "hash": "c3b47a2dee7b256b9d74c6ae11a24f7fe31bcf18"
- },
- {
- "file": "packages/angular/src/generators/downgrade-module/__snapshots__/downgrade-module.spec.ts.snap",
- "hash": "db232f968dab83b31827ab2d1420136db26ead57"
- },
- {
- "file": "packages/angular/src/generators/downgrade-module/compat.ts",
- "hash": "226f7f8c58268d9ee4d0edb58ace1f6a9ee6ab14",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/downgrade-module/downgrade-module.spec.ts",
- "hash": "23c313f9943bd114192fe6273d4f49b4618a7e97",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/downgrade-module/downgrade-module.ts",
- "hash": "8ff394e0dbdef7c031953db622a618af10a6685b",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/downgrade-module/files/main.ts__tmpl__",
- "hash": "5958ea890368e0b0d25108394c898d2e90ecd67f"
- },
- {
- "file": "packages/angular/src/generators/downgrade-module/lib/add-entry-components-to-module.ts",
- "hash": "a4408ea4238b57e6ccf211064c5ca577ea3f9f60",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/downgrade-module/lib/index.ts",
- "hash": "846a3ab7cc9e590e32e1ee14a683608f6205822a"
- },
- {
- "file": "packages/angular/src/generators/downgrade-module/lib/normalize-options.ts",
- "hash": "3ff2c5e38c4f18dd330164292db4e5685bebdd3e"
- },
- {
- "file": "packages/angular/src/generators/downgrade-module/lib/update-main.ts",
- "hash": "7fb3283979ec04fe1bb23a5b18abdbbacd617aec",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/downgrade-module/lib/update-module-bootstrap.ts",
- "hash": "a4545b889453b61d628a609de0de1e522351bb63",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/angular/src/generators/downgrade-module/schema.d.ts",
- "hash": "a038debafb59acddd6d1902c6f1e989017b3c692"
- },
- {
- "file": "packages/angular/src/generators/downgrade-module/schema.json",
- "hash": "470c61522c10a244cbac1b5dcb7ac7f5daed1eea"
- },
- {
- "file": "packages/angular/src/generators/host/__snapshots__/host.spec.ts.snap",
- "hash": "3781bc53850ee24db1d47f2a97c20cf630588850"
- },
- {
- "file": "packages/angular/src/generators/host/host.compat.ts",
- "hash": "e9d6e3f165b0382811f53b10acf8e69739c09db0",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/host/host.spec.ts",
- "hash": "969bc58d0566fb9d6ecbbb51b2bd859798569b9d",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/host/host.ts",
- "hash": "c9981d38ede8541b6892241a6082b0a039fe1c74",
- "deps": ["devkit", "npm:typescript"]
- },
- {
- "file": "packages/angular/src/generators/host/schema.d.ts",
- "hash": "b103fd3b5310402678e6454402aac472468a4fd8",
- "deps": ["linter"]
- },
- {
- "file": "packages/angular/src/generators/host/schema.json",
- "hash": "37373b359581ccdb65966b7aa5da0f4ea1c62048"
- },
- {
- "file": "packages/angular/src/generators/init/init.compat.ts",
- "hash": "377fa17212dc057b7cf411cd57f5f9998e4396d3",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/init/init.spec.ts",
- "hash": "676bfd7859a9d3282a7fc06dee7ecdf576d220b2",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/angular/src/generators/init/init.ts",
- "hash": "abc03ab914fab485d203b611a27f5e834a767695",
- "deps": ["cypress", "devkit", "jest", "linter", "workspace"]
- },
- {
- "file": "packages/angular/src/generators/init/schema.d.ts",
- "hash": "b093cbf6da74c6a6dd87354616a565e6b396ba8c",
- "deps": ["linter"]
- },
- {
- "file": "packages/angular/src/generators/init/schema.json",
- "hash": "3efe479638e3756a156fb1b6a9105fb8a016ff6f"
- },
- {
- "file": "packages/angular/src/generators/karma-project/__snapshots__/karma-project.spec.ts.snap",
- "hash": "3bf2757e89666ab55ce4e5b1bda10e6b28ecc3bf"
- },
- {
- "file": "packages/angular/src/generators/karma-project/compat.ts",
- "hash": "97b0b4e468389ba173ff3eb29648b5d89bda2408",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/karma-project/files/karma.conf.js__tmpl__",
- "hash": "4f4dc3f19537552446ee4e4c16f6eb6504a60d83"
- },
- {
- "file": "packages/angular/src/generators/karma-project/files/src/test.ts__tmpl__",
- "hash": "db820813ab65db7f1b2ec1f9c515ba178d2a8c45"
- },
- {
- "file": "packages/angular/src/generators/karma-project/files/tsconfig.spec.json",
- "hash": "ff32b496a5fbab051c22acf8aed7814ade897218"
- },
- {
- "file": "packages/angular/src/generators/karma-project/karma-project.spec.ts",
- "hash": "c17a7b3eb30937ec480fbb57f604e2ea0e752aa6",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/angular/src/generators/karma-project/karma-project.ts",
- "hash": "d8a4f1feca93bfd635a828ae16a9835b9f2a4878",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/karma-project/lib/check-test-target.ts",
- "hash": "9c10166310c09ef4e4a0cc98c860b03811d18aaa",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/karma-project/lib/generate-karma-project-files.ts",
- "hash": "4ec1dac486e08e1dacc52e802138fc2f8e1051d4",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/karma-project/lib/update-tsconfig.ts",
- "hash": "a0504dca41c6f98d2f97d538408f5571539d9691",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/karma-project/lib/update-workspace-config.ts",
- "hash": "d1f10942f368514df21a3797f25411f2fe86fdd9",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/karma-project/schema.d.ts",
- "hash": "07328c45c3085605feeebdb5552b14aa32ae9392"
- },
- {
- "file": "packages/angular/src/generators/karma-project/schema.json",
- "hash": "2b45613b50682e310ed6ed57522654001a460767"
- },
- {
- "file": "packages/angular/src/generators/karma/compat.ts",
- "hash": "c828990d6a639c14a97db961d0d4f522d20100fb",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/karma/files/karma.conf.js__tmpl__",
- "hash": "00eb1796e681c94e110e4dcabc4b7cc0071290c6"
- },
- {
- "file": "packages/angular/src/generators/karma/karma.spec.ts",
- "hash": "f1637a494b1c690b9fedb62d2f3b5f488d368ab9",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/karma/karma.ts",
- "hash": "16e421c20806d427adf6311efd0ba975bc732a4c",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/karma/schema.d.ts",
- "hash": "526dac422162804b2bc2174c35782a07363db14a"
- },
- {
- "file": "packages/angular/src/generators/karma/schema.json",
- "hash": "300bbd3739415595cdfec6508e14adc451f8cfa1"
- },
- {
- "file": "packages/angular/src/generators/library-secondary-entry-point/__snapshots__/library-secondary-entry-point.spec.ts.snap",
- "hash": "5ac32181e1f484bce911d094a388c319a0be9f96"
- },
- {
- "file": "packages/angular/src/generators/library-secondary-entry-point/compat.ts",
- "hash": "e7395c5aca8fcae90deecbb6ae6942e3ca20d6ad",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/library-secondary-entry-point/files/ng-package.json__tmpl__",
- "hash": "c781f0df4675ef304c7d745c98df9f59daa25dee"
- },
- {
- "file": "packages/angular/src/generators/library-secondary-entry-point/files/README.md__tmpl__",
- "hash": "f53f6d471f964f571454dce140600b4d49d2ec10"
- },
- {
- "file": "packages/angular/src/generators/library-secondary-entry-point/files/src/index.ts__tmpl__",
- "hash": "94ecb73c963daa0b36770b5071847e85b79abf95"
- },
- {
- "file": "packages/angular/src/generators/library-secondary-entry-point/files/src/lib/__fileName__.module.ts__tmpl__",
- "hash": "e4c2d813ad9de4321f579e5185a92bac242a98fa"
- },
- {
- "file": "packages/angular/src/generators/library-secondary-entry-point/lib/add-files.ts",
- "hash": "e9909ce8e9a2cb9de589f12e53a9108dced90802",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/library-secondary-entry-point/lib/add-path-mapping.ts",
- "hash": "2168c9405f602e188abbe7625d7b1c15261bf529",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/angular/src/generators/library-secondary-entry-point/lib/index.ts",
- "hash": "4cdfcf48cbc47cfdd8a7fc60e293e159f48fb112"
- },
- {
- "file": "packages/angular/src/generators/library-secondary-entry-point/lib/normalize-options.ts",
- "hash": "293fe02e543ada9c0fc1c1b5aba95c0b8bc0d561",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/library-secondary-entry-point/lib/update-linting-file-patterns.ts",
- "hash": "5dc4be8d0754f2a6b999a3e73e5f144be9494c44",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/library-secondary-entry-point/library-secondary-entry-point.spec.ts",
- "hash": "8b73a357736c66f8a01915fe7b6e8f823891a258",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/library-secondary-entry-point/library-secondary-entry-point.ts",
- "hash": "83640492142c4462080c211a5323aa27ea973753",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/library-secondary-entry-point/schema.d.ts",
- "hash": "29ee442c38829929548acd7e2374fcedcf1e4854",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/library-secondary-entry-point/schema.json",
- "hash": "2ea213fcc7673528e50820d7eddce72d181dcbb6"
- },
- {
- "file": "packages/angular/src/generators/library/__snapshots__/library.spec.ts.snap",
- "hash": "c54014ce3dd7f35bebb03603a69a95c6826bf1e9"
- },
- {
- "file": "packages/angular/src/generators/library/files/lib/README.md__tpl__",
- "hash": "b72e16d5b10578829c60cfcf622844651621f189"
- },
- {
- "file": "packages/angular/src/generators/library/files/lib/tsconfig.json__tpl__",
- "hash": "6feda9591dc0351ca6ca03cd85757fab8043703b"
- },
- {
- "file": "packages/angular/src/generators/library/lib/add-children.ts",
- "hash": "ef68b5795539574ff73b9b64471feb63167f70bc",
- "deps": ["devkit", "workspace", "npm:typescript"]
- },
- {
- "file": "packages/angular/src/generators/library/lib/add-lazy-loaded-router-configuration.ts",
- "hash": "a7f380c4988724f594929b86a0ec57b0540bed71",
- "deps": ["devkit", "workspace", "npm:typescript"]
- },
- {
- "file": "packages/angular/src/generators/library/lib/add-load-children.ts",
- "hash": "3d28faf8f3dd908c23f4736b7fc948a84b84ad94",
- "deps": ["devkit", "npm:typescript"]
- },
- {
- "file": "packages/angular/src/generators/library/lib/add-module.ts",
- "hash": "801c2d261015bbe6c7965db88d875f3042892db1",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/library/lib/add-router-configuration.ts",
- "hash": "f3ac0b8672f5f9348d8cf87abc2aa1a642b1f890",
- "deps": ["devkit", "workspace", "npm:typescript"]
- },
- {
- "file": "packages/angular/src/generators/library/lib/add-standalone-component.ts",
- "hash": "87cecc3955b855671fc325807eed56141df176c9",
- "deps": ["nx", "devkit"]
- },
- {
- "file": "packages/angular/src/generators/library/lib/enable-strict-type-checking.ts",
- "hash": "2795be366487953792637896f8f391e80ef9ae81",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/library/lib/normalize-options.ts",
- "hash": "f463d6de2226568e24fb4dbc83fb988b3281802f",
- "deps": ["devkit", "nx", "linter"]
- },
- {
- "file": "packages/angular/src/generators/library/lib/normalized-schema.ts",
- "hash": "e75b11f8ae5d1a7855ed864a72979340eee38baa"
- },
- {
- "file": "packages/angular/src/generators/library/lib/update-lib-package-npm-scope.ts",
- "hash": "334e70674f2546f555bb95ebbdc35da88deed442",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/library/lib/update-ng-package.ts",
- "hash": "b073f1086e0a0fc034a21794e0ae65afa114b258",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/library/lib/update-project.ts",
- "hash": "d51d9c6bc98eeb30e25a16473f8e93bf219a2334",
- "deps": [
- "devkit",
- "workspace",
- "npm:@angular/core",
- "npm:@angular/common"
- ]
- },
- {
- "file": "packages/angular/src/generators/library/lib/update-tsconfig.ts",
- "hash": "fadbcd26e3afd2ba411c726e7b4a9d4f96147ad8",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/angular/src/generators/library/library.compat.ts",
- "hash": "f6dc564067e1528b1f5a6a4c6c1790edaf4262ea",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/library/library.spec.ts",
- "hash": "ab02658e9d9cf62616febfe82d74711fc9605e41",
- "deps": ["devkit", "linter", "nx"]
- },
- {
- "file": "packages/angular/src/generators/library/library.ts",
- "hash": "b502be4427c0ce712700fe05f9ebe720cd547785",
- "deps": ["devkit", "jest", "linter", "workspace"]
- },
- {
- "file": "packages/angular/src/generators/library/schema.d.ts",
- "hash": "4b4968406279620fffe937f2e2df8b7d68247655",
- "deps": ["linter"]
- },
- {
- "file": "packages/angular/src/generators/library/schema.json",
- "hash": "76416ebd02e49d51149bd70bae23126e467b8d01"
- },
- {
- "file": "packages/angular/src/generators/move/lib/update-module-name.spec.ts",
- "hash": "d3d145efdf4e0aa7067a861d492674cf0d92d024",
- "deps": ["devkit", "workspace", "linter"]
- },
- {
- "file": "packages/angular/src/generators/move/lib/update-module-name.ts",
- "hash": "1d2bb1e1559129d9de91f80b853b93ad3f4d54ad",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/angular/src/generators/move/lib/update-ng-package.ts",
- "hash": "923fd4125f0f0ab08355290474aecb35af68ca24",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/angular/src/generators/move/move.spec.ts",
- "hash": "d95429673a4032bd5eb0553919e17e40ad48210d",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/angular/src/generators/move/move.ts",
- "hash": "ed3a50c8b70f4f98c3b761c6f02e41bf472a4927",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/angular/src/generators/move/schema.d.ts",
- "hash": "424f3150b739a95c4543d3a917c8192fcb74d0b4"
- },
- {
- "file": "packages/angular/src/generators/move/schema.json",
- "hash": "9900d950c9880a01daf5f44a19b6364d6d091374"
- },
- {
- "file": "packages/angular/src/generators/ng-add/__snapshots__/migrate-from-angular-cli.spec.ts.snap",
- "hash": "46ca8be7a907185ad212439c0326fae241192bd5"
- },
- {
- "file": "packages/angular/src/generators/ng-add/compat.ts",
- "hash": "ac2246d833c10bab381fee5005ca6d017ac281ac",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/ng-add/files/prettier/__dot__prettierignore",
- "hash": "d0b804da2a462044bb1c63364440b2c2164e86ad"
- },
- {
- "file": "packages/angular/src/generators/ng-add/files/root-karma/karma.conf.js__tmpl__",
- "hash": "aacbcbb5fd758df16d2699a89803cf201345814e"
- },
- {
- "file": "packages/angular/src/generators/ng-add/files/root/libs/__dot__gitkeep",
- "hash": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"
- },
- {
- "file": "packages/angular/src/generators/ng-add/files/root/tools/generators/__dot__gitkeep",
- "hash": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"
- },
- {
- "file": "packages/angular/src/generators/ng-add/files/root/tools/tsconfig.tools.json__tmpl__",
- "hash": "58db6461e90582cd969fad54ab59b530abe6d03f"
- },
- {
- "file": "packages/angular/src/generators/ng-add/migrate-from-angular-cli.spec.ts",
- "hash": "52c7adf3578945b7d12145a54648a8e669df937e",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/ng-add/migrate-from-angular-cli.ts",
- "hash": "9d30fea4f6f0fac38ffb675ef8995a5a5e8b26a6",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/ng-add/ng-add.spec.ts",
- "hash": "4530d2056eeef808d1e94fc7c75ca21950aa647e",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/ng-add/ng-add.ts",
- "hash": "28ec897998973f070938cf8fc7760b6782bdfa5a",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/ng-add/schema.d.ts",
- "hash": "bcf0cd5a2021a16899553d256bd76699fffa84c3",
- "deps": ["linter"]
- },
- {
- "file": "packages/angular/src/generators/ng-add/schema.json",
- "hash": "3f0e359415bd6841e7f4240b5ae4f5e1a021b6fd"
- },
- {
- "file": "packages/angular/src/generators/ng-add/utilities/__snapshots__/e2e.migrator.spec.ts.snap",
- "hash": "3e13315f47883adeabe4cf3fd520dce63654a364"
- },
- {
- "file": "packages/angular/src/generators/ng-add/utilities/app.migrator.spec.ts",
- "hash": "6a4dfe1adfa5948f9a7cd8f09b8b2f4770cd64ff",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/ng-add/utilities/app.migrator.ts",
- "hash": "f82910a4085e6948446b6a591f2d2de917810779",
- "deps": ["devkit", "linter", "workspace"]
- },
- {
- "file": "packages/angular/src/generators/ng-add/utilities/e2e.migrator.spec.ts",
- "hash": "11828d2dae552bc28a75d6e270f78176233cd9d1",
- "deps": ["cypress", "devkit", "npm:cypress"]
- },
- {
- "file": "packages/angular/src/generators/ng-add/utilities/e2e.migrator.ts",
- "hash": "65dccb4be2e856ec143e5d3379dceb770784dd67",
- "deps": [
- "cypress",
- "devkit",
- "linter",
- "workspace",
- "npm:@phenomnomnominal/tsquery",
- "npm:typescript"
- ]
- },
- {
- "file": "packages/angular/src/generators/ng-add/utilities/file-change-recorder.ts",
- "hash": "905191d7ce36db023abc9982ee20223725f1a7ee",
- "deps": ["devkit", "npm:magic-string", "npm:typescript"]
- },
- {
- "file": "packages/angular/src/generators/ng-add/utilities/get-all-projects.ts",
- "hash": "abb4689c89cec0d6153ee1b0ab613a147d5b8913",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/ng-add/utilities/lib.migrator.spec.ts",
- "hash": "610641d53fb9d4ce2ff32383ea621b486aaf6690",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/ng-add/utilities/lib.migrator.ts",
- "hash": "59786c30807329bb6535ceba2e0e0c239397ed38",
- "deps": ["devkit", "linter", "workspace"]
- },
- {
- "file": "packages/angular/src/generators/ng-add/utilities/logger.ts",
- "hash": "a296d72bb00c287e957f5f09cb9242f7ee41f3da",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/ng-add/utilities/normalize-options.ts",
- "hash": "716c48f261e753c6cefe2717af31da0017f09349",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/ng-add/utilities/project.migrator.ts",
- "hash": "930bcfc67551a53961bb09232728dbb5b5703bbf",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/ng-add/utilities/types.ts",
- "hash": "509d669c6409c6eb21489d0380d92072e597b444",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/ng-add/utilities/validate-projects.spec.ts",
- "hash": "a0b2e278dc136101a6c3b6911a0a1f0af9e8cd22",
- "deps": ["npm:chalk"]
- },
- {
- "file": "packages/angular/src/generators/ng-add/utilities/validate-projects.ts",
- "hash": "6bd5e678349345d8ae3c2bb85d1c5e5595e80cda",
- "deps": ["npm:chalk"]
- },
- {
- "file": "packages/angular/src/generators/ng-add/utilities/validation-logging.ts",
- "hash": "bc6d4ab5dff5f1ed204ed1a104140245969fa8e8"
- },
- {
- "file": "packages/angular/src/generators/ng-add/utilities/workspace.ts",
- "hash": "77494727276cfe2658a7dfe1196540c2e0d8bb1e",
- "deps": ["devkit", "linter", "workspace", "nx"]
- },
- {
- "file": "packages/angular/src/generators/ngrx/__snapshots__/ngrx.classes.spec.ts.snap",
- "hash": "906e642c50f1a938083a5a1714ce722ea52197e7"
- },
- {
- "file": "packages/angular/src/generators/ngrx/__snapshots__/ngrx.creators.spec.ts.snap",
- "hash": "3a5f801a9ba53c70e781d90b392f0e0e29317e51"
- },
- {
- "file": "packages/angular/src/generators/ngrx/__snapshots__/ngrx.spec.ts.snap",
- "hash": "c973836b8d5705d9723249788b4bca68610f5bd1"
- },
- {
- "file": "packages/angular/src/generators/ngrx/compat.ts",
- "hash": "7e7ba07137204b51ccab416e6f6aa54602c3ada4",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/ngrx/files/classes-syntax/__directory__/__fileName__.actions.ts__tmpl__",
- "hash": "a0c57a13887b499b60497e6805d0aca4fe0eb49f"
- },
- {
- "file": "packages/angular/src/generators/ngrx/files/classes-syntax/__directory__/__fileName__.effects.spec.ts__tmpl__",
- "hash": "3e585b2721e18e58b5c0fbb95d93578a20312f69"
- },
- {
- "file": "packages/angular/src/generators/ngrx/files/classes-syntax/__directory__/__fileName__.effects.ts__tmpl__",
- "hash": "61b78b2c35637c67a1e382491e86c62472525970"
- },
- {
- "file": "packages/angular/src/generators/ngrx/files/classes-syntax/__directory__/__fileName__.facade.spec.ts__tmpl__",
- "hash": "b1d0594bba886abb6ed1935900e49120c7bd570d"
- },
- {
- "file": "packages/angular/src/generators/ngrx/files/classes-syntax/__directory__/__fileName__.facade.ts__tmpl__",
- "hash": "e1332ef1e9699060f82206be8995ea505ac42f58"
- },
- {
- "file": "packages/angular/src/generators/ngrx/files/classes-syntax/__directory__/__fileName__.reducer.spec.ts__tmpl__",
- "hash": "3ea0c56de9e882b44a3187a9991ee81dcf44b060"
- },
- {
- "file": "packages/angular/src/generators/ngrx/files/classes-syntax/__directory__/__fileName__.reducer.ts__tmpl__",
- "hash": "a4aaf05efd0702d7e8d7126b275a5347c9b47e36"
- },
- {
- "file": "packages/angular/src/generators/ngrx/files/classes-syntax/__directory__/__fileName__.selectors.spec.ts__tmpl__",
- "hash": "2c28d444387801902b45a36b28beab71bf159740"
- },
- {
- "file": "packages/angular/src/generators/ngrx/files/classes-syntax/__directory__/__fileName__.selectors.ts__tmpl__",
- "hash": "39369fd37d410c66c3d01fa1e3590cd273008ed4"
- },
- {
- "file": "packages/angular/src/generators/ngrx/files/creator-syntax/__directory__/__fileName__.actions.ts__tmpl__",
- "hash": "6b626b0dc2a5258c91b5378636fb367d9c672db8"
- },
- {
- "file": "packages/angular/src/generators/ngrx/files/creator-syntax/__directory__/__fileName__.effects.spec.ts__tmpl__",
- "hash": "e36fbdb7c149fcf6495fdfb047545f1691873d1d"
- },
- {
- "file": "packages/angular/src/generators/ngrx/files/creator-syntax/__directory__/__fileName__.effects.ts__tmpl__",
- "hash": "b3c7dcba5d55d706546e4ecc0268e60746ba0df2"
- },
- {
- "file": "packages/angular/src/generators/ngrx/files/creator-syntax/__directory__/__fileName__.facade.spec.ts__tmpl__",
- "hash": "9d5cef9f388e536748eff7d867f5477f77657bb8"
- },
- {
- "file": "packages/angular/src/generators/ngrx/files/creator-syntax/__directory__/__fileName__.facade.ts__tmpl__",
- "hash": "c0d0421700d7c0b4d2bc7416e6bf976495e9daaa"
- },
- {
- "file": "packages/angular/src/generators/ngrx/files/creator-syntax/__directory__/__fileName__.models.ts__tmpl__",
- "hash": "225df94d2c2a7770f99abc677810576cb9bf2c2a"
- },
- {
- "file": "packages/angular/src/generators/ngrx/files/creator-syntax/__directory__/__fileName__.reducer.spec.ts__tmpl__",
- "hash": "edf70509efb129b660b708d2819e85952bff4b5a"
- },
- {
- "file": "packages/angular/src/generators/ngrx/files/creator-syntax/__directory__/__fileName__.reducer.ts__tmpl__",
- "hash": "6e925716a7d66439c3fc4fa083320ca31d28b768"
- },
- {
- "file": "packages/angular/src/generators/ngrx/files/creator-syntax/__directory__/__fileName__.selectors.spec.ts__tmpl__",
- "hash": "a332fdf2450ab48002814f1ca5d455c56c19c29a"
- },
- {
- "file": "packages/angular/src/generators/ngrx/files/creator-syntax/__directory__/__fileName__.selectors.ts__tmpl__",
- "hash": "980a789725f224297b7f0c867f13095850110204"
- },
- {
- "file": "packages/angular/src/generators/ngrx/lib/add-exports-barrel.ts",
- "hash": "1d48fc5fef07a7d372a2674cca83f53777ffdd59",
- "deps": ["devkit", "workspace", "npm:typescript"]
- },
- {
- "file": "packages/angular/src/generators/ngrx/lib/add-imports-to-module.ts",
- "hash": "c3aa43ad6743a6eb2f72838b36d89ef3ec95ee5d",
- "deps": ["devkit", "workspace", "npm:typescript"]
- },
- {
- "file": "packages/angular/src/generators/ngrx/lib/add-ngrx-to-package-json.ts",
- "hash": "94cd321da154e3334867bc32a84020f4bba9d8ca",
- "deps": ["devkit", "npm:semver", "workspace"]
- },
- {
- "file": "packages/angular/src/generators/ngrx/lib/generate-files.ts",
- "hash": "fd6adfe0c5857de616a0f857cdd56790733390fd",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/ngrx/lib/index.ts",
- "hash": "53f0de87c3dd6837c76ce631e4bddec73c04d3f4"
- },
- {
- "file": "packages/angular/src/generators/ngrx/lib/normalize-options.ts",
- "hash": "818e2ae933f93224e8e5f53be4d3ea14891e0f1c",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/ngrx/ngrx.classes.spec.ts",
- "hash": "b29a2590f12b7fa534d7e6daeadfda32c60fb85a",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/ngrx/ngrx.creators.spec.ts",
- "hash": "02fdabac5530f8d85a756469df5d1722fc652cfa",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/ngrx/ngrx.spec.ts",
- "hash": "5a83e861553347847699af29903710419461b0b5",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/ngrx/ngrx.ts",
- "hash": "580df8badc4f1cdfc0f72cf47dcb9ba5b7c6d7c4",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/ngrx/schema.d.ts",
- "hash": "e4d0c27512d5cd21319ab4131d65d9733468f906"
- },
- {
- "file": "packages/angular/src/generators/ngrx/schema.json",
- "hash": "ce05ac29d6f2ddc97483278de9269fd78fc9c82f"
- },
- {
- "file": "packages/angular/src/generators/remote/__snapshots__/remote.spec.ts.snap",
- "hash": "d1324a8c3c36a923ab3113dbe6a5cf23177f8f06"
- },
- {
- "file": "packages/angular/src/generators/remote/remote.compat.ts",
- "hash": "4bc9f1fc8c0c1a2ff9fbc8edd936861871ec1d44",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/remote/remote.spec.ts",
- "hash": "869daf65cb89815e9dae5b0b36f69f4c933e7e58",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/remote/remote.ts",
- "hash": "c535e7a6ca2696656b08b5731079f624c443cdf5",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/remote/schema.d.ts",
- "hash": "db0a39d951b6351f6e195e394e6c62c5ef495612",
- "deps": ["linter"]
- },
- {
- "file": "packages/angular/src/generators/remote/schema.json",
- "hash": "cd9f32ea75c1d8e53a0f974248f4621d7255ed92"
- },
- {
- "file": "packages/angular/src/generators/scam-directive/lib/convert-directive-to-scam.spec.ts",
- "hash": "dd0814b4d953fb12ad1e4fbaaa0423aa367d772c",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/scam-directive/lib/convert-directive-to-scam.ts",
- "hash": "58e7b67a8de8e3ff62601debc21c845cbef17247",
- "deps": [
- "devkit",
- "workspace",
- "npm:typescript",
- "npm:@angular/core",
- "npm:@angular/common"
- ]
- },
- {
- "file": "packages/angular/src/generators/scam-directive/lib/index.ts",
- "hash": "c4d863c804bb6a16a4147fcf834d090fe84b772f"
- },
- {
- "file": "packages/angular/src/generators/scam-directive/lib/normalize-options.ts",
- "hash": "ee28d0d5d087f9979259ac8e0803e290f13d7372",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/scam-directive/scam-directive.compat.ts",
- "hash": "94e4962f95c438d86a8f8aeea47154d139f3cdba",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/scam-directive/scam-directive.spec.ts",
- "hash": "635f177c263856396298e725250711d1f289c7d9",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/scam-directive/scam-directive.ts",
- "hash": "a8a894a8fa0587cfbae61afe071c66f6443b47f6",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/scam-directive/schema.d.ts",
- "hash": "cd73a4d5955851e8f680e3bf1e33ebb5f43e7c25"
- },
- {
- "file": "packages/angular/src/generators/scam-directive/schema.json",
- "hash": "9381c89f9f9d4ac83e63c5ef417296fac5de98b0"
- },
- {
- "file": "packages/angular/src/generators/scam-pipe/lib/convert-pipe-to-scam.spec.ts",
- "hash": "cf60e59fb822cafe8123d3b827411e71fc63ee7b",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/scam-pipe/lib/convert-pipe-to-scam.ts",
- "hash": "2feb36c9ef78da8455be4073cab3328cbfa06cea",
- "deps": [
- "devkit",
- "workspace",
- "npm:typescript",
- "npm:@angular/core",
- "npm:@angular/common"
- ]
- },
- {
- "file": "packages/angular/src/generators/scam-pipe/lib/index.ts",
- "hash": "1f987ecbd1642be3aff8c65540153e7f3cd1a756"
- },
- {
- "file": "packages/angular/src/generators/scam-pipe/lib/normalize-options.ts",
- "hash": "ee28d0d5d087f9979259ac8e0803e290f13d7372",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/scam-pipe/scam-pipe.compat.ts",
- "hash": "e166791d619cf8f59d39a96c4ab116e2432313fc",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/scam-pipe/scam-pipe.spec.ts",
- "hash": "d988f787a1ce2db5c1cd8fef81aa26f4ae3d9aa6",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/scam-pipe/scam-pipe.ts",
- "hash": "68e4f900c2625511f1a7237b096c79454f1fd0e7",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/scam-pipe/schema.d.ts",
- "hash": "840031172816d983ec7eaa1310b4f2874c3e7d99"
- },
- {
- "file": "packages/angular/src/generators/scam-pipe/schema.json",
- "hash": "25d5503aa4054c8c686ea56424c182ec299b71ac"
- },
- {
- "file": "packages/angular/src/generators/scam-to-standalone/compat.ts",
- "hash": "8189a3206f120780be65e0c2712559d831421840",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/scam-to-standalone/lib/convert-scam-to-standalone.ts",
- "hash": "998e5b73ccdf443c9273217ae0f3551c8a416957",
- "deps": ["npm:typescript", "nx", "npm:@phenomnomnominal/tsquery"]
- },
- {
- "file": "packages/angular/src/generators/scam-to-standalone/lib/get-component-data-from-ast.ts",
- "hash": "81eacb145bc6fea19c510be267034380663396b2",
- "deps": ["nx", "npm:@phenomnomnominal/tsquery"]
- },
- {
- "file": "packages/angular/src/generators/scam-to-standalone/lib/get-module-metadata-from-ast.ts",
- "hash": "c98d5b5c48982eb7d5dc0c77ade05513d1051955",
- "deps": ["npm:typescript", "npm:@phenomnomnominal/tsquery"]
- },
- {
- "file": "packages/angular/src/generators/scam-to-standalone/lib/get-target-project.ts",
- "hash": "bdd9e7d4fd4a06f66ac9b02b8f8988b9b0aba937",
- "deps": ["nx"]
- },
- {
- "file": "packages/angular/src/generators/scam-to-standalone/lib/index.ts",
- "hash": "18da4bc0159ba43729a032a5623c70bc169f84b2"
- },
- {
- "file": "packages/angular/src/generators/scam-to-standalone/lib/replace-module-usages-with-component.ts",
- "hash": "3ba58a4eb61b18ed48a315c73fe310a3ad195298",
- "deps": ["nx", "devkit"]
- },
- {
- "file": "packages/angular/src/generators/scam-to-standalone/lib/selector-exists-in-ast.ts",
- "hash": "a6dd28e2727498da357c4d1a1baa40a238e48a99",
- "deps": ["npm:typescript", "npm:@phenomnomnominal/tsquery"]
- },
- {
- "file": "packages/angular/src/generators/scam-to-standalone/lib/verify-is-inline-scam.ts",
- "hash": "054a6e0872ff1a4d19ccd3f0c354eb2529c01a4a",
- "deps": ["npm:typescript"]
- },
- {
- "file": "packages/angular/src/generators/scam-to-standalone/lib/verify-module-is-scam.ts",
- "hash": "48a26c643be83815bb07252f09d99c878553a813"
- },
- {
- "file": "packages/angular/src/generators/scam-to-standalone/scam-to-standalone.spec.ts",
- "hash": "806febc867fccaac8cef4cbe1a4b0466494350e1",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/scam-to-standalone/scam-to-standalone.ts",
- "hash": "4788772ece31ce980f7d1d71ec078d3d30c32d4f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/scam-to-standalone/schema.d.ts",
- "hash": "fc4c732806c59eaaf52f9344bca57c14669176f5"
- },
- {
- "file": "packages/angular/src/generators/scam-to-standalone/schema.json",
- "hash": "09dce20f2c6a955fc615ee1bd7cdcc021cd2e2a2"
- },
- {
- "file": "packages/angular/src/generators/scam/lib/convert-component-to-scam.spec.ts",
- "hash": "dfa32424fe134f486ac6015f73f1ea7b848e8a88",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/scam/lib/convert-component-to-scam.ts",
- "hash": "7b395a3a726cc69efd9e6a228885c4ca130b09c4",
- "deps": [
- "devkit",
- "workspace",
- "npm:typescript",
- "npm:@angular/core",
- "npm:@angular/common"
- ]
- },
- {
- "file": "packages/angular/src/generators/scam/lib/index.ts",
- "hash": "5f76390664919891d40499634b3e3b41bfef0b33"
- },
- {
- "file": "packages/angular/src/generators/scam/lib/normalize-options.ts",
- "hash": "5039d924cece7979485eccbf3e53acf85ee8d9f8",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/scam/scam.compat.ts",
- "hash": "0eb7743a7425f223cdd0aba210d97f3f28ffdcd5",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/scam/scam.spec.ts",
- "hash": "c0ec4c81f0a8b7edf908432ad898bd3d96ab06b9",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/scam/scam.ts",
- "hash": "8cad53a1296e6a7f01833aefc87f2a132003b149",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/scam/schema.d.ts",
- "hash": "10fae5fba5e1229b4a5466ec346e5709a05ef634"
- },
- {
- "file": "packages/angular/src/generators/scam/schema.json",
- "hash": "e5e89b6bfad6ba7d9b4af3328f32cbe36e97965d"
- },
- {
- "file": "packages/angular/src/generators/setup-mf/__snapshots__/setup-mf.spec.ts.snap",
- "hash": "0f61ab761f88c17c3ff41db7ba38a46f543ba0a0"
- },
- {
- "file": "packages/angular/src/generators/setup-mf/files/entry-module-files/entry.component.ts__tmpl__",
- "hash": "576a0c5b7096c1c572ce240b50424359cc36a75e"
- },
- {
- "file": "packages/angular/src/generators/setup-mf/files/entry-module-files/entry.module.ts__tmpl__",
- "hash": "b7c219ea7d507defe6ad067f213fc21ede95f22b"
- },
- {
- "file": "packages/angular/src/generators/setup-mf/files/standalone-entry-component-files/entry.component.ts__tmpl__",
- "hash": "c879bf478b3a509c9536cca3190407d5a891fe4a"
- },
- {
- "file": "packages/angular/src/generators/setup-mf/files/standalone-entry-component-files/routes.ts__tmpl__",
- "hash": "d590044fa1e1eb97d5ed487c6d1684b65a96ec19"
- },
- {
- "file": "packages/angular/src/generators/setup-mf/files/webpack/module-federation.config.js__tmpl__",
- "hash": "005462031803d5f1a1fadf036cd1bef6114d2dda"
- },
- {
- "file": "packages/angular/src/generators/setup-mf/files/webpack/webpack.config.js__tmpl__",
- "hash": "d101992f0152c84b10702fb6432152b0ce916251"
- },
- {
- "file": "packages/angular/src/generators/setup-mf/files/webpack/webpack.prod.config.js__tmpl__",
- "hash": "8caa6cf6d8486b526d4354b61e5410c7df2dd538"
- },
- {
- "file": "packages/angular/src/generators/setup-mf/lib/__snapshots__/add-remote-to-host.spec.ts.snap",
- "hash": "34ff1026802c54a9fe0d12a266e0042aa85f66e6"
- },
- {
- "file": "packages/angular/src/generators/setup-mf/lib/add-cypress-workaround.ts",
- "hash": "01662df3e67fb7078f1a8dfa6a9a1f90bae7b0f2",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/setup-mf/lib/add-remote-entry.ts",
- "hash": "abcfd81909b01df3d2c7aca99e6665aa8aaae431",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/setup-mf/lib/add-remote-to-host.spec.ts",
- "hash": "5781f0173f94a2c685351e48ca00eadcbe01b240",
- "deps": ["npm:@phenomnomnominal/tsquery", "npm:typescript"]
- },
- {
- "file": "packages/angular/src/generators/setup-mf/lib/add-remote-to-host.ts",
- "hash": "3af48f96f8ba9866c913443fb5eebc0e6b4622e4",
- "deps": [
- "devkit",
- "npm:@phenomnomnominal/tsquery",
- "npm:typescript",
- "workspace"
- ]
- },
- {
- "file": "packages/angular/src/generators/setup-mf/lib/change-build-target.ts",
- "hash": "31ec0799543141c0dbbaf73f2a15d876628a8b90",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/setup-mf/lib/fix-bootstrap.ts",
- "hash": "5bd0532747dcaa58fb09f9af378722d9fce96405",
- "deps": [
- "devkit",
- "npm:@angular/core",
- "npm:@angular/platform-browser",
- "npm:@angular/router"
- ]
- },
- {
- "file": "packages/angular/src/generators/setup-mf/lib/generate-config.ts",
- "hash": "017115d7d8fcff581fac4a3bd8cd09d429054e9f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/setup-mf/lib/get-remotes-with-ports.ts",
- "hash": "a7233041c6a77727e92d2158347fa4459c4f0d13",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/setup-mf/lib/index.ts",
- "hash": "f308e1eaae23acb72b41f9789f191ad58fee303c"
- },
- {
- "file": "packages/angular/src/generators/setup-mf/lib/set-tsconfig-target.ts",
- "hash": "a6987c7f8398db9060d93a8c730940c4e852c7e3",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/setup-mf/lib/setup-host-if-dynamic.ts",
- "hash": "c84741d12388e84485bdaa23a29eda1d98d4aa29",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/setup-mf/lib/setup-serve-target.ts",
- "hash": "1d472ef966110d21457be8abb8129be51bbc5f62",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/setup-mf/schema.d.ts",
- "hash": "5245b987f0dd731e1df4c782b9c33843d682532b"
- },
- {
- "file": "packages/angular/src/generators/setup-mf/schema.json",
- "hash": "b8eb1b57493250b4c13c92bfa28613dcce835f08"
- },
- {
- "file": "packages/angular/src/generators/setup-mf/setup-mf.compat.ts",
- "hash": "1daf80fb4e9a5a4121326085139180ec9fdfb047",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/setup-mf/setup-mf.spec.ts",
- "hash": "af55a1659e8b936e6deb443a10a67ec5edb9efcf",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/setup-mf/setup-mf.ts",
- "hash": "ddcff7618a0a9f0be192116cc332999550afac88",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/setup-tailwind/files/v2/tailwind.config.js__tmpl__",
- "hash": "f7eedd5384a06fe1d4a7d8fd1c889f8fb348c3f3"
- },
- {
- "file": "packages/angular/src/generators/setup-tailwind/files/v3/tailwind.config.js__tmpl__",
- "hash": "13aa4711706804f4b50240ee3e9284d6137723f0"
- },
- {
- "file": "packages/angular/src/generators/setup-tailwind/lib/add-tailwind-config-path-to-project.ts",
- "hash": "c997718254ce40f39a75a6e234cf97811085ab1e",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/setup-tailwind/lib/add-tailwind-config.ts",
- "hash": "d650497192147d53bdc0b2f46b5f6c88293c569e",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/setup-tailwind/lib/add-tailwind-required-packages.ts",
- "hash": "d832458c279382b97256812ec7917d44ac92a55a",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/setup-tailwind/lib/detect-tailwind-installed-version.ts",
- "hash": "1890b14c94cf83c5f20bac263f303cccefea7510",
- "deps": ["devkit", "workspace", "npm:semver"]
- },
- {
- "file": "packages/angular/src/generators/setup-tailwind/lib/index.ts",
- "hash": "7fe68f2ade9b2b5424ccad31bf3c25333edd2d9c"
- },
- {
- "file": "packages/angular/src/generators/setup-tailwind/lib/normalize-options.ts",
- "hash": "64b3a44d3870ef586594cd369f372a26215cd38c"
- },
- {
- "file": "packages/angular/src/generators/setup-tailwind/lib/update-application-styles.ts",
- "hash": "397d270417c462d978febaf2ffcb86088662a45b",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/setup-tailwind/schema.d.ts",
- "hash": "4af6250702dd2ea1345692a4908c4c27c8858398"
- },
- {
- "file": "packages/angular/src/generators/setup-tailwind/schema.json",
- "hash": "1a9306bed6b5ea686104337718c46374fa1c3ef5"
- },
- {
- "file": "packages/angular/src/generators/setup-tailwind/setup-tailwind.application.spec.ts",
- "hash": "8e94f078dee142448e102ee9b7f022c737060277",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/setup-tailwind/setup-tailwind.compat.ts",
- "hash": "03de034928f8c7b8542b0b9f883d7da29fcd50d5",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/setup-tailwind/setup-tailwind.library.spec.ts",
- "hash": "4557a446ae9c4ee978004993d2468f441676ad2c",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/setup-tailwind/setup-tailwind.ts",
- "hash": "22c32f58cd895f72b5b1e1d636a3093135d44bf1",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/stories/__snapshots__/stories-lib.spec.ts.snap",
- "hash": "73cc40cb16b09bcf90cfd6a545cd85fcdfc37a82"
- },
- {
- "file": "packages/angular/src/generators/stories/compat.ts",
- "hash": "800b2b57dfeacf2b10f52242007d6928453f3132",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/stories/lib/component-info.ts",
- "hash": "085c6ea84bba1b315829756269b09bce58fc7d88",
- "deps": [
- "devkit",
- "npm:@phenomnomnominal/tsquery",
- "npm:typescript"
- ]
- },
- {
- "file": "packages/angular/src/generators/stories/lib/entry-point.ts",
- "hash": "a4c60b388118be44d6c02f21de8a208027b8fb89",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/stories/lib/get-e2e-project.ts",
- "hash": "0a3f81248e2f1c3bb2785e8bd81b6395b9345d25",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/stories/lib/module-info.ts",
- "hash": "c4abf3d1ef352bcb6cde2e10cbce6f8456fad972",
- "deps": [
- "devkit",
- "workspace",
- "npm:@phenomnomnominal/tsquery",
- "npm:typescript"
- ]
- },
- {
- "file": "packages/angular/src/generators/stories/lib/tree-utilities.ts",
- "hash": "53bbc3aa9726eca26de92b86bcaffaf71bbee127",
- "deps": ["devkit", "npm:ignore"]
- },
- {
- "file": "packages/angular/src/generators/stories/schema.d.ts",
- "hash": "883647621039636d1b9a08a4b537caa0492da99b"
- },
- {
- "file": "packages/angular/src/generators/stories/schema.json",
- "hash": "cc984d99be6860974a1a8b5b4bd74f3342e8c90e"
- },
- {
- "file": "packages/angular/src/generators/stories/stories-app.spec.ts",
- "hash": "f1f590a32177d3cb708b8a54cdc448900810bd22",
- "deps": ["cypress", "devkit"]
- },
- {
- "file": "packages/angular/src/generators/stories/stories-lib.spec.ts",
- "hash": "4f5a0eeec05979915fedf6a7927ed3bc2dff68c4",
- "deps": ["cypress", "devkit", "linter", "storybook"]
- },
- {
- "file": "packages/angular/src/generators/stories/stories.ts",
- "hash": "79c80b544c201969a4ecde646a0105e03defb79f",
- "deps": ["devkit", "npm:minimatch"]
- },
- {
- "file": "packages/angular/src/generators/storybook-configuration/__snapshots__/storybook-configuration.spec.ts.snap",
- "hash": "088290f3395bec603c4dcc67e4bfa7fce773b3d4"
- },
- {
- "file": "packages/angular/src/generators/storybook-configuration/compat.ts",
- "hash": "10d4a018f85d64488f0b229aab04430e33ad2130",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/storybook-configuration/lib/assert-compatible-storybook-version.ts",
- "hash": "29f16d0817fb3546699104f491aa334060f6a7d0",
- "deps": ["npm:semver"]
- },
- {
- "file": "packages/angular/src/generators/storybook-configuration/lib/generate-stories.ts",
- "hash": "780234988667bec5c837f80dafe2d73dbf60e8b5",
- "deps": ["cypress", "devkit"]
- },
- {
- "file": "packages/angular/src/generators/storybook-configuration/lib/generate-storybook-configuration.ts",
- "hash": "d5f4d4d1af8e01c329da0f0ed7939df5174a6330",
- "deps": ["devkit", "storybook"]
- },
- {
- "file": "packages/angular/src/generators/storybook-configuration/lib/validate-options.ts",
- "hash": "bc00ead02ad6a3efa09d449025f86c99a502e5af"
- },
- {
- "file": "packages/angular/src/generators/storybook-configuration/schema.d.ts",
- "hash": "61ca70a90e6d8157f8e855b94cc4806edd86ea0b",
- "deps": ["linter"]
- },
- {
- "file": "packages/angular/src/generators/storybook-configuration/schema.json",
- "hash": "4c0e34f98d19b00222193f9dd63388c64308cd5f"
- },
- {
- "file": "packages/angular/src/generators/storybook-configuration/storybook-configuration.spec.ts",
- "hash": "d32c06d57f4031d3d5343b39f9979954efbf5c81",
- "deps": ["cypress", "devkit", "linter"]
- },
- {
- "file": "packages/angular/src/generators/storybook-configuration/storybook-configuration.ts",
- "hash": "6eff28feebb1c3cca227800eeb2891718dd3d443",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/upgrade-module/__snapshots__/upgrade-module.spec.ts.snap",
- "hash": "584ce992adeae792519d327196b312fe6773b385"
- },
- {
- "file": "packages/angular/src/generators/upgrade-module/compat.ts",
- "hash": "3eb92fe22729a79fccbbf55c91a0faa23197f626",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/upgrade-module/files/__name__-setup.ts__tmpl__",
- "hash": "31df574b81c329fcb5acbac9544192f7b4cbed70"
- },
- {
- "file": "packages/angular/src/generators/upgrade-module/files/hybrid.spec.ts__tmpl__",
- "hash": "9cd5d29ae3292d99b75a0690f1c1c41dfb9c50b7"
- },
- {
- "file": "packages/angular/src/generators/upgrade-module/lib/add-imports-to-module.ts",
- "hash": "de8e47152c00500e446bba123e584583511047b6",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/angular/src/generators/upgrade-module/lib/create-files.ts",
- "hash": "3c3f0e48d446e5d665496aae22ed061ab9d38be8",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/upgrade-module/lib/index.ts",
- "hash": "b0e7aa4bd9490d0c0f8ca6bc9aa0416b25498ac2"
- },
- {
- "file": "packages/angular/src/generators/upgrade-module/lib/normalize-options.ts",
- "hash": "1ae8d670fb12f01b9aa37faf4bc6ec102944283d"
- },
- {
- "file": "packages/angular/src/generators/upgrade-module/lib/update-module-bootstrap.ts",
- "hash": "a7fced48a7290d9b4001e2fb4eeac6304f4a1b3f",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/angular/src/generators/upgrade-module/schema.d.ts",
- "hash": "37733b701708fe14451618c2e1af2134112b7bfc"
- },
- {
- "file": "packages/angular/src/generators/upgrade-module/schema.json",
- "hash": "dbf4264b8b75e324c7b93048f431db8a88246219"
- },
- {
- "file": "packages/angular/src/generators/upgrade-module/upgrade-module.spec.ts",
- "hash": "5e375fcdbe36c9eaa374acad128be87565ef5f06",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/upgrade-module/upgrade-module.ts",
- "hash": "2a35069db8f254c636b3704ea5ca152b19e617a3",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/utils/dependencies.ts",
- "hash": "b919bac7a068fca31415c4356ba70e3e31e10cc9",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/utils/entry-point.ts",
- "hash": "4e00c51c061f9c3bc483e3ba15ee638d0b705907",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/utils/export-scam.spec.ts",
- "hash": "12e57f558cf180bc63c64f1d22ab07c578d5533f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/utils/export-scam.ts",
- "hash": "c3e62ba730ba5ba513429a4c083b51153b025e6a",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/utils/file-info.ts",
- "hash": "a48243523f96e5f996f2b139f60c12be52f4bc50",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/utils/index.ts",
- "hash": "5f1a29e8cd4827361c24f3f1bc16bd1142b08f06"
- },
- {
- "file": "packages/angular/src/generators/utils/insert-ngmodule-import.spec.ts",
- "hash": "c3bd2516b8a61ab216f9bb2dc73d3adf4def2d52",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/utils/insert-ngmodule-import.ts",
- "hash": "951ccdb05352a5949b3fba4e683093a54c529a87",
- "deps": ["devkit", "npm:typescript"]
- },
- {
- "file": "packages/angular/src/generators/utils/path.spec.ts",
- "hash": "1943ba56f72defe7c50b7e1999dc3f386a24ba9f"
- },
- {
- "file": "packages/angular/src/generators/utils/path.ts",
- "hash": "cc3fb0bf15cd0b53821178d145a6aaf49d55d8e2",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/utils/project.ts",
- "hash": "871e80dbbc2ee7814f891d2787cccaf1469cacd6",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/utils/storybook.ts",
- "hash": "fa7f668268ad6cd07d973faec83110865fc433c8",
- "deps": ["devkit", "workspace", "npm:typescript"]
- },
- {
- "file": "packages/angular/src/generators/utils/testing.ts",
- "hash": "9b53b7091f56f8779d0fa26d5411162c34c1903c",
- "deps": [
- "devkit",
- "linter",
- "npm:@angular/core",
- "npm:@angular/common"
- ]
- },
- {
- "file": "packages/angular/src/generators/utils/types.ts",
- "hash": "e132a714562b4f5b097b70c7a529e7e6368625a6"
- },
- {
- "file": "packages/angular/src/generators/utils/upgrade.ts",
- "hash": "3288db84b2cf1c21dcb8fb1948c9a94c858a27c0",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/web-worker/compat.ts",
- "hash": "37ae7d4113016bcc3a39d33e18faa4240366e567",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/web-worker/lib/index.ts",
- "hash": "77434219c93d8c2c3075b0dad267ce785b824e51"
- },
- {
- "file": "packages/angular/src/generators/web-worker/lib/normalize-options.ts",
- "hash": "97ede90d04118b752a8c0a445ea764228e73519f"
- },
- {
- "file": "packages/angular/src/generators/web-worker/lib/update-tsconfig.ts",
- "hash": "21d7bce675e7afffdda5591b21a19e2d4a5d0285",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/angular/src/generators/web-worker/schema.d.ts",
- "hash": "2a02d66f818c2d103c0c4889d15aa09300fb4ae7"
- },
- {
- "file": "packages/angular/src/generators/web-worker/schema.json",
- "hash": "70afa59686028c0bdc727af6a4a75924d460e69b"
- },
- {
- "file": "packages/angular/src/generators/web-worker/web-worker.spec.ts",
- "hash": "4fdd0a2cca11107af123f06d34ec6165fef84b49",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/generators/web-worker/web-worker.ts",
- "hash": "bc5435a610f4eb6693d87d0287ed0f916647ec77",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-12-0-0/update-ngcc-postinstall.spec.ts",
- "hash": "12e532b91c698f44a7f123536af16a9ca664052a",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-12-0-0/update-ngcc-postinstall.ts",
- "hash": "8e4d19945412f5ff6936c4ecb3250c7f73fe693f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-12-3-0/__snapshots__/convert-webpack-browser-build-target-to-delegate-build.spec.ts.snap",
- "hash": "b3064a741f8fabac108f86a5b6f439624e79da2a"
- },
- {
- "file": "packages/angular/src/migrations/update-12-3-0/__snapshots__/update-angular-eslint-rules.spec.ts.snap",
- "hash": "afc24d2b5ad7bcc70f0d5bc3c5e80b6b884c1271"
- },
- {
- "file": "packages/angular/src/migrations/update-12-3-0/convert-webpack-browser-build-target-to-delegate-build.spec.ts",
- "hash": "38ad3604f553c6cedd8988bdbcf9a3162869de3c",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-12-3-0/convert-webpack-browser-build-target-to-delegate-build.ts",
- "hash": "d36369069209161637dd27fe6067cbadb0ef06de",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-12-3-0/update-angular-eslint-rules.spec.ts",
- "hash": "0d19ecaac162881d538c702ecd953018a814b77e",
- "deps": ["devkit", "npm:eslint"]
- },
- {
- "file": "packages/angular/src/migrations/update-12-3-0/update-angular-eslint-rules.ts",
- "hash": "3717126bbb36bcca6caac59b8a4b68f72f84867e",
- "deps": ["devkit", "npm:eslint"]
- },
- {
- "file": "packages/angular/src/migrations/update-12-3-0/update-storybook.spec.ts",
- "hash": "e622a438a3eb4f956556adb81e3e104dfd8a552b",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-12-3-0/update-storybook.ts",
- "hash": "97d4b0a0fbaed0c864cd600409ada24b2d56555e",
- "deps": [
- "devkit",
- "npm:semver",
- "workspace",
- "storybook",
- "npm:@storybook/core"
- ]
- },
- {
- "file": "packages/angular/src/migrations/update-12-3-0/update-webpack-browser-config.spec.ts",
- "hash": "f97ff8268b11acb0c298e446f85e51620a360a9f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-12-3-0/update-webpack-browser-config.ts",
- "hash": "58c1334100268e6e79f037f3a8ed25a82566ccd5",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-12-9-0/update-invalid-import-paths.spec.ts",
- "hash": "cfac656b78f43b84019649b88bbeb49a4c4a0742",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-12-9-0/update-invalid-import-paths.ts",
- "hash": "adee010f9ab6dd6b7b75f15a09ade2dc305ff99f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-13-0-0/add-postcss-packages.spec.ts",
- "hash": "f2ff29baf4bc679ececebc61cebc1d0545e93b33",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-13-0-0/add-postcss-packages.ts",
- "hash": "dd26e1044cd4f9557195884baba618581042ef9b",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-13-2-0/__snapshots__/opt-out-testbed-teardown.spec.ts.snap",
- "hash": "9d15b98c939298534ce6af8dee14c89e0a5dc92e"
- },
- {
- "file": "packages/angular/src/migrations/update-13-2-0/__snapshots__/update-angular-jest-config.spec.ts.snap",
- "hash": "a7e83cd52ec65b49dbda5bac73d6a120fcb86f44"
- },
- {
- "file": "packages/angular/src/migrations/update-13-2-0/opt-out-testbed-teardown.spec.ts",
- "hash": "09263e22d1208014dd054071e3d2faf1dc4fd131",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-13-2-0/opt-out-testbed-teardown.ts",
- "hash": "977cb4e2729936aceb05d401a4f9e24c5a0691a5",
- "deps": [
- "devkit",
- "npm:@phenomnomnominal/tsquery",
- "npm:typescript",
- "npm:@angular/core",
- "npm:@angular/platform-browser-dynamic"
- ]
- },
- {
- "file": "packages/angular/src/migrations/update-13-2-0/update-angular-config.spec.ts",
- "hash": "4a04b217d8be9e61483be04cb02a9aaafd8ebb01",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-13-2-0/update-angular-config.ts",
- "hash": "cc429306239e55109ae1e9f32bc23644f2eaedc9",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/angular/src/migrations/update-13-2-0/update-angular-jest-config.spec.ts",
- "hash": "be724a26e9ea3127e6ab0d5a4fc695c827b81b45",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-13-2-0/update-angular-jest-config.ts",
- "hash": "c71751a1cc29cc6bd759ecd5ce6370bb1e1ab6e7",
- "deps": [
- "devkit",
- "npm:typescript",
- "npm:@phenomnomnominal/tsquery"
- ]
- },
- {
- "file": "packages/angular/src/migrations/update-13-2-0/update-libraries.spec.ts",
- "hash": "955cb16656ae31a04052843e845e6d2fa1d1f8ef",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-13-2-0/update-libraries.ts",
- "hash": "f754853e7779e2db70f43c8016bb953814e3aa35",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/angular/src/migrations/update-13-2-0/update-testing-imports.spec.ts",
- "hash": "2b0b5be1d59f0937257277435243c3eb338d665f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-13-2-0/update-testing-imports.ts",
- "hash": "14d0db3d9c2116b8f0540c07614f12b6f0f30d6a",
- "deps": ["devkit", "npm:typescript", "workspace", "npm:semver"]
- },
- {
- "file": "packages/angular/src/migrations/update-13-3-0/update-mfe-webpack-config.spec.ts",
- "hash": "bcc4fd6132bf959168df89dd64617d4ffef15ba8",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-13-3-0/update-mfe-webpack-config.ts",
- "hash": "e5284abca65a5bde84bce191a14e7f4e1ce5499c",
- "deps": [
- "devkit",
- "npm:@phenomnomnominal/tsquery",
- "workspace",
- "npm:typescript"
- ]
- },
- {
- "file": "packages/angular/src/migrations/update-13-5-0/remove-library-generator-style-default.spec.ts",
- "hash": "2bd9de8b9cdb189b58de9bd10028588b6decb745",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-13-5-0/remove-library-generator-style-default.ts",
- "hash": "4cf273311488c553e4f31285c8e35c73ad88572b",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-13-5-0/update-mfe-config.test-data.ts",
- "hash": "0d619a5ec697b7c858068c1f60a5c70f0444151f"
- },
- {
- "file": "packages/angular/src/migrations/update-13-5-0/update-mfe-configs.spec.ts",
- "hash": "77f1bab9f82a4cae5bcd8cc96303b0959096081a",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-13-5-0/update-mfe-configs.ts",
- "hash": "4170c13bea4183fe1e239f3c8eb5ae290e459542",
- "deps": ["devkit", "npm:@phenomnomnominal/tsquery", "workspace"]
- },
- {
- "file": "packages/angular/src/migrations/update-13-8-1/add-cypress-mf-workaround.spec.ts",
- "hash": "09da36a07bb70165e5e32c3fd03ecbfb2fbcc665",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-13-8-1/add-cypress-mf-workaround.ts",
- "hash": "fb23ae6e680d72a67d41c264eebb8c2dabe82c01",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-13-8-4/__snapshots__/migrate-karma-conf.spec.ts.snap",
- "hash": "99d5c268e27afa7838489320236d6a561712fb6a"
- },
- {
- "file": "packages/angular/src/migrations/update-13-8-4/migrate-karma-conf.spec.ts",
- "hash": "edb2fead1d467cb7d73205315d1178d29b950a74",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-13-8-4/migrate-karma-conf.ts",
- "hash": "8c6cb1d1a40ee2ddbb9e883f3656100294dfcb4d",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/angular/src/migrations/update-13-9-0/set-build-libs-from-source.spec.ts",
- "hash": "0732d8149ceaeeff4942447885ba06f8cedef68d",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-13-9-0/set-build-libs-from-source.ts",
- "hash": "debff18cc6cfe74c19e64594858b0ecf8a73f405",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-14-0-0/rename-mf-config.spec.ts",
- "hash": "c6e3e5da665ad6b555de8150a36303fb962813ef",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-14-0-0/rename-mf-config.ts",
- "hash": "6f392f6867c0f4947d8352c03f75f40296cb766c",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-14-2-0/remove-show-circular-dependencies-option.spec.ts",
- "hash": "1fa9f37652aaed01cf66e85c3f03e38213b23a64",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-14-2-0/remove-show-circular-dependencies-option.ts",
- "hash": "fab91a2e8516ad30035c5a4a39bf13ef10bfb79a",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/angular/src/migrations/update-14-2-0/update-angular-cli.spec.ts",
- "hash": "98445076e0ba9d207dc25837af7d521290b95889",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-14-2-0/update-angular-cli.ts",
- "hash": "3c014560eea703bea93ff4cd2f41b86d65689ba7",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-14-2-0/update-libraries-secondary-entrypoints.spec.ts",
- "hash": "96793c6f5216cdd58cf2516b452a8deae223acbe",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-14-2-0/update-libraries-secondary-entrypoints.ts",
- "hash": "22fbcb7346a6f4216f6da6e886551351a55b28b2",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-14-2-0/update-ngcc-target.spec.ts",
- "hash": "7cb961b2b57e8852b0fa387e3e5dec2c6e95ac2d",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-14-2-0/update-ngcc-target.ts",
- "hash": "5b0da1ecbe0f3dde7e06318e5fc71f94d2cfaee9",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-14-2-0/update-router-initial-navigation.spec.ts",
- "hash": "35679086da1bee363503d20e5d157ce4993e0085",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-14-2-0/update-router-initial-navigation.ts",
- "hash": "44d7200edcfe9e3c9e0a72ccf2eff170e934d073",
- "deps": [
- "devkit",
- "npm:@phenomnomnominal/tsquery",
- "npm:typescript"
- ]
- },
- {
- "file": "packages/angular/src/migrations/update-14-2-0/update-tsconfig-target.spec.ts",
- "hash": "04c5a292c1b401a4a91870aa3ce8a0132117d4f1",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-14-2-0/update-tsconfig-target.ts",
- "hash": "c3cd4ce2d8411b94d4a4c56485d782c5e0eceaa1",
- "deps": [
- "devkit",
- "npm:@phenomnomnominal/tsquery",
- "npm:typescript"
- ]
- },
- {
- "file": "packages/angular/src/migrations/update-14-5-0/migrate-mfe-to-mf.spec.ts",
- "hash": "0cce0da99eff32708960ddcbae15f5ce529ac75f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-14-5-0/migrate-mfe-to-mf.ts",
- "hash": "ce27504ee2558dfa6cc3698c36205d6c48fb51f1",
- "deps": [
- "devkit",
- "npm:@phenomnomnominal/tsquery",
- "npm:typescript"
- ]
- },
- {
- "file": "packages/angular/src/migrations/update-14-5-2/update-angular-cli.spec.ts",
- "hash": "b5057dbc486f24ec9a1e11470cdfd5e1b0a82170",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-14-5-2/update-angular-cli.ts",
- "hash": "d7f74fe76ac98924d99669f956b8bf4b8ab17423",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-14-5-7/update-rxjs.spec.ts",
- "hash": "5bb042d12846ee7f5161dd26e0c43c8d37625e16",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-14-5-7/update-rxjs.ts",
- "hash": "0d85da9841e3541db514b0e18657e701abfe0cb4",
- "deps": ["devkit", "npm:semver"]
- },
- {
- "file": "packages/angular/src/migrations/update-14-6-0/update-angular-cli.spec.ts",
- "hash": "0c506aea8be65f23fae3265bc17243924d227506",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/migrations/update-14-6-0/update-angular-cli.ts",
- "hash": "fbf66bced992d78b4a0afe6430f5e059d32dcd3e",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/runtime/nx/data-persistence.ts",
- "hash": "94cb1509aa56b9983bdda54375a48e17d261a5d0",
- "deps": [
- "npm:@angular/core",
- "npm:@angular/router",
- "npm:@ngrx/effects",
- "npm:@ngrx/router-store",
- "npm:@ngrx/store",
- "npm:rxjs"
- ]
- },
- {
- "file": "packages/angular/src/runtime/nx/nx.module.ts",
- "hash": "f805fa5cdf541c17d4e958de28a910f1c45b4cbf",
- "deps": ["npm:@angular/core"]
- },
- {
- "file": "packages/angular/src/utils/get-mf-projects.ts",
- "hash": "6605ff41ffe91bf8ce910efe0048f6bb5ced131e",
- "deps": ["devkit", "npm:@phenomnomnominal/tsquery", "workspace"]
- },
- {
- "file": "packages/angular/src/utils/mf/mf-webpack.spec.ts",
- "hash": "5b089fc91307079ab9a7294cbcb6c29314baa292",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/utils/mf/mf-webpack.ts",
- "hash": "0650dd7dd5c7a83e8785791c4513104d4d1ee257",
- "deps": ["devkit", "workspace", "nx", "npm:webpack"]
- },
- {
- "file": "packages/angular/src/utils/mf/typescript.spec.ts",
- "hash": "24117662366a88bf84a2e44297499601daf1f214",
- "deps": ["workspace"]
- },
- {
- "file": "packages/angular/src/utils/mf/typescript.ts",
- "hash": "50474775dd222cb2372a29fc3d0ceb016680e158",
- "deps": ["workspace", "npm:typescript"]
- },
- {
- "file": "packages/angular/src/utils/mf/utils.spec.ts",
- "hash": "706ad3f6fa3152de80dc33c1853888b313c7220f"
- },
- {
- "file": "packages/angular/src/utils/mf/utils.ts",
- "hash": "0681a7fab0f14766b258c6dfa0aa995fe9922402",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/utils/mf/with-module-federation.ts",
- "hash": "eeefbe121b868f7fb1ec58e608bda0a5db66eadb",
- "deps": ["devkit", "nx", "npm:webpack"]
- },
- {
- "file": "packages/angular/src/utils/nx-devkit/ast-utils.ts",
- "hash": "7af6480af255fe3e812778c7aae7cf5751981a45",
- "deps": ["npm:typescript", "workspace", "devkit"]
- },
- {
- "file": "packages/angular/src/utils/nx-devkit/standalone-utils.spec.ts",
- "hash": "2256d93901b69c6ff6d85dfda56bd130e3d8b952",
- "deps": ["devkit"]
- },
- {
- "file": "packages/angular/src/utils/nx-devkit/standalone-utils.ts",
- "hash": "634e975cc4697a45ea2d24328a982beb01cb589a",
- "deps": [
- "devkit",
- "npm:@phenomnomnominal/tsquery",
- "npm:typescript",
- "workspace"
- ]
- },
- {
- "file": "packages/angular/src/utils/nx-devkit/testing.ts",
- "hash": "2557c379cd5d3ea66a430f6ac2903727d4399f40",
- "deps": [
- "devkit",
- "npm:@angular/core",
- "npm:@angular/platform-browser",
- "npm:@angular/platform-browser-dynamic",
- "npm:@angular/common"
- ]
- },
- {
- "file": "packages/angular/src/utils/test-runners.ts",
- "hash": "902a76b4f32450483f7f2059c62cd6e812b6822d"
- },
- {
- "file": "packages/angular/src/utils/versions.spec.ts",
- "hash": "cddac5c051cc08f45621b7f8d69df27e3ee7a2aa"
- },
- {
- "file": "packages/angular/src/utils/versions.ts",
- "hash": "d434b32b95f3c8e028c936f01ca3327df06562c7"
- },
- {
- "file": "packages/angular/tailwind.ts",
- "hash": "e6e04c4c9c44394436c86f1c44468e9ffb798dda",
- "deps": ["workspace"]
- },
- {
- "file": "packages/angular/testing/index.ts",
- "hash": "42b102d44ae43a9e5f390420d00d17df4ff18153",
- "deps": ["npm:jasmine-marbles"]
- },
- {
- "file": "packages/angular/testing/ng-package.json",
- "hash": "bb6786ef97ad717de5324caf6b2669240d61b7b5"
- },
- {
- "file": "packages/angular/testing/src/testing-utils.ts",
- "hash": "1b007bab7209ee63fb357f76ccb21015156a8525",
- "deps": ["npm:rxjs"]
- },
- {
- "file": "packages/angular/tsconfig.json",
- "hash": "f7495fd20f1fdd7510d4d06cbb8c8a0cfa36d945"
- },
- {
- "file": "packages/angular/tsconfig.lib.json",
- "hash": "1d2ddef3c1be3aa86cb55b66b9c912d3c6bf1a07"
- },
- {
- "file": "packages/angular/tsconfig.spec.json",
- "hash": "869c90c526a0fe7b4b32c39d3989c66259545d9a"
- }
- ]
- }
- },
- {
- "name": "cypress",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/cypress",
- "files": [
- {
- "file": "packages/cypress/.eslintrc.json",
- "hash": "6c7a3539d988af84174c309b080fdf10dde2d4c1"
- },
- {
- "file": "packages/cypress/executors.json",
- "hash": "f04e75ca738d26fcf1d4524f2fa5e3af81ee7c93"
- },
- {
- "file": "packages/cypress/generators.json",
- "hash": "5902855dd7a43fa4efdd4dfb202dae3e20efccef"
- },
- {
- "file": "packages/cypress/index.ts",
- "hash": "2c001db061b90b2d4b2c7e5193983c1713c1627d"
- },
- {
- "file": "packages/cypress/jest.config.ts",
- "hash": "782b8cef38e99afb06a7e022ad1e62d3811dfef0"
- },
- {
- "file": "packages/cypress/migrations.json",
- "hash": "31fc2296778575f56a6fee4d1410631c17466d12"
- },
- {
- "file": "packages/cypress/migrations.spec.ts",
- "hash": "061b0ac5ed3c83da8924f1e2e18c8b2fcabd27ec"
- },
- {
- "file": "packages/cypress/package.json",
- "hash": "e6b0e6b4feb734f22aa69bb2bd9c8f6557014275",
- "deps": [
- "npm:@cypress/webpack-preprocessor",
- "devkit",
- "linter",
- "workspace",
- "npm:@phenomnomnominal/tsquery",
- "npm:chalk",
- "npm:dotenv",
- "npm:enhanced-resolve",
- "npm:fork-ts-checker-webpack-plugin",
- "npm:rxjs",
- "npm:ts-loader",
- "npm:tsconfig-paths",
- "npm:tsconfig-paths-webpack-plugin",
- "npm:tslib",
- "npm:webpack",
- "npm:webpack-node-externals",
- "npm:cypress"
- ]
- },
- {
- "file": "packages/cypress/plugins/cypress-preset.ts",
- "hash": "74c1a8eef6e272ebc757655df00e92886a3ab114",
- "deps": ["devkit"]
- },
- {
- "file": "packages/cypress/plugins/preprocessor.ts",
- "hash": "74a9fe7a6f1bc68cbb09d77dbe60933509e8b4d1"
- },
- {
- "file": "packages/cypress/project.json",
- "hash": "8194cd276f66e0eceb1d6ee7a99edace72fce108"
- },
- {
- "file": "packages/cypress/README.md",
- "hash": "571b0baa9ebd3d3285c15bea2ca23162f21ace6c"
- },
- {
- "file": "packages/cypress/src/executors/cypress/compat.ts",
- "hash": "67ea703f814efff27e38dd649b5e5c7176312954",
- "deps": ["devkit"]
- },
- {
- "file": "packages/cypress/src/executors/cypress/cypress.impl.spec.ts",
- "hash": "6878e06c354f1c30401c10a1b0edf644a51b274c",
- "deps": ["devkit", "npm:cypress"]
- },
- {
- "file": "packages/cypress/src/executors/cypress/cypress.impl.ts",
- "hash": "7f3e8c524dc813dd8c9a880ed0b8333365c086f5",
- "deps": ["devkit", "npm:dotenv", "npm:cypress"]
- },
- {
- "file": "packages/cypress/src/executors/cypress/schema.json",
- "hash": "8c2a50d9bf1c56e24327b45abf06c15ec1ef2886"
- },
- {
- "file": "packages/cypress/src/generators/convert-tslint-to-eslint/__snapshots__/convert-tslint-to-eslint.spec.ts.snap",
- "hash": "f4ee96083767a3e296f837d9969d08296a1320a9"
- },
- {
- "file": "packages/cypress/src/generators/convert-tslint-to-eslint/convert-tslint-to-eslint.spec.ts",
- "hash": "6748869ec5c7c6f4e794d75b43308125c364ca2c",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/cypress/src/generators/convert-tslint-to-eslint/convert-tslint-to-eslint.ts",
- "hash": "da0dd512554fc7ac8e0119675af3093a1e7db20c",
- "deps": ["devkit", "linter", "npm:eslint"]
- },
- {
- "file": "packages/cypress/src/generators/convert-tslint-to-eslint/schema.json",
- "hash": "a17853c7974502253b2d0c70644281b896396924"
- },
- {
- "file": "packages/cypress/src/generators/cypress-component-project/__snapshots__/cypress-component-project.spec.ts.snap",
- "hash": "36e5eec5d8f46d596590918a7285b17baaa7491b"
- },
- {
- "file": "packages/cypress/src/generators/cypress-component-project/cypress-component-project.spec.ts",
- "hash": "b087c687c3fe6fd2bea314505c6b1ee986388e35",
- "deps": ["devkit"]
- },
- {
- "file": "packages/cypress/src/generators/cypress-component-project/cypress-component-project.ts",
- "hash": "0f70e0c4d1cb762b305af3f6b9508464e653e751",
- "deps": ["devkit"]
- },
- {
- "file": "packages/cypress/src/generators/cypress-component-project/files/cypress.config.ts__ext__",
- "hash": "e01aa48f3098d8607cf405df006f0b1ab67f5d97"
- },
- {
- "file": "packages/cypress/src/generators/cypress-component-project/files/cypress/fixtures/example.json",
- "hash": "02e4254378e9785f013be7cc8d94a8229dcbcbb7"
- },
- {
- "file": "packages/cypress/src/generators/cypress-component-project/files/cypress/support/commands.ts__ext__",
- "hash": "89d43df2e562be45ac0d439a72c6edda296bd4c6"
- },
- {
- "file": "packages/cypress/src/generators/cypress-component-project/files/cypress/support/component-index.html",
- "hash": "c23249f03407bb8de867f6660fbdbd5a73072b03"
- },
- {
- "file": "packages/cypress/src/generators/cypress-component-project/files/cypress/support/component.ts__ext__",
- "hash": "e3684dbdc47a8ad46bec749acf616ec8bd32e5e0"
- },
- {
- "file": "packages/cypress/src/generators/cypress-component-project/files/tsconfig.cy.json",
- "hash": "388383eb4ba4bb8118220e423834c181a517dd91"
- },
- {
- "file": "packages/cypress/src/generators/cypress-component-project/schema.d.ts",
- "hash": "c990759238bec418e1643b41e4f4138621d5a1fc"
- },
- {
- "file": "packages/cypress/src/generators/cypress-component-project/schema.json",
- "hash": "6ccee90bf086007bdd921de730f40beebc8f28f3"
- },
- {
- "file": "packages/cypress/src/generators/cypress-project/__snapshots__/cypress-project.spec.ts.snap",
- "hash": "37158030b760c12648e0914424c5f6c490ac8208"
- },
- {
- "file": "packages/cypress/src/generators/cypress-project/cypress-project.spec.ts",
- "hash": "b9057f780c30b0e6fcc3da6a59d066b5dea06d7d",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/cypress/src/generators/cypress-project/cypress-project.ts",
- "hash": "f03005f285818d162dc6ec03a73cbaf0f6c8998b",
- "deps": ["devkit", "linter", "workspace"]
- },
- {
- "file": "packages/cypress/src/generators/cypress-project/files/v10-and-after/cypress.config.ts__tmpl__",
- "hash": "ec426d33f5c31f35e8e5d5b4359e1da262e3d028"
- },
- {
- "file": "packages/cypress/src/generators/cypress-project/files/v10-and-after/src/e2e/app.cy.ts__tmpl__",
- "hash": "36f5a5cc48b4dbacaa2ed708f8102e94eab4dd3f"
- },
- {
- "file": "packages/cypress/src/generators/cypress-project/files/v10-and-after/src/fixtures/example.json__tmpl__",
- "hash": "294cbed6ce9e0b948b787452e8676aee486cb3be"
- },
- {
- "file": "packages/cypress/src/generators/cypress-project/files/v10-and-after/src/support/app.po.ts__tmpl__",
- "hash": "32934246969c2ecb827ac05677785933a707a54d"
- },
- {
- "file": "packages/cypress/src/generators/cypress-project/files/v10-and-after/src/support/commands.ts__tmpl__",
- "hash": "fc4dc5d3d285dac4cf85f96fd7181458c0b85259"
- },
- {
- "file": "packages/cypress/src/generators/cypress-project/files/v10-and-after/src/support/e2e.ts__tmpl__",
- "hash": "3d469a6b6cf31eb66117d73e278bcf74f398f1db"
- },
- {
- "file": "packages/cypress/src/generators/cypress-project/files/v10-and-after/tsconfig.json",
- "hash": "0c99dafd58c5db003eddf2802b939567766129f8"
- },
- {
- "file": "packages/cypress/src/generators/cypress-project/files/v9-and-under/cypress.json",
- "hash": "d8d6fe1c97e17cfc8752528083bd359c868350c4"
- },
- {
- "file": "packages/cypress/src/generators/cypress-project/files/v9-and-under/src/fixtures/example.json__tmpl__",
- "hash": "294cbed6ce9e0b948b787452e8676aee486cb3be"
- },
- {
- "file": "packages/cypress/src/generators/cypress-project/files/v9-and-under/src/integration/app.spec.ts__tmpl__",
- "hash": "36f5a5cc48b4dbacaa2ed708f8102e94eab4dd3f"
- },
- {
- "file": "packages/cypress/src/generators/cypress-project/files/v9-and-under/src/plugins/index.js",
- "hash": "9067e75a258dadf5a02b2a91c64f5acee1af17fd"
- },
- {
- "file": "packages/cypress/src/generators/cypress-project/files/v9-and-under/src/support/app.po.ts__tmpl__",
- "hash": "32934246969c2ecb827ac05677785933a707a54d"
- },
- {
- "file": "packages/cypress/src/generators/cypress-project/files/v9-and-under/src/support/commands.ts__tmpl__",
- "hash": "fc4dc5d3d285dac4cf85f96fd7181458c0b85259"
- },
- {
- "file": "packages/cypress/src/generators/cypress-project/files/v9-and-under/src/support/index.ts__tmpl__",
- "hash": "459189af2288e5902e12bf1b1bf307fb779295a5"
- },
- {
- "file": "packages/cypress/src/generators/cypress-project/files/v9-and-under/tsconfig.json",
- "hash": "ab92eb639b4f9bc84ac3a04270ee5044b06a98c1"
- },
- {
- "file": "packages/cypress/src/generators/cypress-project/schema.d.ts",
- "hash": "512efdd931430f0376a2442f6bc71f73c5ba8e92",
- "deps": ["linter"]
- },
- {
- "file": "packages/cypress/src/generators/cypress-project/schema.json",
- "hash": "dec9fd8d2763dfa67feafaf8cad121a18977fce1"
- },
- {
- "file": "packages/cypress/src/generators/init/init.spec.ts",
- "hash": "839365489d4a6804b896c3a055048d469299e6e0",
- "deps": ["devkit"]
- },
- {
- "file": "packages/cypress/src/generators/init/init.ts",
- "hash": "05cb27e5db3db41bd89eacc2dc49cd36f18f37fd",
- "deps": ["devkit"]
- },
- {
- "file": "packages/cypress/src/generators/init/schema.d.ts",
- "hash": "c629d7fae1e13d80bd7bdde3738d49426618c91c"
- },
- {
- "file": "packages/cypress/src/generators/init/schema.json",
- "hash": "4c7050e6aefbf208d6aa2e33a7f7c60c15dff15a"
- },
- {
- "file": "packages/cypress/src/generators/migrate-to-cypress-ten/__snapshots__/migrate-to-cypress-ten.spec.ts.snap",
- "hash": "baa967a5b1d70c6dc949843d9b5ee9b0478dc379"
- },
- {
- "file": "packages/cypress/src/generators/migrate-to-cypress-ten/conversion.util.ts",
- "hash": "8959384924724d7c47995c98683797cbf14b275d",
- "deps": [
- "devkit",
- "npm:@phenomnomnominal/tsquery",
- "npm:typescript",
- "npm:cypress"
- ]
- },
- {
- "file": "packages/cypress/src/generators/migrate-to-cypress-ten/migrate-to-cypress-ten.spec.ts",
- "hash": "00d181327d66dee2200175523a65463fa91cea34",
- "deps": ["devkit"]
- },
- {
- "file": "packages/cypress/src/generators/migrate-to-cypress-ten/migrate-to-cypress-ten.ts",
- "hash": "98a86a5bde2ef8c6f58efd8c60ddccbf17b21bc1",
- "deps": ["devkit", "workspace", "npm:@phenomnomnominal/tsquery"]
- },
- {
- "file": "packages/cypress/src/generators/migrate-to-cypress-ten/schema.json",
- "hash": "8d2d44c4b280f7e8e8f2154dcc7d4c653b54999b"
- },
- {
- "file": "packages/cypress/src/migrations/update-12-8-0/remove-typescript-plugin.spec.ts",
- "hash": "a4f618ec9ddeaba6ef2bddd674d59f6bbba03007",
- "deps": ["devkit"]
- },
- {
- "file": "packages/cypress/src/migrations/update-12-8-0/remove-typescript-plugin.ts",
- "hash": "4fa0dfbe7179a33eaf5bf16d3646e7747c279eba",
- "deps": ["devkit", "npm:typescript"]
- },
- {
- "file": "packages/cypress/src/migrations/update-14-6-1/update-cypress-configs-presets.spec.ts",
- "hash": "2b247ded1aeeedda52523d3b9d9a287392649db4",
- "deps": ["devkit", "workspace", "npm:cypress"]
- },
- {
- "file": "packages/cypress/src/migrations/update-14-6-1/update-cypress-configs-presets.ts",
- "hash": "6e00265127b148ea618ef49a218ea5747a78c904",
- "deps": [
- "devkit",
- "workspace",
- "npm:@phenomnomnominal/tsquery",
- "npm:typescript"
- ]
- },
- {
- "file": "packages/cypress/src/migrations/update-8-1-0/update-8-1-0.spec.ts",
- "hash": "5284376c5319321cc2a42dc18d1e6ea75d74bf1e",
- "deps": ["npm:@angular-devkit/schematics"]
- },
- {
- "file": "packages/cypress/src/migrations/update-8-1-0/update-8-1-0.ts",
- "hash": "48e0529fd603f649dc7858c0f9b3894a16965550",
- "deps": [
- "npm:@angular-devkit/schematics",
- "workspace",
- "npm:@angular-devkit/core"
- ]
- },
- {
- "file": "packages/cypress/src/migrations/update-8-10-0/update-8-10-0.ts",
- "hash": "2257c756503e3690ded1769c940d0420732ad70e",
- "deps": ["workspace", "npm:@angular-devkit/schematics"]
- },
- {
- "file": "packages/cypress/src/migrations/update-8-12-0/update-8-12-0.ts",
- "hash": "6d526136aedc893a8af075f78750d599b5a404d8",
- "deps": ["workspace", "npm:@angular-devkit/schematics"]
- },
- {
- "file": "packages/cypress/src/migrations/update-8-2-0/update-8-2-0.spec.ts",
- "hash": "7b3718317e23621e6c3681d77bbc6eb0d4162c7d",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/cypress/src/migrations/update-8-2-0/update-8-2-0.ts",
- "hash": "ef0228c4aa6739726c1fd877c51b4b440676dbb0",
- "deps": [
- "npm:@angular-devkit/schematics",
- "workspace",
- "npm:@angular-devkit/core",
- "npm:typescript"
- ]
- },
- {
- "file": "packages/cypress/src/migrations/update-9-4-0/add-cypress-eslint-plugin-9-4-0.spec.ts",
- "hash": "6753e05d09f246e49576b037d2fded6f6a4c09ea",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/cypress/src/migrations/update-9-4-0/add-cypress-eslint-plugin-9-4-0.ts",
- "hash": "425f923e5a0613794258575dc33b6f7ae36f31ea",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/cypress/src/plugins/preprocessor.spec.ts",
- "hash": "e26d38e1fda41aa5c52aeb5828fec5006d25989c",
- "deps": [
- "npm:@cypress/webpack-preprocessor",
- "npm:tsconfig-paths-webpack-plugin"
- ]
- },
- {
- "file": "packages/cypress/src/plugins/preprocessor.ts",
- "hash": "b343f9102d4339c8d654f0af9866e636659ce6fa",
- "deps": [
- "npm:@cypress/webpack-preprocessor",
- "npm:tsconfig-paths-webpack-plugin",
- "npm:fork-ts-checker-webpack-plugin",
- "devkit",
- "npm:webpack-node-externals"
- ]
- },
- {
- "file": "packages/cypress/src/utils/cypress-version.ts",
- "hash": "812f4c85088d55036e1902636069452c56aeec56",
- "deps": ["npm:cypress"]
- },
- {
- "file": "packages/cypress/src/utils/find-target-options.ts",
- "hash": "06893852d8205a6ffc936834f5ece7890df6c17b",
- "deps": ["devkit", "nx"]
- },
- {
- "file": "packages/cypress/src/utils/project-name.ts",
- "hash": "11ce9f47facedafd8e643fe10936693e53d3f10f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/cypress/src/utils/testing.ts",
- "hash": "3529df8c759b6e2c407f72bd98bd4d60f99abc45",
- "deps": ["npm:@angular-devkit/schematics"]
- },
- {
- "file": "packages/cypress/src/utils/versions.ts",
- "hash": "4d653e20a4fa340ec05cd5ef4673c2b5b6a23620"
- },
- {
- "file": "packages/cypress/tsconfig.json",
- "hash": "58bd2c97a66f5e5ea5d05c8a5709ee79bad02094"
- },
- {
- "file": "packages/cypress/tsconfig.lib.json",
- "hash": "5c589aef9e7c76c6bd9a4eea2464ea8a75508919"
- },
- {
- "file": "packages/cypress/tsconfig.spec.json",
- "hash": "46f9467f3bd81cb7ec6abc5dcec5c1d35c42f28a"
- }
- ]
- }
- },
- {
- "name": "e2e-angular-core",
- "type": "app",
- "data": {
- "tags": [],
- "root": "e2e/angular-core",
- "files": [
- {
- "file": "e2e/angular-core/jest.config.ts",
- "hash": "2cce4546703829cd833bd623cf1e1529bc9decaf"
- },
- {
- "file": "e2e/angular-core/project.json",
- "hash": "88e063028a7203e67ebe411160e5a3e741b0959b"
- },
- {
- "file": "e2e/angular-core/src/angular-linting.test.ts",
- "hash": "758f6b9a28d6765b9583e48da434fd946f662b93",
- "deps": ["e2e-utils", "npm:@angular/core"]
- },
- {
- "file": "e2e/angular-core/src/config.test.ts",
- "hash": "a261e78b14ad50a3fa411a01fe1eaead56227086",
- "deps": ["e2e-utils"]
- },
- {
- "file": "e2e/angular-core/src/ng-add.test.ts",
- "hash": "3d131a2a392429d530ae3443c1e8076b7e0a7e12",
- "deps": ["e2e-utils", "nx"]
- },
- {
- "file": "e2e/angular-core/src/projects.test.ts",
- "hash": "11f72902d36061c1a32dc0440346424568a36ec4",
- "deps": ["e2e-utils", "devkit"]
- },
- {
- "file": "e2e/angular-core/tsconfig.json",
- "hash": "6d5abf84832009a8c70e7a910c49f332bf1f0612"
- },
- {
- "file": "e2e/angular-core/tsconfig.spec.json",
- "hash": "1a24bfb0a13536cd17717808ca5609e15def438f"
- }
- ]
- }
- },
- {
- "name": "e2e-graph-client",
- "type": "app",
- "data": {
- "tags": [],
- "root": "graph/client-e2e",
- "files": [
- {
- "file": "graph/client-e2e/.eslintrc",
- "hash": "a15e6e72c6c672e40e179b07bade85d47377d8c9"
- },
- {
- "file": "graph/client-e2e/cypress-release.json",
- "hash": "747250863d9bf701bb67a558930f9e65d61c1ec8"
- },
- {
- "file": "graph/client-e2e/cypress-watch-mode.json",
- "hash": "144338c85b97c0cab7eb11c9483b2a86d66735fb"
- },
- {
- "file": "graph/client-e2e/cypress.json",
- "hash": "2975b9a79aad286bda6661092f52ae14af363880"
- },
- {
- "file": "graph/client-e2e/project.json",
- "hash": "c1d2022c433d4a6b19195530f4ed646cf6e9af18"
- },
- {
- "file": "graph/client-e2e/src/fixtures/affected.json",
- "hash": "f5506561571c7183c4d20ebb8ebdf9a425e12e01"
- },
- {
- "file": "graph/client-e2e/src/fixtures/nx-examples.json",
- "hash": "40e103f9b7f33b74e64b37a0728ef6ec34293e07"
- },
- {
- "file": "graph/client-e2e/src/integration/app.spec.ts",
- "hash": "673e7c0a4735f35c91c36b4b3abdd7137d668cf9"
- },
- {
- "file": "graph/client-e2e/src/plugins/index.js",
- "hash": "5b06a6c11d90d2060f69cea40959e0779923417d",
- "deps": ["cypress"]
- },
- {
- "file": "graph/client-e2e/src/release-integration/release.spec.ts",
- "hash": "39d35c9480c4ac5ed2162c7ef79b2d4f084e8d67"
- },
- {
- "file": "graph/client-e2e/src/support/app.po.ts",
- "hash": "25d230a03fdc37b4d193d7b249472cf0fd0d183e"
- },
- {
- "file": "graph/client-e2e/src/support/commands.ts",
- "hash": "61b3a3e35770234a5aa9e31b07870b9292ec52ba"
- },
- {
- "file": "graph/client-e2e/src/support/index.ts",
- "hash": "3d469a6b6cf31eb66117d73e278bcf74f398f1db"
- },
- {
- "file": "graph/client-e2e/src/watch-mode-integration/watch-mode.spec.ts",
- "hash": "3b14e02fed1430ca702c5a056096913a12c3c202"
- },
- {
- "file": "graph/client-e2e/tsconfig.e2e.json",
- "hash": "150be8909d6d5550e657d534e043fe18e80b4573"
- },
- {
- "file": "graph/client-e2e/tsconfig.json",
- "hash": "08841a7f56c62d55340ad08451502304837254fd"
- }
- ]
- }
- },
- {
- "name": "e2e-react-native",
- "type": "app",
- "data": {
- "tags": [],
- "root": "e2e/react-native",
- "files": [
- {
- "file": "e2e/react-native/jest.config.ts",
- "hash": "065a08e6c8ee4f6cf9a04626aaf924467cf2d149"
- },
- {
- "file": "e2e/react-native/project.json",
- "hash": "2ca2e0d4019c1204ec7066190897219de7e648c4"
- },
- {
- "file": "e2e/react-native/src/react-native.test.ts",
- "hash": "ea37d423512fac3a60be8c7e981acb6a51fd2f7f",
- "deps": ["e2e-utils"]
- },
- {
- "file": "e2e/react-native/tsconfig.json",
- "hash": "6d5abf84832009a8c70e7a910c49f332bf1f0612"
- },
- {
- "file": "e2e/react-native/tsconfig.spec.json",
- "hash": "1a24bfb0a13536cd17717808ca5609e15def438f"
- }
- ]
- }
- },
- {
- "name": "express",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/express",
- "files": [
- {
- "file": "packages/express/.eslintrc.json",
- "hash": "25d6c99d3c0dcd94fb253344d7f8d5653461f1a3"
- },
- {
- "file": "packages/express/generators.json",
- "hash": "d6811ef8fee6275b601768f389db828560c27f16"
- },
- {
- "file": "packages/express/index.ts",
- "hash": "69032cd12bf5267f4f5ce5bcca6a1f410559213f"
- },
- {
- "file": "packages/express/jest.config.ts",
- "hash": "b716a3c15e77bfa960c9a99482d197739f9cb190"
- },
- {
- "file": "packages/express/migrations.json",
- "hash": "112746a33b61fbfb9366a952daac2bdeb896636b"
- },
- {
- "file": "packages/express/migrations.spec.ts",
- "hash": "085574cf502aa5c86a808c19a4acfe4bdfa15188"
- },
- {
- "file": "packages/express/package.json",
- "hash": "7791423713074d864de29165d3bb9d1a120f513b",
- "deps": ["devkit", "node", "workspace", "npm:express"]
- },
- {
- "file": "packages/express/project.json",
- "hash": "59a53ba40e357086084d9af9cce516eb6620d2a3"
- },
- {
- "file": "packages/express/README.md",
- "hash": "b4999029541b8cb3ad487635e9e4d39641e92e21"
- },
- {
- "file": "packages/express/src/generators/application/application.spec.ts",
- "hash": "6d93fbd50c9e10a99df2bdb75e66a6709e771df7",
- "deps": ["devkit"]
- },
- {
- "file": "packages/express/src/generators/application/application.ts",
- "hash": "88c73005a7474d7acc08dc5997a856345e9530d0",
- "deps": ["devkit", "node", "npm:express"]
- },
- {
- "file": "packages/express/src/generators/application/schema.d.ts",
- "hash": "a1e7431f654f2eef0279eb81161138f5eb4f2da8",
- "deps": ["linter"]
- },
- {
- "file": "packages/express/src/generators/application/schema.json",
- "hash": "592b92a596e02040b6bd65c8c97dbdbbf16c10ed"
- },
- {
- "file": "packages/express/src/generators/init/init.spec.ts",
- "hash": "fbfa5acd94869b606484969916d759c81bfa0f14",
- "deps": ["devkit"]
- },
- {
- "file": "packages/express/src/generators/init/init.ts",
- "hash": "b4f7a468d37efc022e6687d6a7dbb0912c93529a",
- "deps": ["devkit", "node"]
- },
- {
- "file": "packages/express/src/generators/init/schema.d.ts",
- "hash": "dde6ab28778e7e60ca8413d68251529ec075e183"
- },
- {
- "file": "packages/express/src/generators/init/schema.json",
- "hash": "e325e9cf087255b0e2e32db80818edafcdf85318"
- },
- {
- "file": "packages/express/src/utils/versions.ts",
- "hash": "a0fd1227118dfbba7938da643fd176bde735e8b0"
- },
- {
- "file": "packages/express/tsconfig.json",
- "hash": "58bd2c97a66f5e5ea5d05c8a5709ee79bad02094"
- },
- {
- "file": "packages/express/tsconfig.lib.json",
- "hash": "1d2ddef3c1be3aa86cb55b66b9c912d3c6bf1a07"
- },
- {
- "file": "packages/express/tsconfig.spec.json",
- "hash": "869c90c526a0fe7b4b32c39d3989c66259545d9a"
- }
- ]
- }
- },
- {
- "name": "nx-dev-ui-common",
- "type": "lib",
- "data": {
- "tags": ["scope:nx-dev", "type:ui"],
- "root": "nx-dev/ui-common",
- "files": [
- {
- "file": "nx-dev/ui-common/.eslintrc.json",
- "hash": "4d71ffb1400656694613a7a16b349914b4c8d27f"
- },
- {
- "file": "nx-dev/ui-common/jest.config.ts",
- "hash": "f224a30efdf44b611fd7781e7aa896447be9d4cb"
- },
- {
- "file": "nx-dev/ui-common/project.json",
- "hash": "ab0ca6f88cbc16f68496728b4529cedaf081b126"
- },
- {
- "file": "nx-dev/ui-common/README.md",
- "hash": "431f141645a9c409fca92063ec4e62a292583356"
- },
- {
- "file": "nx-dev/ui-common/src/index.ts",
- "hash": "678801bb7607139e94dfc12bbb6d410fac87140c"
- },
- {
- "file": "nx-dev/ui-common/src/lib/announcement-banner.tsx",
- "hash": "9c0e9081f3a66d53597cc881dec889b5b925dba2",
- "deps": ["npm:next"]
- },
- {
- "file": "nx-dev/ui-common/src/lib/breadcrumbs.tsx",
- "hash": "493acd9f516376d6b0a36f19bc4547141bb51db8",
- "deps": ["npm:@heroicons/react", "npm:classnames"]
- },
- {
- "file": "nx-dev/ui-common/src/lib/footer.tsx",
- "hash": "90835f997fbe34889dff4876f220ec5708239a36",
- "deps": ["npm:classnames", "npm:next"]
- },
- {
- "file": "nx-dev/ui-common/src/lib/header.tsx",
- "hash": "a316fb60dfc7e5272f0786d7fa9534ba1eb0faed",
- "deps": ["nx-dev-feature-search", "npm:classnames", "npm:next"]
- },
- {
- "file": "nx-dev/ui-common/src/lib/npx-create-nx-workspace.tsx",
- "hash": "72e9f44ff9999bf8635b34363e3f00fc82f33877",
- "deps": ["npm:framer-motion", "npm:react"]
- },
- {
- "file": "nx-dev/ui-common/src/lib/nx-users-showcase.tsx",
- "hash": "166f3909e1778da31a6d00183c8af77127fe9fed"
- },
- {
- "file": "nx-dev/ui-common/src/lib/plugin-card.tsx",
- "hash": "f7b766456afa99c7709f1294f1b831297e500beb"
- },
- {
- "file": "nx-dev/ui-common/src/lib/selector.tsx",
- "hash": "a2b47497aa5766f303f201bc62779cc9a9b7fa8f",
- "deps": [
- "npm:@headlessui/react",
- "npm:@heroicons/react",
- "npm:react"
- ]
- },
- {
- "file": "nx-dev/ui-common/src/lib/sidebar.tsx",
- "hash": "96232ac540c17d7c512e7fe04331d9c2df259503",
- "deps": [
- "nx-dev-models-menu",
- "npm:classnames",
- "npm:next",
- "npm:react"
- ]
- },
- {
- "file": "nx-dev/ui-common/src/lib/testimonial-card.tsx",
- "hash": "15c167a6df2b0a408add1055173bf44e441da3b9"
- },
- {
- "file": "nx-dev/ui-common/tsconfig.json",
- "hash": "3230750a884f72a8d552144dcb423f1ed5899fff"
- },
- {
- "file": "nx-dev/ui-common/tsconfig.lib.json",
- "hash": "ad41401e71c05059f162a6729f494b2e64945ad9"
- },
- {
- "file": "nx-dev/ui-common/tsconfig.spec.json",
- "hash": "c72d175a8138cafc833e41ae45a57b4cf3c4044f"
- }
- ]
- }
- },
- {
- "name": "devkit",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/devkit",
- "files": [
- {
- "file": "packages/devkit/.eslintrc.json",
- "hash": "25e21f47c23a6a8358c0260f6ad8703b64306d8a"
- },
- {
- "file": "packages/devkit/index.ts",
- "hash": "4345f05d0f6c379476e5aabfb0648114ca4e25b0",
- "deps": ["nx"]
- },
- {
- "file": "packages/devkit/jest.config.ts",
- "hash": "5a6bcdc5c0f2540e13206f7276ef09ccf886a305"
- },
- {
- "file": "packages/devkit/migrations.json",
- "hash": "23c4e23f1259ee86898df05cd61665d9b547eae3"
- },
- {
- "file": "packages/devkit/migrations.spec.ts",
- "hash": "cde4966665f8f01375e4646b9d85ed3a74deb64c"
- },
- {
- "file": "packages/devkit/ngcli-adapter.ts",
- "hash": "917d1b8a41a92c9832847f3084e7c823e6faa532",
- "deps": ["nx"]
- },
- {
- "file": "packages/devkit/package.json",
- "hash": "d3884695f771bb866ded5abd47067bc9030537ac",
- "deps": [
- "npm:ejs",
- "npm:ignore",
- "npm:semver",
- "npm:tslib",
- "npm:@phenomnomnominal/tsquery",
- "nx"
- ]
- },
- {
- "file": "packages/devkit/project.json",
- "hash": "8fe8d55b938b616a85f9d170603cc3dbbd9997d2"
- },
- {
- "file": "packages/devkit/README.md",
- "hash": "d9b86fe0f5e76156d6dbbc6a3dd51192ac7da22a"
- },
- {
- "file": "packages/devkit/src/executors/parse-target-string.spec.ts",
- "hash": "fce4639b32211470bf8d970bb5a22f67d4711f22"
- },
- {
- "file": "packages/devkit/src/executors/parse-target-string.ts",
- "hash": "5d614933f88f1915503640bb15a1af160c3c57a0",
- "deps": ["nx"]
- },
- {
- "file": "packages/devkit/src/executors/read-target-options.ts",
- "hash": "24fef2a9b48d0dffcc3699b0ddd1707807c784a1",
- "deps": ["nx"]
- },
- {
- "file": "packages/devkit/src/generators/__snapshots__/generate-files.spec.ts.snap",
- "hash": "7a6636f585e6476440b7392ddbe12eccdebbd7fc"
- },
- {
- "file": "packages/devkit/src/generators/format-files.ts",
- "hash": "bcc2a3d89c79eb24a606f859310a30346f96f15d",
- "deps": ["nx", "npm:prettier"]
- },
- {
- "file": "packages/devkit/src/generators/generate-files.spec.ts",
- "hash": "02cd4f0bb5182daec8307b6a736c751c5c9de8cf",
- "deps": ["nx", "npm:file-type"]
- },
- {
- "file": "packages/devkit/src/generators/generate-files.ts",
- "hash": "5aed85b770847084bea9e07260e415e70f034dd1",
- "deps": ["nx", "npm:ejs"]
- },
- {
- "file": "packages/devkit/src/generators/test-files/directory-foo-__foo__/file-in-directory-foo-__foo__.txt",
- "hash": "5b81b2eb1f17cb2ad4dc281594d73a9f08419a92"
- },
- {
- "file": "packages/devkit/src/generators/test-files/directory/file-in-directory.txt",
- "hash": "f51cb01e9a75161e0fb8bece45451f6f268694f0"
- },
- {
- "file": "packages/devkit/src/generators/test-files/file-with-property-foo-__foo__.txt",
- "hash": "a6a98cfa5880bdf54ae687892791455716525ac2"
- },
- {
- "file": "packages/devkit/src/generators/test-files/file-with-template-suffix.txt.template",
- "hash": "6121e61af396d9eb6aaebdde1bd426a7906a69ec"
- },
- {
- "file": "packages/devkit/src/generators/test-files/file.txt",
- "hash": "d03e2425cf1c82616e12cb430c69aaa6cc08ff84"
- },
- {
- "file": "packages/devkit/src/generators/test-files/image.png",
- "hash": "ee28d3d8f79610760e987979703f4c0c310ddd37"
- },
- {
- "file": "packages/devkit/src/generators/test-files/src/__name__.module.ts.template",
- "hash": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"
- },
- {
- "file": "packages/devkit/src/generators/test-files/src/__projectName__/__name__/__projectName__.__name__.model.ts.template",
- "hash": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"
- },
- {
- "file": "packages/devkit/src/generators/test-files/src/__projectName__/create-__name__.input.ts.template",
- "hash": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"
- },
- {
- "file": "packages/devkit/src/generators/test-files/src/__projectName__/output/__dot__gitkeep",
- "hash": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"
- },
- {
- "file": "packages/devkit/src/generators/test-files/src/common-util.ts.template",
- "hash": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"
- },
- {
- "file": "packages/devkit/src/generators/to-js.ts",
- "hash": "709adc79ef586c8eb4b496c72ce708bb90ae4f9b",
- "deps": ["nx", "npm:typescript"]
- },
- {
- "file": "packages/devkit/src/generators/typescript/insert-import.ts",
- "hash": "6fbcc3cde158ebaf893343bfb76997d5e01460f5"
- },
- {
- "file": "packages/devkit/src/generators/typescript/insert-statement.ts",
- "hash": "6fbcc3cde158ebaf893343bfb76997d5e01460f5"
- },
- {
- "file": "packages/devkit/src/generators/update-ts-configs-to-js.ts",
- "hash": "c329329f8f69525fb2ffd6ae719381d6009c0636",
- "deps": ["nx"]
- },
- {
- "file": "packages/devkit/src/generators/visit-not-ignored-files.spec.ts",
- "hash": "8c9f85310c5fdbfe2b61f5f0f74bedb089840f95",
- "deps": ["nx"]
- },
- {
- "file": "packages/devkit/src/generators/visit-not-ignored-files.ts",
- "hash": "b4571da88c6545cbc8367b898870897dfb049a1b",
- "deps": ["nx", "npm:ignore"]
- },
- {
- "file": "packages/devkit/src/migrations/update-14-2-0/split-create-empty-tree.spec.ts",
- "hash": "9452a196b9aee70df9ccd951109cec46b7e556c3"
- },
- {
- "file": "packages/devkit/src/migrations/update-14-2-0/split-create-empty-tree.ts",
- "hash": "5b74e12c62bbc52d2194bab1390158fd01c653c8",
- "deps": ["nx", "npm:@phenomnomnominal/tsquery"]
- },
- {
- "file": "packages/devkit/src/tasks/install-packages-task.ts",
- "hash": "54979b7d981124679d8a227e8a8c2ab5db324afb",
- "deps": ["nx"]
- },
- {
- "file": "packages/devkit/src/utils/convert-nx-executor.ts",
- "hash": "0bf6636d179d1f3b0ac23c326d4acefe4da6fcf2",
- "deps": ["npm:rxjs", "nx", "npm:@angular-devkit/architect"]
- },
- {
- "file": "packages/devkit/src/utils/get-workspace-layout.ts",
- "hash": "a3897fa8774e26156f87a3ee9e8a5a2e7a3758ca",
- "deps": ["nx"]
- },
- {
- "file": "packages/devkit/src/utils/invoke-nx-generator.ts",
- "hash": "e0fcc5520ec8200e2fdb8e7f8b39dd7043fa7ab2",
- "deps": ["nx"]
- },
- {
- "file": "packages/devkit/src/utils/move-dir.ts",
- "hash": "87f0230d783f5efb495aa65a72872c9d0a190bb1",
- "deps": ["nx"]
- },
- {
- "file": "packages/devkit/src/utils/names.spec.ts",
- "hash": "1dc1cb61e1c69830394e164a240112675a6b20b7"
- },
- {
- "file": "packages/devkit/src/utils/names.ts",
- "hash": "77bedbe78bdc06f50c161c50ec8d52496469aa13"
- },
- {
- "file": "packages/devkit/src/utils/offset-from-root.spec.ts",
- "hash": "15b27b4ad49db322d7eb5469268b2c6190046742"
- },
- {
- "file": "packages/devkit/src/utils/offset-from-root.ts",
- "hash": "3d7dfc0a12bcfa4c51525fba2e0d35d75d963e50"
- },
- {
- "file": "packages/devkit/src/utils/package-json.spec.ts",
- "hash": "e1efe1171d02626d06588d4edd3b5151a4d98955",
- "deps": ["nx"]
- },
- {
- "file": "packages/devkit/src/utils/package-json.ts",
- "hash": "58326f0c3b5b1ada51de2896d9be9b0b6d5e6c36",
- "deps": ["nx"]
- },
- {
- "file": "packages/devkit/src/utils/rxjs-for-await.ts",
- "hash": "444f1be549b45bdf1e52b17603aaef1a2d1e79b4",
- "deps": ["npm:rxjs"]
- },
- {
- "file": "packages/devkit/src/utils/string-change.spec.ts",
- "hash": "d27ae95d8f90eec99538f9d2df1e90a028017bba"
- },
- {
- "file": "packages/devkit/src/utils/string-change.ts",
- "hash": "406bb4be1604873b7dd63eb0492a4303dfe8e133"
- },
- {
- "file": "packages/devkit/testing.ts",
- "hash": "4f483d5f166a5edf43200a115a7a874079831651",
- "deps": ["nx"]
- },
- {
- "file": "packages/devkit/tsconfig.json",
- "hash": "58bd2c97a66f5e5ea5d05c8a5709ee79bad02094"
- },
- {
- "file": "packages/devkit/tsconfig.lib.json",
- "hash": "1d2ddef3c1be3aa86cb55b66b9c912d3c6bf1a07"
- },
- {
- "file": "packages/devkit/tsconfig.spec.json",
- "hash": "869c90c526a0fe7b4b32c39d3989c66259545d9a"
- }
- ]
- }
- },
- {
- "name": "linter",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/linter",
- "files": [
- {
- "file": "packages/linter/.eslintrc.json",
- "hash": "6c7a3539d988af84174c309b080fdf10dde2d4c1"
- },
- {
- "file": "packages/linter/executors.json",
- "hash": "526616a0bb63792f419fe961156da24d90800834"
- },
- {
- "file": "packages/linter/generators.json",
- "hash": "79aae1043216baac6f755729e3bf70318bc0f813"
- },
- {
- "file": "packages/linter/index.ts",
- "hash": "8cb80da42c0fb12ab2feeec8f2c02165a734b7c0"
- },
- {
- "file": "packages/linter/jest.config.ts",
- "hash": "83dce92dc17254fa80d797f5331e84d300357687"
- },
- {
- "file": "packages/linter/migrations.json",
- "hash": "868e673935bcbdff214ee39ac2a17e3bf040aedc"
- },
- {
- "file": "packages/linter/migrations.spec.ts",
- "hash": "9346e91b48c06f7b8b399949603df7df6be390b6"
- },
- {
- "file": "packages/linter/package.json",
- "hash": "fc9c238081ea1439765620bed805b6d4a4df6cc6",
- "deps": [
- "devkit",
- "jest",
- "npm:@phenomnomnominal/tsquery",
- "nx",
- "npm:tmp",
- "npm:tslib",
- "npm:eslint"
- ]
- },
- {
- "file": "packages/linter/project.json",
- "hash": "60b7ab8ac969d171eb3155722e78d3bd3c9ed254"
- },
- {
- "file": "packages/linter/README.md",
- "hash": "37eb64ddbdbef18069a53a64e26181513e5cfb32"
- },
- {
- "file": "packages/linter/src/executors/eslint/compat.ts",
- "hash": "d04532c1be5ca4b4445d93b43b4d880d2a2b101b",
- "deps": ["devkit"]
- },
- {
- "file": "packages/linter/src/executors/eslint/hasher.ts",
- "hash": "dd96a53a4f18b12b8d12a197ffcc46ab25c42a5e",
- "deps": ["devkit"]
- },
- {
- "file": "packages/linter/src/executors/eslint/lint.impl.spec.ts",
- "hash": "57c923ac5dd393a2b65983a46ac209a83491ad09",
- "deps": ["devkit"]
- },
- {
- "file": "packages/linter/src/executors/eslint/lint.impl.ts",
- "hash": "f3086ddb3d8bdb8f9efcfb8a38d24dd6adf4bdc2",
- "deps": ["devkit", "npm:eslint"]
- },
- {
- "file": "packages/linter/src/executors/eslint/schema.d.ts",
- "hash": "ef346060376ec3ef113c94dd1b5f2b144b772b85",
- "deps": ["npm:@angular-devkit/core", "npm:eslint"]
- },
- {
- "file": "packages/linter/src/executors/eslint/schema.json",
- "hash": "8244625bf6599aeec3c22e989cd0cebb4ef37561"
- },
- {
- "file": "packages/linter/src/executors/eslint/utility/eslint-utils.spec.ts",
- "hash": "5edf933df903f8a7742dd559d0448bfeaa1e2371",
- "deps": ["npm:eslint"]
- },
- {
- "file": "packages/linter/src/executors/eslint/utility/eslint-utils.ts",
- "hash": "c92183cf6cd1a45a862e7418253a1233ea9edd07",
- "deps": ["npm:eslint"]
- },
- {
- "file": "packages/linter/src/executors/lint/compat.ts",
- "hash": "09df2fa800a11f1f140ca91ba59032494625e1ef",
- "deps": ["devkit"]
- },
- {
- "file": "packages/linter/src/executors/lint/lint.impl.ts",
- "hash": "c16742548dc1063ec4e91e14791ea72d2958b3a2",
- "deps": ["devkit"]
- },
- {
- "file": "packages/linter/src/executors/lint/schema.json",
- "hash": "fd3d13999fbdfe5dad50573cf72e0dc6674256af"
- },
- {
- "file": "packages/linter/src/generators/init/__snapshots__/init.spec.ts.snap",
- "hash": "fc2c19b8610429d218d59a3b079a41184ee91438"
- },
- {
- "file": "packages/linter/src/generators/init/init.spec.ts",
- "hash": "984bfdb3017954283c15eac2ec5b733ee2154bad",
- "deps": ["devkit"]
- },
- {
- "file": "packages/linter/src/generators/init/init.ts",
- "hash": "8f39e70593e90ab86b16554f7a21247b1bc46cac",
- "deps": ["devkit", "npm:eslint"]
- },
- {
- "file": "packages/linter/src/generators/lint-project/__snapshots__/lint-project.spec.ts.snap",
- "hash": "6f961ef85b50a0ed53fd93617584944724676772"
- },
- {
- "file": "packages/linter/src/generators/lint-project/lint-project.spec.ts",
- "hash": "69d1e620b278e9f75663909732f5f65c07293be0",
- "deps": ["devkit"]
- },
- {
- "file": "packages/linter/src/generators/lint-project/lint-project.ts",
- "hash": "bea245a3d97481ee77c467a9723ef6b1ff6edc04",
- "deps": ["devkit"]
- },
- {
- "file": "packages/linter/src/generators/utils/eslint-file.spec.ts",
- "hash": "bd936229ce22e5316e463ffc6032e32f7fdf72fb",
- "deps": ["devkit"]
- },
- {
- "file": "packages/linter/src/generators/utils/eslint-file.ts",
- "hash": "43b4ddecb77e817f53b56b77131a13273a56ba1d",
- "deps": ["devkit"]
- },
- {
- "file": "packages/linter/src/generators/utils/linter.ts",
- "hash": "d766289a0bc32855523ae2122f353c09f02392c6"
- },
- {
- "file": "packages/linter/src/generators/workspace-rule/__snapshots__/workspace-rule.spec.ts.snap",
- "hash": "4ae9b7e9ecae0bcec0aacb7beee903b2fb0101aa"
- },
- {
- "file": "packages/linter/src/generators/workspace-rule/files/__name__.spec.ts__tmpl__",
- "hash": "c0b08ef433046fdd79e6086e5ccb4c7eb5014ead"
- },
- {
- "file": "packages/linter/src/generators/workspace-rule/files/__name__.ts__tmpl__",
- "hash": "8a3451b1a68f819fb76c59cf0e5f401f6851649e"
- },
- {
- "file": "packages/linter/src/generators/workspace-rule/schema.json",
- "hash": "348f20c60441ca5d44e4dae38ed81b9b5d9b68f4"
- },
- {
- "file": "packages/linter/src/generators/workspace-rule/workspace-rule.spec.ts",
- "hash": "b41eadf1bebbdafa8ee21f8c8a9cdd202d5cf490",
- "deps": ["devkit"]
- },
- {
- "file": "packages/linter/src/generators/workspace-rule/workspace-rule.ts",
- "hash": "fe7ede7de94e6edff4aa2236e89abe048f39c45a",
- "deps": ["devkit", "workspace", "npm:typescript"]
- },
- {
- "file": "packages/linter/src/generators/workspace-rules-project/__snapshots__/workspace-rules-project.spec.ts.snap",
- "hash": "89be3050a816794bc156c025583093e02ca8c6c9"
- },
- {
- "file": "packages/linter/src/generators/workspace-rules-project/files/index.ts__tmpl__",
- "hash": "79c806b39d943465205838c68851e6fe9989ac1b"
- },
- {
- "file": "packages/linter/src/generators/workspace-rules-project/files/tsconfig.json__tmpl__",
- "hash": "709828769d96ee1d7a8d7731de1295a9b88c115c"
- },
- {
- "file": "packages/linter/src/generators/workspace-rules-project/files/tsconfig.lint.json__tmpl__",
- "hash": "ee0f68db8873be761b4ded20baf3a38286b8bc4e"
- },
- {
- "file": "packages/linter/src/generators/workspace-rules-project/schema.json",
- "hash": "0d7942e25be68419bfb9b8cac26186fe7f91b849"
- },
- {
- "file": "packages/linter/src/generators/workspace-rules-project/workspace-rules-project.spec.ts",
- "hash": "0039b358a13f35ec100b72237b9d2bb83b0c138e",
- "deps": ["devkit"]
- },
- {
- "file": "packages/linter/src/generators/workspace-rules-project/workspace-rules-project.ts",
- "hash": "2fcf5c3341398cb6ab7e57f7236a85499619aba6",
- "deps": ["devkit", "jest", "workspace", "nx"]
- },
- {
- "file": "packages/linter/src/migrations/update-10-3-0/add-json-ext-to-eslintrc.spec.ts",
- "hash": "3676ac29c355159e97862eec8c70d6f0c039c856",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/linter/src/migrations/update-10-3-0/add-json-ext-to-eslintrc.ts",
- "hash": "bb435636c290ce1fbd7b0b223e8858cfe5d5d60a",
- "deps": [
- "npm:@angular-devkit/core",
- "npm:@angular-devkit/schematics",
- "workspace"
- ]
- },
- {
- "file": "packages/linter/src/migrations/update-10-3-0/add-root-eslintrc-json-to-workspace-implicit-deps.spec.ts",
- "hash": "f59bd832a410cae9a7bf618e4ccd37e77403d997",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/linter/src/migrations/update-10-3-0/add-root-eslintrc-json-to-workspace-implicit-deps.ts",
- "hash": "40dcbe5a39df57525760c6f9effb4ce70efb8850",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/linter/src/migrations/update-10-3-0/update-10-3-0.spec.ts",
- "hash": "c2f00c21769258e91d4d85423fe5fe81b92f83bc",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/linter/src/migrations/update-10-3-0/update-10-3-0.ts",
- "hash": "566fe7c6a69bf9746bc7424a3117be50b02428d7",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/linter/src/migrations/update-10-3-0/update-eslint-builder-and-config.spec.ts",
- "hash": "5f8fad348536eacaaf38d97bd47b1168d41459f3",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/linter/src/migrations/update-10-3-0/update-eslint-builder-and-config.ts",
- "hash": "621635a7dc52cdaf039ffe39238a66573334ad2d",
- "deps": [
- "npm:@angular-devkit/schematics",
- "workspace",
- "npm:@angular-devkit/core"
- ]
- },
- {
- "file": "packages/linter/src/migrations/update-10-3-1/revert-node-modules-files-in-eslint-builder-options.spec.ts",
- "hash": "15526b6495041b96887e06fe7186ceea42929bcc",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/linter/src/migrations/update-10-3-1/revert-node-modules-files-in-eslint-builder-options.ts",
- "hash": "b3a1835c7f0f834a35af8045f34ef80437c30bf4",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/linter/src/migrations/update-10-4-0/update-eslint-configs-to-use-nx-presets.spec.ts",
- "hash": "176669ada2d81e81c68fcf850d39afe8a33f5104",
- "deps": [
- "npm:@angular-devkit/schematics",
- "workspace",
- "npm:eslint"
- ]
- },
- {
- "file": "packages/linter/src/migrations/update-10-4-0/update-eslint-configs-to-use-nx-presets.ts",
- "hash": "79cb513f20b8789bf1b1739e52aecbeff774876d",
- "deps": [
- "npm:@angular-devkit/core",
- "npm:@angular-devkit/schematics",
- "workspace",
- "npm:eslint"
- ]
- },
- {
- "file": "packages/linter/src/migrations/update-10-4-0/update-root-eslint-config-to-use-overrides.spec.ts",
- "hash": "5bed6601b6976b88237bc14258295ab342e84936",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/linter/src/migrations/update-10-4-0/update-root-eslint-config-to-use-overrides.ts",
- "hash": "9cf8a4ccaa6226a6f4f18a32170916b6534e535e",
- "deps": [
- "npm:@angular-devkit/schematics",
- "workspace",
- "npm:eslint"
- ]
- },
- {
- "file": "packages/linter/src/migrations/update-11-5-0/always-use-project-level-tsconfigs-with-eslint.spec.ts",
- "hash": "a79267bbf2e9451b5a99bcd743d45f8542a4b4bf",
- "deps": ["devkit"]
- },
- {
- "file": "packages/linter/src/migrations/update-11-5-0/always-use-project-level-tsconfigs-with-eslint.ts",
- "hash": "12afd46237d229eae556436d1b94e3067896a308",
- "deps": ["devkit", "npm:eslint"]
- },
- {
- "file": "packages/linter/src/migrations/update-12-4-0/remove-eslint-project-config-if-no-type-checking-rules.spec.ts",
- "hash": "7f3d1b98cad0429d09558dc1ce48ea27e7731e24",
- "deps": ["devkit", "npm:eslint"]
- },
- {
- "file": "packages/linter/src/migrations/update-12-4-0/remove-eslint-project-config-if-no-type-checking-rules.ts",
- "hash": "6f8b2ed9f4c491a09e3430ea8807721d805e8b37",
- "deps": ["devkit"]
- },
- {
- "file": "packages/linter/src/migrations/update-12-9-0/add-outputs.spec.ts",
- "hash": "a786c35785a6a732e65d52b1f1878aef2bae3599",
- "deps": ["devkit"]
- },
- {
- "file": "packages/linter/src/migrations/update-12-9-0/add-outputs.ts",
- "hash": "7ec85927a0283bb30fc5a2f82985369d3770d97d",
- "deps": ["devkit"]
- },
- {
- "file": "packages/linter/src/migrations/update-13-3-0/eslint-8-updates.spec.ts",
- "hash": "464ac2896269275d9e37dcd0eef027ddedfe2ff5",
- "deps": ["devkit"]
- },
- {
- "file": "packages/linter/src/migrations/update-13-3-0/eslint-8-updates.ts",
- "hash": "b30ad503e13b468a334eb708e9cca201c5fd4cbb",
- "deps": ["devkit", "jest", "npm:@phenomnomnominal/tsquery"]
- },
- {
- "file": "packages/linter/src/migrations/update-14-1-9/add-swc-deps-if-needed.ts",
- "hash": "eaffc27d4b689037069b4787182dcc83d9105d5c",
- "deps": ["devkit", "nx"]
- },
- {
- "file": "packages/linter/src/migrations/update-14-4-4/__snapshots__/experimental-to-utils-deps.spec.ts.snap",
- "hash": "2a1e9a5e4b40daae6d4456ffbd981c4ff5ff4e94"
- },
- {
- "file": "packages/linter/src/migrations/update-14-4-4/experimental-to-utils-deps.spec.ts",
- "hash": "a17bfdeda5bfb067be7a94ed87b6b8784ef12bfb",
- "deps": ["devkit"]
- },
- {
- "file": "packages/linter/src/migrations/update-14-4-4/experimental-to-utils-deps.ts",
- "hash": "a2fb28fdeba9af85e4815d65ff2aab6ff351d6c4",
- "deps": ["devkit"]
- },
- {
- "file": "packages/linter/src/migrations/update-14-4-4/experimental-to-utils-rules.spec.ts",
- "hash": "a3514ef676ee85ad42db867a9fa9a496fc50a381",
- "deps": ["devkit"]
- },
- {
- "file": "packages/linter/src/migrations/update-14-4-4/experimental-to-utils-rules.ts",
- "hash": "82baacfccd8e8119554303e254e217a4c1ea3f96",
- "deps": ["devkit", "npm:@phenomnomnominal/tsquery"]
- },
- {
- "file": "packages/linter/src/utils/convert-tslint-to-eslint/__snapshots__/convert-to-eslint-config.spec.ts.snap",
- "hash": "d8890b1680147350013ff5f37288e0d1f12aa048"
- },
- {
- "file": "packages/linter/src/utils/convert-tslint-to-eslint/__snapshots__/project-converter.spec.ts.snap",
- "hash": "2977c64472b0117a1dfe68578a364c1e9dd62c25"
- },
- {
- "file": "packages/linter/src/utils/convert-tslint-to-eslint/convert-nx-enforce-module-boundaries-rule.spec.ts",
- "hash": "044ca66897f1760b5880dbd919f6cb03eea3997a"
- },
- {
- "file": "packages/linter/src/utils/convert-tslint-to-eslint/convert-nx-enforce-module-boundaries-rule.ts",
- "hash": "fcc7325c70e5f771bbaf57fd941323cdb500191e",
- "deps": ["npm:tslint-to-eslint-config"]
- },
- {
- "file": "packages/linter/src/utils/convert-tslint-to-eslint/convert-to-eslint-config.spec.ts",
- "hash": "673ab6bce04f69e7a83c3e61f396f6737f29a04a",
- "deps": ["devkit"]
- },
- {
- "file": "packages/linter/src/utils/convert-tslint-to-eslint/convert-to-eslint-config.ts",
- "hash": "3c72b9cba9d5239bd29d85b3558db71c940fe1fb",
- "deps": [
- "devkit",
- "npm:eslint",
- "npm:tmp",
- "npm:tslint-to-eslint-config"
- ]
- },
- {
- "file": "packages/linter/src/utils/convert-tslint-to-eslint/example-tslint-configs.ts",
- "hash": "2c4123c381aaa6c18eebb53871e346600247d198"
- },
- {
- "file": "packages/linter/src/utils/convert-tslint-to-eslint/index.ts",
- "hash": "cc95094649634a3a38643aef1808f95c7b1ec24f"
- },
- {
- "file": "packages/linter/src/utils/convert-tslint-to-eslint/project-converter.spec.ts",
- "hash": "b38af0e8a1a5c83d1bd4938d132b4d1159796471",
- "deps": ["devkit"]
- },
- {
- "file": "packages/linter/src/utils/convert-tslint-to-eslint/project-converter.ts",
- "hash": "3a1666ee50e2889c128e9ac14860bb3f4664837e",
- "deps": ["devkit", "npm:eslint"]
- },
- {
- "file": "packages/linter/src/utils/convert-tslint-to-eslint/utils.spec.ts",
- "hash": "6b1b4492c31d634d109988e63140add48db58ba0",
- "deps": ["npm:eslint"]
- },
- {
- "file": "packages/linter/src/utils/convert-tslint-to-eslint/utils.ts",
- "hash": "cbb058ac8381c33b77e769a258d6bdbdb7142e26",
- "deps": ["devkit", "npm:eslint", "npm:tslint-to-eslint-config"]
- },
- {
- "file": "packages/linter/src/utils/rules-requiring-type-checking.ts",
- "hash": "a5bb99e79b0d1b5b736419bcc42157197179cd66",
- "deps": ["npm:eslint", "npm:@typescript-eslint/eslint-plugin"]
- },
- {
- "file": "packages/linter/src/utils/testing.ts",
- "hash": "ffc20714c77b7a312dbaec129447833b3cb7c5aa",
- "deps": ["npm:@angular-devkit/schematics"]
- },
- {
- "file": "packages/linter/src/utils/versions.ts",
- "hash": "b6a56976f06012c3890d19921cae5e0f223d3785"
- },
- {
- "file": "packages/linter/src/utils/workspace-lint-rules.ts",
- "hash": "4d8dab15c776c6789385ecf072b9902a105033f1",
- "deps": ["devkit"]
- },
- {
- "file": "packages/linter/tsconfig.json",
- "hash": "58bd2c97a66f5e5ea5d05c8a5709ee79bad02094"
- },
- {
- "file": "packages/linter/tsconfig.lib.json",
- "hash": "1d2ddef3c1be3aa86cb55b66b9c912d3c6bf1a07"
- },
- {
- "file": "packages/linter/tsconfig.spec.json",
- "hash": "869c90c526a0fe7b4b32c39d3989c66259545d9a"
- }
- ]
- }
- },
- {
- "name": "detox",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/detox",
- "files": [
- {
- "file": "packages/detox/.eslintrc.json",
- "hash": "3c1f9d1789c85a4204a86b7362ba5d84d489d784"
- },
- {
- "file": "packages/detox/executors.json",
- "hash": "634159315029d9da1598eb748801c44759f291de"
- },
- {
- "file": "packages/detox/generators.json",
- "hash": "62f576cec4ea2cd30e80428efbbf4cb018a44e57"
- },
- {
- "file": "packages/detox/index.ts",
- "hash": "7edbccfae606ea3c6dead12856f7db996a8a8baf"
- },
- {
- "file": "packages/detox/jest.config.ts",
- "hash": "6d9a8c06b026fa052d01a43e1bbb0170ca93c7ee"
- },
- {
- "file": "packages/detox/migrations.json",
- "hash": "261b384be828470d9bca0cb0bb08c42f21055adb"
- },
- {
- "file": "packages/detox/migrations.spec.ts",
- "hash": "99cac5f7ed9f06b08ac2790102296ac3dc2cac8d"
- },
- {
- "file": "packages/detox/package.json",
- "hash": "62cf09f871fd7a406cf622b3a5c1b0c74f8c774c",
- "deps": [
- "devkit",
- "jest",
- "linter",
- "react",
- "workspace",
- "npm:chalk"
- ]
- },
- {
- "file": "packages/detox/project.json",
- "hash": "586d77efadc4086a2572dee556de6506661bac10"
- },
- {
- "file": "packages/detox/README.md",
- "hash": "f16d774314f08b726f21e7a10cce352278df70fa"
- },
- {
- "file": "packages/detox/src/executors/build/build.impl.ts",
- "hash": "b3c4e985f3ac0caece21f3e3ed2cc0efd65fcc1a",
- "deps": ["devkit"]
- },
- {
- "file": "packages/detox/src/executors/build/compat.ts",
- "hash": "87700b88bc7aacbc50024045753d30294c854fce",
- "deps": ["devkit"]
- },
- {
- "file": "packages/detox/src/executors/build/schema.d.ts",
- "hash": "7a8231e7f50a4a083fa59d217eb3123a41f80c98"
- },
- {
- "file": "packages/detox/src/executors/build/schema.json",
- "hash": "fd354196abf8c06326bf779caf1f1b7a7a8b62c4"
- },
- {
- "file": "packages/detox/src/executors/test/compat.ts",
- "hash": "1409e42e14935ebba7e25430e2830883ef56bfe0",
- "deps": ["devkit"]
- },
- {
- "file": "packages/detox/src/executors/test/schema.d.ts",
- "hash": "5c72f0eb1e5bb18c94cc3b2fab42a144c2cdd42d"
- },
- {
- "file": "packages/detox/src/executors/test/schema.json",
- "hash": "82e8a97a6c4eee4bffb69ae159b4d3cb4a20db22"
- },
- {
- "file": "packages/detox/src/executors/test/test.impl.ts",
- "hash": "cfb404709e39465c7af1948045ef5a7fc1e53367",
- "deps": ["devkit"]
- },
- {
- "file": "packages/detox/src/generators/application/application.spec.ts",
- "hash": "381ba67a1154d27d1743869d1651ae42e66c536f",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/detox/src/generators/application/application.ts",
- "hash": "cc1c60a31833214b273bdb8f67a507c38f7890d8",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/detox/src/generators/application/files/app/.babelrc.template",
- "hash": "61641ec8ac3659e204441c80bb06defe323e3110"
- },
- {
- "file": "packages/detox/src/generators/application/files/app/.detoxrc.json.template",
- "hash": "2a6204fd7df3d28ca35f3bcec73608f1dcbf86b6"
- },
- {
- "file": "packages/detox/src/generators/application/files/app/environment.js.template",
- "hash": "7f4fc942fc497c623f3269fbe6443b402f1fb26e"
- },
- {
- "file": "packages/detox/src/generators/application/files/app/jest.config.json",
- "hash": "1d9956fad702f123c4d4d1431601213aa4441b73"
- },
- {
- "file": "packages/detox/src/generators/application/files/app/src/app.spec.ts.template",
- "hash": "7c0d02b65a506eb30e93427e94f83b00535384a1"
- },
- {
- "file": "packages/detox/src/generators/application/files/app/test-setup.ts.template",
- "hash": "a4e12aa418f881c35207815bfa10e6f82e61b564"
- },
- {
- "file": "packages/detox/src/generators/application/files/app/tsconfig.e2e.json",
- "hash": "8d2d1651b7bb854ead0f70c2d76f337efb386573"
- },
- {
- "file": "packages/detox/src/generators/application/files/app/tsconfig.json",
- "hash": "eea95f339bebcc6e3354606972a6b6741d1a83d8"
- },
- {
- "file": "packages/detox/src/generators/application/lib/add-git-ignore-entry.ts",
- "hash": "57cbe9b42a5fa12b651f0877a04a0524e82b42c2",
- "deps": ["devkit"]
- },
- {
- "file": "packages/detox/src/generators/application/lib/add-linting.spec.ts",
- "hash": "c914dda505efee1536c817e8d3ecc080da3cc1b4",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/detox/src/generators/application/lib/add-linting.ts",
- "hash": "fe45376b9b3302bb5bab3add38f0f97c5b878787",
- "deps": ["workspace", "linter", "devkit", "react"]
- },
- {
- "file": "packages/detox/src/generators/application/lib/add-project.spec.ts",
- "hash": "43b17f0b234f89e0c0b3745dba1a475e29fcfe3e",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/detox/src/generators/application/lib/add-project.ts",
- "hash": "3289bd01e0f1658d3ed980d61d1f85da41169d73",
- "deps": ["devkit"]
- },
- {
- "file": "packages/detox/src/generators/application/lib/create-files.spec.ts",
- "hash": "928bf825766ff7652e1ced5605fe6c68e274f32d",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/detox/src/generators/application/lib/create-files.ts",
- "hash": "32dd57e45673513146ead2d5972f7972f532d32d",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/detox/src/generators/application/lib/get-targets.ts",
- "hash": "156df144dc5c279ad471f10d0d2de606bed49eed"
- },
- {
- "file": "packages/detox/src/generators/application/lib/normalize-options.spec.ts",
- "hash": "588866b19eaad15fdc367e67b2cdc49f2b6004fd",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/detox/src/generators/application/lib/normalize-options.ts",
- "hash": "c07f9c556983f1b5b2a4378c3b806fc9958f4fe2",
- "deps": ["devkit"]
- },
- {
- "file": "packages/detox/src/generators/application/schema.d.ts",
- "hash": "d333ae980c9394ccd7e9f996bd5832b85a43ddac",
- "deps": ["linter"]
- },
- {
- "file": "packages/detox/src/generators/application/schema.json",
- "hash": "e9f5129ed7ac4c3d2b0037b83821740c354ad46f"
- },
- {
- "file": "packages/detox/src/generators/init/init.spec.ts",
- "hash": "16148a21396f0e4f2aa45f66ad53d6dec5065de9",
- "deps": ["devkit"]
- },
- {
- "file": "packages/detox/src/generators/init/init.ts",
- "hash": "f6b8061da213aa9e3bb0688bd75079f53d2f7c30",
- "deps": ["devkit", "jest", "workspace"]
- },
- {
- "file": "packages/detox/src/generators/init/schema.d.ts",
- "hash": "e5fe924e01d2f72d7cdb2ba4cb4dd78bab024311"
- },
- {
- "file": "packages/detox/src/generators/init/schema.json",
- "hash": "f605b21bf5c6a1d27817572fcd51c65346fbbfe7"
- },
- {
- "file": "packages/detox/src/migrations/update-13-10-3/add-verbose-jest-config-13-10-3.spec.ts",
- "hash": "f02764b70c7273c234d97089310b4ff0334e82f5",
- "deps": ["devkit"]
- },
- {
- "file": "packages/detox/src/migrations/update-13-10-3/add-verbose-jest-config-13-10-3.ts",
- "hash": "2f27c3314fa5190fea89f70d3c2dca33fa936406",
- "deps": ["devkit"]
- },
- {
- "file": "packages/detox/src/migrations/update-13-5-0/add-build-target-test-13-5-0.spec.ts",
- "hash": "eff18de8a5781a9bdcaf0d2c51c3fc674b5b21bf",
- "deps": ["devkit"]
- },
- {
- "file": "packages/detox/src/migrations/update-13-5-0/add-build-target-test-13-5-0.ts",
- "hash": "fbccd57359b9346237033e29143b1267f5bdccc9",
- "deps": ["devkit"]
- },
- {
- "file": "packages/detox/src/migrations/update-13-8-2/remove-types-detox-13-8-2.spec.ts",
- "hash": "68c26c0419d06806b79b79b731e229513195feee",
- "deps": ["devkit"]
- },
- {
- "file": "packages/detox/src/migrations/update-13-8-2/remove-types-detox-13-8-2.ts",
- "hash": "d7888ae67c80fd3ff1fd577bed91b86916049b26",
- "deps": ["devkit"]
- },
- {
- "file": "packages/detox/src/utils/versions.ts",
- "hash": "1777f5d2dfdfc4f40b3a5a9024cd39820a4e2ca4"
- },
- {
- "file": "packages/detox/tsconfig.json",
- "hash": "62ebbd946474cea997e774d20fffc4d585c184f3"
- },
- {
- "file": "packages/detox/tsconfig.lib.json",
- "hash": "5c589aef9e7c76c6bd9a4eea2464ea8a75508919"
- },
- {
- "file": "packages/detox/tsconfig.spec.json",
- "hash": "46f9467f3bd81cb7ec6abc5dcec5c1d35c42f28a"
- }
- ]
- }
- },
- {
- "name": "nx-dev-ui-home",
- "type": "lib",
- "data": {
- "tags": ["scope:nx-dev", "type:ui"],
- "root": "nx-dev/ui-home",
- "files": [
- {
- "file": "nx-dev/ui-home/.babelrc",
- "hash": "ccae900be42788285eb6e1b3a2af4b81f56f14fe"
- },
- {
- "file": "nx-dev/ui-home/.eslintrc.json",
- "hash": "734ddaceea447738208c9519158ad6b3062f3929"
- },
- {
- "file": "nx-dev/ui-home/jest.config.ts",
- "hash": "22b4d072cabac57e3b003ad54d09526d8e7885cb"
- },
- {
- "file": "nx-dev/ui-home/project.json",
- "hash": "7be85c94440688d3d0571f1e8312c6b333201d0b"
- },
- {
- "file": "nx-dev/ui-home/README.md",
- "hash": "70b3f9fd459b143e63af2f23d24bc069a2252175"
- },
- {
- "file": "nx-dev/ui-home/src/index.ts",
- "hash": "4d3fb47aaa0a287f468a642c68119543217b4916"
- },
- {
- "file": "nx-dev/ui-home/src/lib/affected-command.spec.tsx",
- "hash": "4ad227a54e324c973743da9f42c2a51911b447c5",
- "deps": [
- "npm:@testing-library/react",
- "npm:react-intersection-observer"
- ]
- },
- {
- "file": "nx-dev/ui-home/src/lib/affected-command.tsx",
- "hash": "bbc3c0cffafa7e52a8919d1bff159fd7f81c1585",
- "deps": [
- "npm:framer-motion",
- "npm:next",
- "npm:react",
- "npm:react-intersection-observer"
- ]
- },
- {
- "file": "nx-dev/ui-home/src/lib/cloud-support.tsx",
- "hash": "464c4161e4c7e4f94b7234561824ec6cc986006e",
- "deps": [
- "npm:framer-motion",
- "npm:next",
- "npm:react",
- "npm:react-intersection-observer"
- ]
- },
- {
- "file": "nx-dev/ui-home/src/lib/dependency-graph.spec.tsx",
- "hash": "a60b2f6191ab1ef16a274cb22b6ea1c2110ca131",
- "deps": [
- "npm:@testing-library/react",
- "npm:react-intersection-observer"
- ]
- },
- {
- "file": "nx-dev/ui-home/src/lib/dependency-graph.tsx",
- "hash": "656b76b66e7d713d8826ce00ce6364e0fe65dc16",
- "deps": [
- "npm:framer-motion",
- "npm:next",
- "npm:react",
- "npm:react-intersection-observer"
- ]
- },
- {
- "file": "nx-dev/ui-home/src/lib/ecosystem-features.spec.tsx",
- "hash": "6c6a0efec1363f416eb8ecb28392605a3d4aece1",
- "deps": [
- "npm:@testing-library/react",
- "npm:react-intersection-observer"
- ]
- },
- {
- "file": "nx-dev/ui-home/src/lib/ecosystem-features.tsx",
- "hash": "a49efb43efd023c1d45800aed12a7695d2d60490",
- "deps": [
- "npm:classnames",
- "npm:framer-motion",
- "npm:next",
- "npm:react",
- "npm:react-intersection-observer"
- ]
- },
- {
- "file": "nx-dev/ui-home/src/lib/egghead-courses.spec.tsx",
- "hash": "f819fe8b526bf737da243b1825816cbff41ab72b",
- "deps": [
- "npm:@testing-library/react",
- "npm:react-intersection-observer"
- ]
- },
- {
- "file": "nx-dev/ui-home/src/lib/egghead-courses.tsx",
- "hash": "2080ff053ffbd08e68b2fd4aa21a1d0501d4ee46",
- "deps": [
- "npm:framer-motion",
- "npm:next",
- "npm:react",
- "npm:react-intersection-observer"
- ]
- },
- {
- "file": "nx-dev/ui-home/src/lib/event-banner.tsx",
- "hash": "701a68b7ac64d585829048529ffe969d4ca0957e"
- },
- {
- "file": "nx-dev/ui-home/src/lib/experience-features.spec.tsx",
- "hash": "6c6a0efec1363f416eb8ecb28392605a3d4aece1",
- "deps": [
- "npm:@testing-library/react",
- "npm:react-intersection-observer"
- ]
- },
- {
- "file": "nx-dev/ui-home/src/lib/experience-features.tsx",
- "hash": "a13f13a5434efc8e2e06f1caeedb89c2119b2a7a",
- "deps": [
- "npm:classnames",
- "npm:framer-motion",
- "npm:next",
- "npm:react",
- "npm:react-intersection-observer"
- ]
- },
- {
- "file": "nx-dev/ui-home/src/lib/getting-started.spec.tsx",
- "hash": "82b299ea80512aafd44d127f9a828abf5aa4ff97",
- "deps": [
- "npm:@testing-library/react",
- "npm:react-intersection-observer"
- ]
- },
- {
- "file": "nx-dev/ui-home/src/lib/getting-started.tsx",
- "hash": "45c7432434f99e13205d8d865619329ab4095d7b",
- "deps": [
- "nx-dev-feature-analytics",
- "nx-dev-ui-commands",
- "npm:classnames",
- "npm:framer-motion",
- "npm:next",
- "npm:react"
- ]
- },
- {
- "file": "nx-dev/ui-home/src/lib/monorepo-features.spec.tsx",
- "hash": "f0f25aee27def203b94abb3017b8bfcca8b86578",
- "deps": [
- "npm:@testing-library/react",
- "npm:react-intersection-observer"
- ]
- },
- {
- "file": "nx-dev/ui-home/src/lib/monorepo-features.tsx",
- "hash": "b93e2a401ad65cf1681c125495dc015e344c11ae",
- "deps": [
- "npm:classnames",
- "npm:framer-motion",
- "npm:next",
- "npm:react",
- "npm:react-intersection-observer"
- ]
- },
- {
- "file": "nx-dev/ui-home/src/lib/nx-playbook.tsx",
- "hash": "351ac4024f728f7ae81fb487746ebec28c8889d8",
- "deps": [
- "npm:framer-motion",
- "npm:next",
- "npm:react",
- "npm:react-intersection-observer"
- ]
- },
- {
- "file": "nx-dev/ui-home/src/lib/open-platform.spec.tsx",
- "hash": "ebf8d0e7f9962c023282f9c2021429a76c452359",
- "deps": [
- "npm:@testing-library/react",
- "npm:react-intersection-observer"
- ]
- },
- {
- "file": "nx-dev/ui-home/src/lib/open-platform.tsx",
- "hash": "6d90bd8e523838d893190b97415e4c60d0ed2e6d",
- "deps": [
- "npm:framer-motion",
- "npm:react",
- "npm:react-intersection-observer"
- ]
- },
- {
- "file": "nx-dev/ui-home/src/lib/open-source-projects.spec.tsx",
- "hash": "d4dd432cdd44ffd600af89cc72b225dbba04b1b8",
- "deps": [
- "npm:@testing-library/react",
- "npm:react-intersection-observer"
- ]
- },
- {
- "file": "nx-dev/ui-home/src/lib/open-source-projects.tsx",
- "hash": "dd7d21263bd83295c6a9513e67ff092c2a975a00",
- "deps": [
- "npm:classnames",
- "npm:framer-motion",
- "npm:next",
- "npm:react",
- "npm:react-intersection-observer"
- ]
- },
- {
- "file": "nx-dev/ui-home/src/lib/performance.spec.tsx",
- "hash": "4ad227a54e324c973743da9f42c2a51911b447c5",
- "deps": [
- "npm:@testing-library/react",
- "npm:react-intersection-observer"
- ]
- },
- {
- "file": "nx-dev/ui-home/src/lib/performance.tsx",
- "hash": "eba34f314fb9590c3c6d67b48bfe593ec4615a0d",
- "deps": [
- "npm:framer-motion",
- "npm:react",
- "npm:react-intersection-observer"
- ]
- },
- {
- "file": "nx-dev/ui-home/src/lib/testimonials.tsx",
- "hash": "c075594c99ca40b8b4fa8b6ec33b2a1977febd90",
- "deps": ["nx-dev-ui-common"]
- },
- {
- "file": "nx-dev/ui-home/src/lib/vscode-plugin.spec.tsx",
- "hash": "4a284f1fbf383d5d8a811e6d4a9dcf3becf83e21",
- "deps": [
- "npm:@testing-library/react",
- "npm:react-intersection-observer"
- ]
- },
- {
- "file": "nx-dev/ui-home/src/lib/vscode-plugin.tsx",
- "hash": "a14a7a851e11600e7670614b52044ac73fd5ed3f",
- "deps": [
- "npm:framer-motion",
- "npm:next",
- "npm:react",
- "npm:react-intersection-observer"
- ]
- },
- {
- "file": "nx-dev/ui-home/src/lib/youtube-channel.tsx",
- "hash": "f97ec40b4a337e380e89dfde99b8c647d6b68186",
- "deps": [
- "npm:framer-motion",
- "npm:next",
- "npm:react",
- "npm:react-intersection-observer"
- ]
- },
- {
- "file": "nx-dev/ui-home/tsconfig.json",
- "hash": "3230750a884f72a8d552144dcb423f1ed5899fff"
- },
- {
- "file": "nx-dev/ui-home/tsconfig.lib.json",
- "hash": "8934b79a543dab59b27a00f89fa53ae409f29776"
- },
- {
- "file": "nx-dev/ui-home/tsconfig.spec.json",
- "hash": "46f9467f3bd81cb7ec6abc5dcec5c1d35c42f28a"
- }
- ]
- }
- },
- {
- "name": "react",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/react",
- "files": [
- {
- "file": "packages/react/.eslintrc.json",
- "hash": "4a142b79a6e0fb6e747a610ee63cdd78a9bf416b"
- },
- {
- "file": "packages/react/ast-utils.ts",
- "hash": "1b96d3f6e2bf28e4377cdcd9ddfccc0a766c5bee"
- },
- {
- "file": "packages/react/babel.ts",
- "hash": "60752a7208cd065dc67d81e80eb7005bccc22d77"
- },
- {
- "file": "packages/react/executors.json",
- "hash": "54466bb777bc3e6e4069f790f23f3fac85b3b5c3"
- },
- {
- "file": "packages/react/generators.json",
- "hash": "54627227f8e09155a6585cbe29767ce5bed0e1af"
- },
- {
- "file": "packages/react/index.ts",
- "hash": "9a72d005edd8e74853943a25bb2bc3b54b93bcc2"
- },
- {
- "file": "packages/react/jest.config.ts",
- "hash": "108568d5791a6c6642929b9c9ec2c78f3d56fe30"
- },
- {
- "file": "packages/react/migrations.json",
- "hash": "775eb91a2bfbc0ad3d8d3539ac97021deb137077"
- },
- {
- "file": "packages/react/migrations.spec.ts",
- "hash": "eec632c394cc9c29eaa6e550ae9d8f6a10c20c65"
- },
- {
- "file": "packages/react/module-federation.ts",
- "hash": "d406ee84e87d4454768f96bc684933bedb3258de"
- },
- {
- "file": "packages/react/package.json",
- "hash": "fc816a40b924a9438148c30fa85c5868ddf9d836",
- "deps": [
- "cypress",
- "devkit",
- "jest",
- "js",
- "linter",
- "storybook",
- "web",
- "workspace",
- "npm:@pmmmwh/react-refresh-webpack-plugin",
- "npm:@svgr/webpack",
- "npm:chalk",
- "npm:eslint-plugin-import",
- "npm:eslint-plugin-jsx-a11y",
- "npm:eslint-plugin-react",
- "npm:eslint-plugin-react-hooks",
- "npm:minimatch",
- "npm:react-refresh",
- "npm:semver",
- "npm:url-loader",
- "npm:webpack",
- "npm:webpack-merge"
- ]
- },
- {
- "file": "packages/react/plugins/bundle-rollup.ts",
- "hash": "9f9eaa63a026156e6ff58ec500108cfe5f1e6ab7",
- "deps": ["npm:rollup"]
- },
- {
- "file": "packages/react/plugins/component-testing/index.ts",
- "hash": "d1a75a9134fa77f40d427684e119b2d730398510",
- "deps": ["cypress", "devkit", "web", "workspace", "nx"]
- },
- {
- "file": "packages/react/plugins/component-testing/webpack-fallback.ts",
- "hash": "adba6fd7a13867eae1cdcc3d6d4ff96c0d2b08ec",
- "deps": [
- "web",
- "npm:tsconfig-paths-webpack-plugin",
- "npm:webpack",
- "npm:sass"
- ]
- },
- {
- "file": "packages/react/plugins/jest.ts",
- "hash": "c20eb2a7a5d442db0fe0d3fc32373a65d01667f7",
- "deps": ["devkit", "npm:react"]
- },
- {
- "file": "packages/react/plugins/storybook/index.spec.ts",
- "hash": "e008ef4c1412a75e00945fad3847908434e8d382"
- },
- {
- "file": "packages/react/plugins/storybook/index.ts",
- "hash": "51820a9c43e4dc70b19053b0a4be80240b0a9d54",
- "deps": [
- "devkit",
- "web",
- "workspace",
- "npm:semver",
- "npm:webpack",
- "npm:webpack-merge"
- ]
- },
- {
- "file": "packages/react/plugins/storybook/merge-plugins.ts",
- "hash": "a7c20e3d92117b2cea919e96d1a920dc38f415ea",
- "deps": ["npm:webpack"]
- },
- {
- "file": "packages/react/plugins/webpack.ts",
- "hash": "ea7157ae76eff1dbe2f5dd93c3da31a9937059f4",
- "deps": ["npm:webpack", "npm:@pmmmwh/react-refresh-webpack-plugin"]
- },
- {
- "file": "packages/react/project.json",
- "hash": "2e3454ab3654bc0ed52faee038a83cdfd8b63ecb"
- },
- {
- "file": "packages/react/README.md",
- "hash": "d74fdaa930e96f2fdb81f965a98208b6c07eafa3"
- },
- {
- "file": "packages/react/src/executors/module-federation-dev-server/compat.ts",
- "hash": "9598da3f24e994121a9c67f7185695e45da95492",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/executors/module-federation-dev-server/module-federation-dev-server.impl.ts",
- "hash": "68766a62d671e1586b1b1f2f77700265da01bf5e",
- "deps": ["devkit", "web"]
- },
- {
- "file": "packages/react/src/executors/module-federation-dev-server/schema.json",
- "hash": "453b48bbd327e532096e5a8eae7097f4c7371e2d"
- },
- {
- "file": "packages/react/src/generators/application/application.spec.ts",
- "hash": "c71e312e30e113176cbdb6d7cb377ef12638e9ec",
- "deps": ["cypress", "devkit", "linter"]
- },
- {
- "file": "packages/react/src/generators/application/application.ts",
- "hash": "33aa01a8ad7718287b70b4256c06aa600e272f51",
- "deps": ["devkit", "workspace", "linter", "js", "web"]
- },
- {
- "file": "packages/react/src/generators/application/files/common/.babelrc__tmpl__",
- "hash": "626dc3ed79947d6a949de0c17c0a26c815c62c2e"
- },
- {
- "file": "packages/react/src/generators/application/files/common/.browserslistrc__tmpl__",
- "hash": "f1d12df4faa25ab7f0f03196105e957395f609af"
- },
- {
- "file": "packages/react/src/generators/application/files/common/src/app/__fileName__.spec.tsx__tmpl__",
- "hash": "86f0708d4445bfe5bd2b566d9e59cc2fc13dd4d6"
- },
- {
- "file": "packages/react/src/generators/application/files/common/src/app/nx-welcome.tsx",
- "hash": "5e1ba69e57583eab3835f6e375837d216ed8313d"
- },
- {
- "file": "packages/react/src/generators/application/files/common/src/assets/.gitkeep",
- "hash": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"
- },
- {
- "file": "packages/react/src/generators/application/files/common/src/environments/environment.prod.ts__tmpl__",
- "hash": "3612073bc31cd4c1f5d6cbb00318521e9a61bd8a"
- },
- {
- "file": "packages/react/src/generators/application/files/common/src/environments/environment.ts__tmpl__",
- "hash": "d9370e924b51bc67ecddee7fc3b6693681a324b6"
- },
- {
- "file": "packages/react/src/generators/application/files/common/src/favicon.ico",
- "hash": "317ebcb2336e0833a22dddf0ab287849f26fda57"
- },
- {
- "file": "packages/react/src/generators/application/files/common/src/index.html",
- "hash": "85edca9f5dbfe168c52a079b2d48c2f49283ef97"
- },
- {
- "file": "packages/react/src/generators/application/files/common/src/main.tsx__tmpl__",
- "hash": "d5a60a7b0dd144bd0ce4c8f64b1da1ecae8a3f34"
- },
- {
- "file": "packages/react/src/generators/application/files/common/src/polyfills.ts__tmpl__",
- "hash": "2adf3d05b6fcf479dd61c74f6bda95d9edb6ac6b"
- },
- {
- "file": "packages/react/src/generators/application/files/common/tsconfig.app.json__tmpl__",
- "hash": "c8ea6c6486abf653812cce72b7bf7df2795777c8"
- },
- {
- "file": "packages/react/src/generators/application/files/common/tsconfig.json__tmpl__",
- "hash": "fc23421ea4caf0ea87710446b1b9b917c84fed50"
- },
- {
- "file": "packages/react/src/generators/application/files/css-module/src/app/__fileName__.module.__style__",
- "hash": "7b88fbabf87b258bc8a0cc5b78800551134ca195"
- },
- {
- "file": "packages/react/src/generators/application/files/css-module/src/app/__fileName__.tsx__tmpl__",
- "hash": "b364e5bd14d774e45d1de452875bcb7f1543409e"
- },
- {
- "file": "packages/react/src/generators/application/files/css-module/src/styles.__style__",
- "hash": "90d4ee0072ce3fc41812f8af910219f9eea3c3de"
- },
- {
- "file": "packages/react/src/generators/application/files/global-css/src/app/__fileName__.__style__",
- "hash": "7b88fbabf87b258bc8a0cc5b78800551134ca195"
- },
- {
- "file": "packages/react/src/generators/application/files/global-css/src/app/__fileName__.tsx__tmpl__",
- "hash": "7f88d120b5201443d46faf842cc432fac6cc46cd"
- },
- {
- "file": "packages/react/src/generators/application/files/global-css/src/styles.__style__",
- "hash": "90d4ee0072ce3fc41812f8af910219f9eea3c3de"
- },
- {
- "file": "packages/react/src/generators/application/files/none/src/app/__fileName__.tsx__tmpl__",
- "hash": "56c6526f42fad86c36b66e9c9efd1c7591377dfc"
- },
- {
- "file": "packages/react/src/generators/application/files/styled-jsx/src/app/__fileName__.tsx__tmpl__",
- "hash": "d4ab405aad8b84fff1070a0f893ec3c832968400"
- },
- {
- "file": "packages/react/src/generators/application/files/styled-module/src/app/__fileName__.tsx__tmpl__",
- "hash": "e38786b37567c85a383a2805684411d489a2e306"
- },
- {
- "file": "packages/react/src/generators/application/lib/add-cypress.ts",
- "hash": "bf1ebf574c5b25da29f2a9af9c4e2a369997a581",
- "deps": ["cypress", "devkit"]
- },
- {
- "file": "packages/react/src/generators/application/lib/add-jest.ts",
- "hash": "cd18cce87b40d4c9c137c55e55096d9c46e7a151",
- "deps": ["devkit", "jest"]
- },
- {
- "file": "packages/react/src/generators/application/lib/add-project.ts",
- "hash": "1cca6fe0d7c1abe182413d4d8336ffdcafb9b55f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/generators/application/lib/add-routing.ts",
- "hash": "944b704caa89ff71e139b7ffb3b5614dbf5409e0",
- "deps": ["npm:typescript", "devkit"]
- },
- {
- "file": "packages/react/src/generators/application/lib/create-application-files.ts",
- "hash": "9e2276f04c2f549d0360103d75484f3af3d83a57",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/react/src/generators/application/lib/find-free-port.spec.ts",
- "hash": "9a4745047fd62b1fd205547b0a665d6920e5f5d1",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/generators/application/lib/find-free-port.ts",
- "hash": "bb2816f19ae755ef7fefa1183c6a6e3560d6b61b",
- "deps": ["nx", "devkit"]
- },
- {
- "file": "packages/react/src/generators/application/lib/normalize-options.ts",
- "hash": "734395ff2ea57571f4f56815606542b1ad15f0d6",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/generators/application/lib/set-defaults.ts",
- "hash": "bf20d8024be596d641464ecc7073362643b679e3",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/generators/application/lib/update-jest-config.ts",
- "hash": "5e4c5b4c109dcf917fda76b7fadc25d4ea7c22c6",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/generators/application/schema.d.ts",
- "hash": "91a65137bea58b490a52871a59893b103da0f70c",
- "deps": ["linter"]
- },
- {
- "file": "packages/react/src/generators/application/schema.json",
- "hash": "6a1595011232830857f0e4f24c9d70800e458877"
- },
- {
- "file": "packages/react/src/generators/component-cypress-spec/component-cypress-spec.spec.ts",
- "hash": "4f8527cca6a15382d5a0ab51cbea8b7a486e5fbe",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/react/src/generators/component-cypress-spec/component-cypress-spec.ts",
- "hash": "a3818e8a3516682ec29d14d765a1462cd94173f9",
- "deps": ["devkit", "npm:typescript"]
- },
- {
- "file": "packages/react/src/generators/component-cypress-spec/files/__componentName__.__fileExt__",
- "hash": "eae23f1c6627137e55eb72dfb5dc3795bb109cf4"
- },
- {
- "file": "packages/react/src/generators/component-cypress-spec/schema.json",
- "hash": "ca1c4693ccdf49293da10664e966374cac91b7c9"
- },
- {
- "file": "packages/react/src/generators/component-story/component-story.spec.ts",
- "hash": "e171cfdbee1aa6681e11a6fbd7141749424d3535",
- "deps": ["devkit", "linter", "npm:@storybook/react", "npm:react"]
- },
- {
- "file": "packages/react/src/generators/component-story/component-story.ts",
- "hash": "632fdeb2bdf42748d22b672c9da5a10ab21fa2ff",
- "deps": ["devkit", "npm:typescript"]
- },
- {
- "file": "packages/react/src/generators/component-story/files/__componentFileName__.stories.__fileExt__",
- "hash": "edc7ccfad06f08638af1c64611141078dae55c50"
- },
- {
- "file": "packages/react/src/generators/component-story/schema.json",
- "hash": "60bd4817bdaf9b716a42f8ab8d8fdb5b243d9e65"
- },
- {
- "file": "packages/react/src/generators/component-test/__snapshots__/component-test.spec.ts.snap",
- "hash": "0976befec83406e621ccbbc175d7a5d2408ffe6a"
- },
- {
- "file": "packages/react/src/generators/component-test/component-test.spec.ts",
- "hash": "822b366e89aa3cfcea5bd3404146a3c62766b819",
- "deps": ["cypress", "devkit", "linter"]
- },
- {
- "file": "packages/react/src/generators/component-test/component-test.ts",
- "hash": "801e3f70cd7cacb67d5ef26879a9d5f144eec53e",
- "deps": ["cypress", "devkit", "npm:typescript"]
- },
- {
- "file": "packages/react/src/generators/component-test/files/__fileName__.cy__ext__",
- "hash": "1c2dcdedf659162bd31746f39a450da7f7a06366"
- },
- {
- "file": "packages/react/src/generators/component-test/schema.json",
- "hash": "7ba8baf01fe72da6f2fac9831b4e380a52d3ff6f"
- },
- {
- "file": "packages/react/src/generators/component-test/schema.ts",
- "hash": "5daf2559af51c3356154fa7c8842bf548282ff28"
- },
- {
- "file": "packages/react/src/generators/component/component.spec.ts",
- "hash": "8e9727e9fca0a85a637528c1945b273fe2f4254e",
- "deps": ["cypress", "devkit"]
- },
- {
- "file": "packages/react/src/generators/component/component.ts",
- "hash": "aced131a4288949bb69e091a818e9a0f42c8cd5c",
- "deps": ["devkit", "workspace", "npm:typescript"]
- },
- {
- "file": "packages/react/src/generators/component/files/__fileName__.__style__",
- "hash": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"
- },
- {
- "file": "packages/react/src/generators/component/files/__fileName__.module.__style__",
- "hash": "d0246c74b9c3ce6c98696bd87c682ac671f14c8a"
- },
- {
- "file": "packages/react/src/generators/component/files/__fileName__.spec.tsx__tmpl__",
- "hash": "1254163ca353e63ee49c816a5c8bf4c4058b6646"
- },
- {
- "file": "packages/react/src/generators/component/files/__fileName__.tsx__tmpl__",
- "hash": "00122d4af96f22c0bf0c1554afd9d693fe391378"
- },
- {
- "file": "packages/react/src/generators/component/schema.d.ts",
- "hash": "73d87b85f8924f5a5132f9a625fd51986a72c536"
- },
- {
- "file": "packages/react/src/generators/component/schema.json",
- "hash": "8dea84a3b0589bdc01a405c3f0bfe0d7ef11fda6"
- },
- {
- "file": "packages/react/src/generators/cypress-component-configuration/__snapshots__/cypress-component-configuration.spec.ts.snap",
- "hash": "7c71c9b7ee0f6ebac5e85211700e251db277ab54"
- },
- {
- "file": "packages/react/src/generators/cypress-component-configuration/cypress-component-configuration.spec.ts",
- "hash": "79b2e39e7d38ed641a2866feb8a39ad2374faf70",
- "deps": ["cypress", "devkit", "linter"]
- },
- {
- "file": "packages/react/src/generators/cypress-component-configuration/cypress-component-configuration.ts",
- "hash": "f27aabadac8df705f36aade3b34538e8d936b2c3",
- "deps": ["cypress", "devkit"]
- },
- {
- "file": "packages/react/src/generators/cypress-component-configuration/files/cypress.config.ts__tpl__",
- "hash": "6fa4db13856846206b415795128ecb2089ee8757"
- },
- {
- "file": "packages/react/src/generators/cypress-component-configuration/lib/add-files.ts",
- "hash": "2c5ddf3588f12fa8b0565cdb1d2be79d77b349b2",
- "deps": ["devkit", "npm:typescript"]
- },
- {
- "file": "packages/react/src/generators/cypress-component-configuration/lib/update-configs.ts",
- "hash": "b849cec261166c08c7d745c5e6f43204a2e08846",
- "deps": ["cypress", "devkit"]
- },
- {
- "file": "packages/react/src/generators/cypress-component-configuration/schema.d.ts",
- "hash": "bc2c652495c82d2a9e2428cd90f3abf291a24000"
- },
- {
- "file": "packages/react/src/generators/cypress-component-configuration/schema.json",
- "hash": "771f1e2b04ffb745ea4e942b74cb8a52cd11d3d9"
- },
- {
- "file": "packages/react/src/generators/hook/files/__fileName__.spec.tsx__tmpl__",
- "hash": "728896676969f8705b1b3cdab073d74ee608fedf"
- },
- {
- "file": "packages/react/src/generators/hook/files/__fileName__.ts__tmpl__",
- "hash": "ca2c3be0d245980fd743afc66a0fd7a90b0a9382"
- },
- {
- "file": "packages/react/src/generators/hook/hook.spec.ts",
- "hash": "13d7cf416dd6575977da1d37c2fa553ee0a650f2",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/generators/hook/hook.ts",
- "hash": "8dfa40144ef5e0a278c81d55694ae446501113e0",
- "deps": ["npm:typescript", "devkit"]
- },
- {
- "file": "packages/react/src/generators/hook/schema.d.ts",
- "hash": "06c215d68a79433fe68ca6553551265e608c7063"
- },
- {
- "file": "packages/react/src/generators/hook/schema.json",
- "hash": "9edb42ba23d0ea53d0c34ab9a360aba37bd01908"
- },
- {
- "file": "packages/react/src/generators/host/files/common/src/app/__fileName__.tsx__tmpl__",
- "hash": "2bda4c58b3cf82dc4e1b4256a4c49c498630708c"
- },
- {
- "file": "packages/react/src/generators/host/files/module-federation/module-federation.config.js__tmpl__",
- "hash": "75fc93c742ca3fb9aeef773abadb2fc06fb462c3"
- },
- {
- "file": "packages/react/src/generators/host/files/module-federation/src/main.ts__tmpl__",
- "hash": "137c64f9f447561661addf9c22843b60fd19f9a9"
- },
- {
- "file": "packages/react/src/generators/host/files/module-federation/src/remotes.d.ts__tmpl__",
- "hash": "1a6f4583c754151e82d629fea458ac3c09edc79e"
- },
- {
- "file": "packages/react/src/generators/host/files/module-federation/webpack.config.js__tmpl__",
- "hash": "13ba6e80db40bf17de00b2b4be7fd68197bc7b87"
- },
- {
- "file": "packages/react/src/generators/host/files/module-federation/webpack.config.prod.js__tmpl__",
- "hash": "ab5b721534f46b4932eb7648a9712d1eef67e9c7"
- },
- {
- "file": "packages/react/src/generators/host/host.ts",
- "hash": "77d80af93337852a0065dfaeedd36e4a5ce2472f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/generators/host/lib/add-module-federation-files.ts",
- "hash": "951ce51a1f838244e20fdc333f0594200146947a",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/generators/host/lib/update-module-federation-e2e-project.ts",
- "hash": "1b4fef60cd9478f08f535db92fff83c420ed67d8",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/generators/host/schema.d.ts",
- "hash": "47efc8a024dd6911030186b73f7efe4c6e2631fc",
- "deps": ["linter"]
- },
- {
- "file": "packages/react/src/generators/host/schema.json",
- "hash": "c27004797c63f2a7853c4b265587db5527148af7"
- },
- {
- "file": "packages/react/src/generators/init/init.spec.ts",
- "hash": "61d1317b5d617c3214345b2bf479528d97afdb54",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/generators/init/init.ts",
- "hash": "1bb157c9f681b8d51c2d9965be5693b2fc57f8bb",
- "deps": ["cypress", "devkit", "jest", "web", "workspace"]
- },
- {
- "file": "packages/react/src/generators/init/schema.d.ts",
- "hash": "a0157cab6ecd6c9b1fe63ebc9f69bd73e7d7a9d4"
- },
- {
- "file": "packages/react/src/generators/init/schema.json",
- "hash": "9bfadd7e686c3315cc726ae026eea659d4f21302"
- },
- {
- "file": "packages/react/src/generators/library/files/lib/.babelrc__tmpl__",
- "hash": "fccd738e38d84572ffd593b378c1400901812a5c"
- },
- {
- "file": "packages/react/src/generators/library/files/lib/package.json__tmpl__",
- "hash": "fa518765a372fc2c8593fdd59b748f284d1ee495"
- },
- {
- "file": "packages/react/src/generators/library/files/lib/README.md",
- "hash": "b74453ce2e8395837aad3c7c03e3ab14ae819218"
- },
- {
- "file": "packages/react/src/generators/library/files/lib/src/index.ts__tmpl__",
- "hash": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"
- },
- {
- "file": "packages/react/src/generators/library/files/lib/tsconfig.json__tmpl__",
- "hash": "c5c5460225c538b7df2c0b1df0f738a2a7c905b5"
- },
- {
- "file": "packages/react/src/generators/library/files/lib/tsconfig.lib.json__tmpl__",
- "hash": "fa30133616e56ff896724a58f49976006d871b9c"
- },
- {
- "file": "packages/react/src/generators/library/library.spec.ts",
- "hash": "2d7b15a6402167a695c1e0e52e9351c9ec568fc7",
- "deps": ["cypress", "devkit", "linter"]
- },
- {
- "file": "packages/react/src/generators/library/library.ts",
- "hash": "c23024950db1f9532b45bb43dea3a272309b6706",
- "deps": [
- "devkit",
- "nx",
- "jest",
- "js",
- "linter",
- "workspace",
- "npm:typescript"
- ]
- },
- {
- "file": "packages/react/src/generators/library/schema.d.ts",
- "hash": "2188deab9d8f50527d8f20123e20673481eafe4c",
- "deps": ["linter"]
- },
- {
- "file": "packages/react/src/generators/library/schema.json",
- "hash": "8da59cea89d337718cf1aa0e2b29027a4d2652e0"
- },
- {
- "file": "packages/react/src/generators/redux/files/__directory__/__fileName__.slice.spec.ts__tmpl__",
- "hash": "b96f5f281e11c1803ea7b8ff6dbbec98ee3ece38"
- },
- {
- "file": "packages/react/src/generators/redux/files/__directory__/__fileName__.slice.ts__tmpl__",
- "hash": "f6addfdd414badddaf7981143baa14582d6b4283"
- },
- {
- "file": "packages/react/src/generators/redux/redux.spec.ts",
- "hash": "6a358dfeea0ab7bbe0f3562ca4d88741af8effa9",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/react/src/generators/redux/redux.ts",
- "hash": "e6cbc419e0061a5f5099f5bd840b9a422f4d139d",
- "deps": ["npm:typescript", "devkit", "workspace"]
- },
- {
- "file": "packages/react/src/generators/redux/schema.d.ts",
- "hash": "4d20fcddece6acf5673cd2bbb81b16d767bf9b0f"
- },
- {
- "file": "packages/react/src/generators/redux/schema.json",
- "hash": "ed2755b31fcc4dca2c87f7d6447e1aec2d0eef98"
- },
- {
- "file": "packages/react/src/generators/remote/files/module-federation/module-federation.config.js__tmpl__",
- "hash": "d032744db1170ab61760eb04f74eb9f4ef0d347a"
- },
- {
- "file": "packages/react/src/generators/remote/files/module-federation/src/main.ts__tmpl__",
- "hash": "b93c7a0268a59fd8da921ff38b0ce28d429d7a23"
- },
- {
- "file": "packages/react/src/generators/remote/files/module-federation/src/remote-entry.ts__tmpl__",
- "hash": "8c1fd1008a0bb10cb8c8f9b8fbbef48fd9847f95"
- },
- {
- "file": "packages/react/src/generators/remote/files/module-federation/webpack.config.js__tmpl__",
- "hash": "13ba6e80db40bf17de00b2b4be7fd68197bc7b87"
- },
- {
- "file": "packages/react/src/generators/remote/files/module-federation/webpack.config.prod.js__tmpl__",
- "hash": "bbf8e1f9d4c69b96d660abdab51c91057ea3c1d1"
- },
- {
- "file": "packages/react/src/generators/remote/lib/update-host-with-remote.ts",
- "hash": "a487ca323b84bf7f4535ea9daddb0f68df58a768",
- "deps": ["devkit", "npm:typescript"]
- },
- {
- "file": "packages/react/src/generators/remote/remote.spec.ts",
- "hash": "a7671c4f2e87b61a839885dda4ed413cd857ba9e",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/react/src/generators/remote/remote.ts",
- "hash": "7337273ef0c11a5a5abe0d0a47da41842838b3b0",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/react/src/generators/remote/schema.d.ts",
- "hash": "e4f88c7e1054199dd12e6d3ed15798f4faf2888c",
- "deps": ["linter"]
- },
- {
- "file": "packages/react/src/generators/remote/schema.json",
- "hash": "f9bcbd2d11473d9fc9005f24fbe9e149bf082a27"
- },
- {
- "file": "packages/react/src/generators/setup-tailwind/files/postcss.config.js__tmpl__",
- "hash": "5a8ffc489967e61fead543cb69ec47ab9c870655"
- },
- {
- "file": "packages/react/src/generators/setup-tailwind/files/tailwind.config.js__tmpl__",
- "hash": "d00839f6ace911abd9926eb93cc12827c8c6d2ac"
- },
- {
- "file": "packages/react/src/generators/setup-tailwind/lib/add-tailwind-style-imports.ts",
- "hash": "89ae7b2cfdaa1b5105a42025f382a565bb512dc6",
- "deps": ["devkit", "npm:chalk"]
- },
- {
- "file": "packages/react/src/generators/setup-tailwind/lib/update-project.ts",
- "hash": "aaddbc3171f8ec7623274db5504aaab521e69827",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/generators/setup-tailwind/schema.json",
- "hash": "73ef9276a39ed9b8f873aeaaa62d8104fab4fc4d"
- },
- {
- "file": "packages/react/src/generators/setup-tailwind/schema.ts",
- "hash": "58452c963443ad51d0cef3ac8312abc611a58d5e"
- },
- {
- "file": "packages/react/src/generators/setup-tailwind/setup-tailwind.spec.ts",
- "hash": "6ef4d15867282876432d861004ec1b18946db4f9",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/generators/setup-tailwind/setup-tailwind.ts",
- "hash": "9eb221e8b8f73188a3e0e8e1873873abc608adc2",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/react/src/generators/stories/schema.json",
- "hash": "1ebc618e226aac06bef760315d695d3957283a0b"
- },
- {
- "file": "packages/react/src/generators/stories/stories.app.spec.ts",
- "hash": "e9606ff7d826c450208ff7c9f8c0331ca200d0e7",
- "deps": ["cypress", "devkit", "linter"]
- },
- {
- "file": "packages/react/src/generators/stories/stories.lib.spec.ts",
- "hash": "0c92e830590156ab787bf1a7b3ce297a497e9182",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/react/src/generators/stories/stories.nextjs.spec.ts",
- "hash": "4bf4769597344231e592f0958f5ad5124aef3d60",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/react/src/generators/stories/stories.ts",
- "hash": "0c228d8f866b2b495103fa452b9edb8a59de054d",
- "deps": ["npm:typescript", "devkit", "storybook", "npm:minimatch"]
- },
- {
- "file": "packages/react/src/generators/storybook-configuration/configuration.spec.ts",
- "hash": "be9dcb8eada439878bbae823eba9873cea98ce07",
- "deps": ["cypress", "devkit", "linter"]
- },
- {
- "file": "packages/react/src/generators/storybook-configuration/configuration.ts",
- "hash": "022d1124ed3c31398f04a8e0844c523d75beb4a0",
- "deps": ["devkit", "storybook", "cypress"]
- },
- {
- "file": "packages/react/src/generators/storybook-configuration/schema.d.ts",
- "hash": "8a554e65c50e5dc83a81f79fa555179c071a60dc",
- "deps": ["linter"]
- },
- {
- "file": "packages/react/src/generators/storybook-configuration/schema.json",
- "hash": "18af1d1691dadf01f2b0bc0b540671845a40f3e0"
- },
- {
- "file": "packages/react/src/migrations/update-12-0-0/remove-react-redux-types-package.spec.ts",
- "hash": "af19cbd678ffbf59fa413661c38a56c444b5929f",
- "deps": ["devkit", "npm:@angular-devkit/schematics"]
- },
- {
- "file": "packages/react/src/migrations/update-12-0-0/remove-react-redux-types-package.ts",
- "hash": "242d033576d97e6a7fd89cd203525c202d1e2880",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/migrations/update-12-0-0/update-emotion-setup.spec.ts",
- "hash": "86b7beab3444c0a832dd1344b5184b45e59749ff",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/migrations/update-12-0-0/update-emotion-setup.ts",
- "hash": "50ca6b56281a5e9064e7e0b16f7c6ecff21117e2",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/migrations/update-12-0-0/use-react-jsx-in-tsconfig.spec.ts",
- "hash": "e6d41709a7114d4abc1a589558dc435b5af182af",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/migrations/update-12-0-0/use-react-jsx-in-tsconfig.ts",
- "hash": "d414ed408cc316a380822b7d3197a7bfa8d503ae",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/migrations/update-12-8-0/update-12-8-0.ts",
- "hash": "909cc00cbeeb97b8af4ed6b4c78afb882e40fae2",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/migrations/update-13-0-0/__snapshots__/webpack5-changes-utils.spec.ts.snap",
- "hash": "321fea7a0960d0c46ea3055007d6c75f7355298d"
- },
- {
- "file": "packages/react/src/migrations/update-13-0-0/migrate-storybook-to-webpack-5.spec.ts",
- "hash": "7ca1fa2fc7e8d07e94bc386494cb0f281dac3b9d",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/migrations/update-13-0-0/migrate-storybook-to-webpack-5.ts",
- "hash": "d05226e1822d7761535466a27c4cab6b65872a25",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/migrations/update-13-0-0/update-emotion-setup.spec.ts",
- "hash": "748d039fe8d21856718a506a403f1732f083d1cf",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/migrations/update-13-0-0/update-emotion-setup.ts",
- "hash": "7978f7dd91dcc5c9d03364fec5e3454e7dbe23cc",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/migrations/update-13-0-0/webpack5-changes-utils.spec.ts",
- "hash": "e087664a116b1e9ba45408f5b83066673007422e",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/migrations/update-13-0-0/webpack5-changes-utils.ts",
- "hash": "ff3d011033b01fa3bcdd3290a7e8416d79508c0a",
- "deps": ["devkit", "npm:typescript", "workspace"]
- },
- {
- "file": "packages/react/src/migrations/update-13-10-0/update-13-10-0.spec.ts",
- "hash": "499d3186ae15301fe62b681ab79a5316470d1811",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/migrations/update-13-10-0/update-13-10-0.ts",
- "hash": "a4e30afbbe90596d3cc6a53944ee876ad587107e",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/migrations/update-14-0-0/add-default-development-configurations.spec.ts",
- "hash": "9c1c3e9f3843620b386432c03fb313a10cb03d4c",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/migrations/update-14-0-0/add-default-development-configurations.ts",
- "hash": "e52d7482c8a7b8918737287e5328ad5b0c2b3d52",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/migrations/update-14-0-0/replace-testing-library-react-hook.spec.ts",
- "hash": "b4ab5067d67894dcca3573caefdf4b9f96049206",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/migrations/update-14-0-0/replace-testing-library-react-hook.ts",
- "hash": "2709f98dab539541c83f863e7ae537834daa301f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/migrations/update-14-0-0/update-react-dom-render-for-v18.spec.ts",
- "hash": "97bf396d1ae18fb66cabbeaad7c4a84195b62aab",
- "deps": ["devkit", "npm:react", "npm:react-dom"]
- },
- {
- "file": "packages/react/src/migrations/update-14-0-0/update-react-dom-render-for-v18.ts",
- "hash": "e8ced25914ec08c52d4a66f651f5b0976536c873",
- "deps": ["devkit", "workspace", "npm:typescript"]
- },
- {
- "file": "packages/react/src/migrations/update-14-1-0/update-external-emotion-jsx-runtime.spec.ts",
- "hash": "50c6d8be8c4ee0a3fe6d730e151c55e85af689f3",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/migrations/update-14-1-0/update-external-emotion-jsx-runtime.ts",
- "hash": "cdb281943340f9e9e01f99c88b8eff210f2ad44c",
- "deps": ["devkit", "web", "workspace"]
- },
- {
- "file": "packages/react/src/migrations/update-14-6-0/add-preset-jest-config.spec.ts",
- "hash": "4f73f7ebf2eb4bb29a40b78427c3aed186235028",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/migrations/update-14-6-0/add-preset-jest-config.ts",
- "hash": "11e185f355526ab54b04614e0e6b6e6b945218bc",
- "deps": [
- "devkit",
- "jest",
- "workspace",
- "npm:@phenomnomnominal/tsquery",
- "npm:typescript"
- ]
- },
- {
- "file": "packages/react/src/migrations/utils/rules.ts",
- "hash": "2fbf009568e8cf09775ed1e9d3b0c4bddd89e3e4",
- "deps": ["npm:@angular-devkit/schematics"]
- },
- {
- "file": "packages/react/src/migrations/utils/testing.ts",
- "hash": "c71dd663e0b07902e8ce86faecd7897b509403b5",
- "deps": [
- "npm:@angular-devkit/schematics",
- "workspace",
- "devkit",
- "npm:react-dom",
- "npm:react"
- ]
- },
- {
- "file": "packages/react/src/module-federation/ast-utils.spec.ts",
- "hash": "94ab033beee67abb09b7acee861bcbfb6b4ddc18",
- "deps": [
- "npm:typescript",
- "devkit",
- "npm:react",
- "npm:react-router-dom"
- ]
- },
- {
- "file": "packages/react/src/module-federation/ast-utils.ts",
- "hash": "55758ab17ba213e68f30ed5817c588e2a8813db1",
- "deps": ["npm:typescript", "devkit", "workspace"]
- },
- {
- "file": "packages/react/src/module-federation/load-config.ts",
- "hash": "37592f55796aa9f05941a68be58f54ee8dc8a4c1",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/module-federation/models.ts",
- "hash": "1dbbc2e9a9bebb81e64cfdb4b29099c27c2d7f3d"
- },
- {
- "file": "packages/react/src/module-federation/package-json.ts",
- "hash": "b0fbff11dea14cf88c6d1d4328204645762fd78b",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/module-federation/webpack-utils.ts",
- "hash": "84e887c7113fb87103a9900221fc1714266ca12e",
- "deps": ["npm:webpack", "devkit", "npm:typescript", "workspace"]
- },
- {
- "file": "packages/react/src/module-federation/with-module-federation.ts",
- "hash": "9434c27f85273f1a37fab7ec63f5091f05d73e8e",
- "deps": ["devkit", "workspace", "npm:typescript", "npm:webpack"]
- },
- {
- "file": "packages/react/src/rules/add-styled-dependencies.ts",
- "hash": "ac5c93aef52ec20b61999476cc6963f14a833f59",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/rules/update-module-federation-project.ts",
- "hash": "0448ee78d6c0a83cfdc01949ce6f7cd0516232eb",
- "deps": ["devkit"]
- },
- {
- "file": "packages/react/src/utils/assertion.spec.ts",
- "hash": "1a91285a67151b84239c2b21a17128a11e30196b"
- },
- {
- "file": "packages/react/src/utils/assertion.ts",
- "hash": "59d939ff531eab6eade158f6384d095a371d1fb7"
- },
- {
- "file": "packages/react/src/utils/ast-utils.spec.ts",
- "hash": "f34432049a8bf9ab8dc8044d62bfd80d8587bdb7",
- "deps": ["npm:typescript", "devkit"]
- },
- {
- "file": "packages/react/src/utils/ast-utils.ts",
- "hash": "2a658d8fda7b619dc23e15e5ab0a349abbb77ebf",
- "deps": [
- "npm:typescript",
- "workspace",
- "devkit",
- "npm:react-router-dom",
- "npm:@reduxjs/toolkit",
- "npm:react-redux"
- ]
- },
- {
- "file": "packages/react/src/utils/async-iterator.spec.ts",
- "hash": "7ba53d2d7ffd481f1404a412e503699f070c1020"
- },
- {
- "file": "packages/react/src/utils/async-iterator.ts",
- "hash": "366ebbb21617b5dc4a4b8743f9cc763f3503fc25"
- },
- {
- "file": "packages/react/src/utils/component-props.ts",
- "hash": "3fcc45c190675a5217958c1872a58666b7c38d1a",
- "deps": ["npm:typescript"]
- },
- {
- "file": "packages/react/src/utils/dependencies.ts",
- "hash": "8dcd07e1c1e5dd3705845c48ba8d3a59c9536c7e"
- },
- {
- "file": "packages/react/src/utils/format-file.ts",
- "hash": "e10b69524fda84fbf3b29b7a21a4c2cae2fc886c",
- "deps": ["npm:prettier", "devkit"]
- },
- {
- "file": "packages/react/src/utils/jest-utils.ts",
- "hash": "c44bc73429f700ab9940f635f864728a074e5c1a"
- },
- {
- "file": "packages/react/src/utils/lint.ts",
- "hash": "69dff978db8455ab51e42e298282bca9b52bd6a0",
- "deps": ["devkit", "npm:eslint"]
- },
- {
- "file": "packages/react/src/utils/styled.ts",
- "hash": "c788d43a55beac3200543ceb9762a83fb0454f18"
- },
- {
- "file": "packages/react/src/utils/testing-generators.ts",
- "hash": "34112cb060493cf67832d352acf2fbfb5f3e9604",
- "deps": ["devkit", "linter", "npm:react"]
- },
- {
- "file": "packages/react/src/utils/versions.ts",
- "hash": "e6f85e4620f7ff6d93c91943273e903472701178"
- },
- {
- "file": "packages/react/tailwind.ts",
- "hash": "d4816206d223bf9607884d6de4537f325e3dbb6e",
- "deps": ["workspace"]
- },
- {
- "file": "packages/react/tsconfig.json",
- "hash": "58bd2c97a66f5e5ea5d05c8a5709ee79bad02094"
- },
- {
- "file": "packages/react/tsconfig.lib.json",
- "hash": "1d2ddef3c1be3aa86cb55b66b9c912d3c6bf1a07"
- },
- {
- "file": "packages/react/tsconfig.spec.json",
- "hash": "869c90c526a0fe7b4b32c39d3989c66259545d9a"
- },
- {
- "file": "packages/react/typings/cssmodule.d.ts",
- "hash": "4692cb8336600e15db53b49005e35ea8b8dc5130"
- },
- {
- "file": "packages/react/typings/image.d.ts",
- "hash": "427d461daf82463b1a388e3122d561f963688e2b",
- "deps": ["npm:react"]
- },
- {
- "file": "packages/react/typings/style.d.ts",
- "hash": "8f2d76d63e51f636384784bab2f13902b3a272fa"
- },
- {
- "file": "packages/react/typings/styled-jsx.d.ts",
- "hash": "febdbe1583ae1eaf149309541b47f220f624489c",
- "deps": ["npm:react"]
- }
- ]
- }
- },
- {
- "name": "e2e-nx-plugin",
- "type": "app",
- "data": {
- "tags": [],
- "root": "e2e/nx-plugin",
- "files": [
- {
- "file": "e2e/nx-plugin/jest.config.ts",
- "hash": "9174cd675d75c2b1092d58134ffe78a21c820a17"
- },
- {
- "file": "e2e/nx-plugin/project.json",
- "hash": "291f8b45e9157a8ed4d16a015018ee9969c9c3dc"
- },
- {
- "file": "e2e/nx-plugin/src/nx-plugin.fixtures.ts",
- "hash": "e9f2c368c6b945a198892b20347000debbd0dfca"
- },
- {
- "file": "e2e/nx-plugin/src/nx-plugin.test.ts",
- "hash": "2a0b1e67dd8b7aa646aaa0fa2f53532775e01108",
- "deps": ["devkit", "e2e-utils"]
- },
- {
- "file": "e2e/nx-plugin/tsconfig.json",
- "hash": "6d5abf84832009a8c70e7a910c49f332bf1f0612"
- },
- {
- "file": "e2e/nx-plugin/tsconfig.spec.json",
- "hash": "1a24bfb0a13536cd17717808ca5609e15def438f"
- }
- ]
- }
- },
- {
- "name": "e2e-storybook",
- "type": "app",
- "data": {
- "tags": [],
- "root": "e2e/storybook",
- "files": [
- {
- "file": "e2e/storybook/jest.config.ts",
- "hash": "38338dc0e542bc8a2bf5a89bd4bcb631a72cbe65"
- },
- {
- "file": "e2e/storybook/project.json",
- "hash": "13a28e7410e00bdfdfa9d6b58b9af995ec61c76b"
- },
- {
- "file": "e2e/storybook/src/storybook.test.ts",
- "hash": "7ddf3a70d50f445ac108cfd7b4d571e91c926fd3",
- "deps": ["e2e-utils", "npm:react"]
- },
- {
- "file": "e2e/storybook/tsconfig.json",
- "hash": "6d5abf84832009a8c70e7a910c49f332bf1f0612"
- },
- {
- "file": "e2e/storybook/tsconfig.spec.json",
- "hash": "1a24bfb0a13536cd17717808ca5609e15def438f"
- }
- ]
- }
- },
- {
- "name": "jest",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/jest",
- "files": [
- {
- "file": "packages/jest/.eslintrc.json",
- "hash": "6c7a3539d988af84174c309b080fdf10dde2d4c1"
- },
- {
- "file": "packages/jest/executors.json",
- "hash": "6a9afc165b61328225b5e622168ab5feedf28b5f"
- },
- {
- "file": "packages/jest/generators.json",
- "hash": "d296c1db5f5cede7e2237ef357a6248ccfb3b191"
- },
- {
- "file": "packages/jest/index.ts",
- "hash": "498b209d7d872c43f21464e8d989d71b15bca3e9"
- },
- {
- "file": "packages/jest/jest.config.ts",
- "hash": "6599d7763d782b4598a4b3d13d749f0663bf3943"
- },
- {
- "file": "packages/jest/migrations.json",
- "hash": "444972308a7e01399c8219f334e47de7ab789096"
- },
- {
- "file": "packages/jest/migrations.spec.ts",
- "hash": "9b7e3abd09085236634fbe4ef87e300eb993937a"
- },
- {
- "file": "packages/jest/package.json",
- "hash": "f1fa95fa6ebd830f7791483e5401e6e69a99bb48",
- "deps": [
- "devkit",
- "npm:@phenomnomnominal/tsquery",
- "npm:chalk",
- "npm:dotenv",
- "npm:identity-obj-proxy",
- "npm:rxjs",
- "npm:tslib"
- ]
- },
- {
- "file": "packages/jest/plugins/resolver.ts",
- "hash": "66abd9d7ae1cfca896f3f25daa96b3ddae42411f"
- },
- {
- "file": "packages/jest/preset/index.ts",
- "hash": "d26da6054e25ef8e48a0882b21aa7f75922b052b"
- },
- {
- "file": "packages/jest/preset/jest-preset.ts",
- "hash": "1c9c2c5bc126ea395ab69d34ee0b3e76e259e9c3"
- },
- {
- "file": "packages/jest/project.json",
- "hash": "0586d43d064ecf93847b22c8731452693248f1aa"
- },
- {
- "file": "packages/jest/README.md",
- "hash": "31a4390883b95b724fd738c2cd2f22de78653638"
- },
- {
- "file": "packages/jest/src/executors/jest/compat.ts",
- "hash": "5e83b59b8ab03068f665347d06b3453e5931f876",
- "deps": ["devkit"]
- },
- {
- "file": "packages/jest/src/executors/jest/jest.impl.spec.ts",
- "hash": "7af56a71f283465bf25bef62947a094f420fd162",
- "deps": ["devkit"]
- },
- {
- "file": "packages/jest/src/executors/jest/jest.impl.ts",
- "hash": "31ff310910132b39afdbb19afdc0bbb79dea6a76",
- "deps": ["npm:dotenv", "npm:jest", "devkit"]
- },
- {
- "file": "packages/jest/src/executors/jest/schema.d.ts",
- "hash": "3c3e4b9f929b88566e0cd201adbb8aee64a8a2e7"
- },
- {
- "file": "packages/jest/src/executors/jest/schema.json",
- "hash": "50f8e038ea57ba1e46e78cfc0b22513200965c45"
- },
- {
- "file": "packages/jest/src/executors/jest/summary.ts",
- "hash": "b578629f596c925ddd04dd74fecd153edaf53fa5",
- "deps": ["npm:chalk"]
- },
- {
- "file": "packages/jest/src/generators/init/__snapshots__/init.spec.ts.snap",
- "hash": "2525de8ad0ee4d369b669c0ead0c83f27a10bc8e"
- },
- {
- "file": "packages/jest/src/generators/init/init.spec.ts",
- "hash": "4e39b37c63418cd16c86ea75750f6fbcfd9a3661",
- "deps": ["devkit"]
- },
- {
- "file": "packages/jest/src/generators/init/init.ts",
- "hash": "d7bcb6b9a825a9622b47a6c0832eada4fe989279",
- "deps": ["devkit"]
- },
- {
- "file": "packages/jest/src/generators/init/schema.d.ts",
- "hash": "355b74b1d81ccdc82ddc987c894779c2b4e58476"
- },
- {
- "file": "packages/jest/src/generators/init/schema.json",
- "hash": "ba72f8215b649df253932b8db0ad7a6ae2c43a23"
- },
- {
- "file": "packages/jest/src/generators/jest-project/__snapshots__/jest-project.spec.ts.snap",
- "hash": "eae545c739857a8997030532bfbb902e6eefb7c9"
- },
- {
- "file": "packages/jest/src/generators/jest-project/files-angular/jest.config.ts__tmpl__",
- "hash": "9effaf14a6c18e2a38a209b6bdb1daa030aa7d92"
- },
- {
- "file": "packages/jest/src/generators/jest-project/files-angular/src/test-setup.ts__tmpl__",
- "hash": "1100b3e8a6ed08f4b5c27a96471846d57023c320"
- },
- {
- "file": "packages/jest/src/generators/jest-project/files-angular/tsconfig.spec.json__tmpl__",
- "hash": "65c18a64a9d082c0587f8fbe4f2bd2b1e4ba0134"
- },
- {
- "file": "packages/jest/src/generators/jest-project/files/jest.config.ts__tmpl__",
- "hash": "f40d5896697ba67da3608434031c4b368c987c9c"
- },
- {
- "file": "packages/jest/src/generators/jest-project/files/src/test-setup.ts__tmpl__",
- "hash": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"
- },
- {
- "file": "packages/jest/src/generators/jest-project/files/tsconfig.spec.json__tmpl__",
- "hash": "7218d65a6b7f60bc88271255cab26ce1a983d985"
- },
- {
- "file": "packages/jest/src/generators/jest-project/jest-project.spec.ts",
- "hash": "de66d5847531ca7802211243f5a65c2d1776d9fd",
- "deps": ["devkit"]
- },
- {
- "file": "packages/jest/src/generators/jest-project/jest-project.ts",
- "hash": "f65c5ced472ca9442296849221f4d8bdf266fd1c",
- "deps": ["devkit"]
- },
- {
- "file": "packages/jest/src/generators/jest-project/lib/check-for-test-target.ts",
- "hash": "e24793c596757597d268a6ac95fc3611a3186001",
- "deps": ["devkit"]
- },
- {
- "file": "packages/jest/src/generators/jest-project/lib/create-files.ts",
- "hash": "930aa4f92aa409fed12f89eee53a82b64c914c4b",
- "deps": ["devkit"]
- },
- {
- "file": "packages/jest/src/generators/jest-project/lib/update-jestconfig.ts",
- "hash": "660b244dc684278d8ef31e55b1bb26454ddf5716",
- "deps": ["devkit"]
- },
- {
- "file": "packages/jest/src/generators/jest-project/lib/update-tsconfig.ts",
- "hash": "4a0c5f5e152f3db3306b94a8003b17dbf89dddbb",
- "deps": ["devkit"]
- },
- {
- "file": "packages/jest/src/generators/jest-project/lib/update-workspace.ts",
- "hash": "26cd6270d088c74fe078f5c0bf4ece39444ec828",
- "deps": ["devkit"]
- },
- {
- "file": "packages/jest/src/generators/jest-project/schema.d.ts",
- "hash": "b503aa7d131613ff605a6246f562d79484d602cf"
- },
- {
- "file": "packages/jest/src/generators/jest-project/schema.json",
- "hash": "6fbca26a1a9e9570cf8f3463caa9efb7a1b4e2ec"
- },
- {
- "file": "packages/jest/src/migrations/update-12-1-2/update-jest-preset-angular.ts",
- "hash": "6bfdaaa6102df1a4bbf702d28d4969a946543795",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/jest/src/migrations/update-12-1-2/update-ts-jest.ts",
- "hash": "370f968a256c0fb426970f9546141c6215c10e7c",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/jest/src/migrations/update-12-4-0/add-test-environment-for-node.ts",
- "hash": "eb0c723f067e0054d40ab32c70b086073820fa26",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/jest/src/migrations/update-12-4-0/update-jest-preset-angular.ts",
- "hash": "bc5e7bc917805ddcac315b4388ae1c83332f23c6",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/jest/src/migrations/update-12-6-0/update-base-jest-config.spec.ts",
- "hash": "eb4bce7179be1c7d34f1e4568df065de9d300386",
- "deps": ["devkit", "npm:prettier"]
- },
- {
- "file": "packages/jest/src/migrations/update-12-6-0/update-base-jest-config.ts",
- "hash": "f4a689d8d85b9bcc83a5a3d1d7e0e29ec25ffdd5",
- "deps": ["devkit"]
- },
- {
- "file": "packages/jest/src/migrations/update-13-1-2/update-tsconfigs-for-tests.spec.ts",
- "hash": "362ae3f2d380d117b8cd81a1938df03af8a205fe",
- "deps": ["devkit"]
- },
- {
- "file": "packages/jest/src/migrations/update-13-1-2/update-tsconfigs-for-tests.ts",
- "hash": "729077726f5a83923a004b811646e67b283ef215",
- "deps": ["workspace", "devkit"]
- },
- {
- "file": "packages/jest/src/migrations/update-13-4-4/add-missing-root-babel-config.spec.ts",
- "hash": "ba698ee3c40c4aa05eb17390ffedb060ab62588b",
- "deps": ["devkit"]
- },
- {
- "file": "packages/jest/src/migrations/update-13-4-4/add-missing-root-babel-config.ts",
- "hash": "46e773d0000fcd6eda54b8780e61b7d088665ac8",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/jest/src/migrations/update-14-0-0/__snapshots__/update-jest-config-ext.spec.ts.snap",
- "hash": "6b60da1d51d4b812f2742e004c826892cea4b551"
- },
- {
- "file": "packages/jest/src/migrations/update-14-0-0/update-jest-config-ext.spec.ts",
- "hash": "c2c404892740142d266f06cefa0fd22011ade718",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/jest/src/migrations/update-14-0-0/update-jest-config-ext.ts",
- "hash": "6416a7452d211418644484537b89cdf24fab2477",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/jest/src/migrations/update-14-1-5/__snapshots__/update-exports-jest-config.spec.ts.snap",
- "hash": "af142b5a2ca9bdeaba4325ffd7d2d49e48d99683"
- },
- {
- "file": "packages/jest/src/migrations/update-14-1-5/update-exports-jest-config.spec.ts",
- "hash": "a0552fb516a78ab44a9801928c0892fdad9f0059",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/jest/src/migrations/update-14-1-5/update-exports-jest-config.ts",
- "hash": "1befefbeaddffd0a741da679d2f3126778c2b41a",
- "deps": [
- "devkit",
- "workspace",
- "npm:@phenomnomnominal/tsquery",
- "npm:typescript"
- ]
- },
- {
- "file": "packages/jest/src/migrations/update-14-6-0/update-configs-jest-28.spec.ts",
- "hash": "b643f0793831c771222f4ae302b19e90489d7390",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/jest/src/migrations/update-14-6-0/update-configs-jest-28.ts",
- "hash": "8b15c9ddd621b94af8a515e05fb0fc262297e3cf",
- "deps": [
- "devkit",
- "workspace",
- "npm:@phenomnomnominal/tsquery",
- "npm:typescript"
- ]
- },
- {
- "file": "packages/jest/src/migrations/update-14-6-0/update-tests-jest-28.spec.ts",
- "hash": "fe9aa035982f24ef9719b7399e29ae4de396b855",
- "deps": ["devkit", "workspace", "nx"]
- },
- {
- "file": "packages/jest/src/migrations/update-14-6-0/update-tests-jest-28.ts",
- "hash": "4f9326f838e8237cd3ce628e5cbb1a10758b26b5",
- "deps": [
- "devkit",
- "workspace",
- "npm:@phenomnomnominal/tsquery",
- "npm:typescript"
- ]
- },
- {
- "file": "packages/jest/src/migrations/utils/config/legacy/functions.ts",
- "hash": "281ebc454168ce8cf50530201b6cf4ac7c42bb22",
- "deps": [
- "npm:typescript",
- "workspace",
- "npm:@angular-devkit/schematics",
- "devkit"
- ]
- },
- {
- "file": "packages/jest/src/migrations/utils/config/legacy/update-config.spec.ts",
- "hash": "2157076c62e7ea5dd3896ae03d4654e65cecea46",
- "deps": ["npm:@angular-devkit/schematics"]
- },
- {
- "file": "packages/jest/src/migrations/utils/config/legacy/update-config.ts",
- "hash": "bb154f7dab9ba63624e57864c4ef2f559da518b0",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/jest/src/utils/config/__snapshots__/functions.spec.ts.snap",
- "hash": "b8019bb491bbaf4e5373b80e69491226557a7b6d"
- },
- {
- "file": "packages/jest/src/utils/config/find-root-jest-files.ts",
- "hash": "1edd1a8793f41823923e21168681396938ca8ec2",
- "deps": ["devkit"]
- },
- {
- "file": "packages/jest/src/utils/config/functions.spec.ts",
- "hash": "1982a9330b72662da78f95f38e0564adbdc8aea4",
- "deps": ["devkit"]
- },
- {
- "file": "packages/jest/src/utils/config/functions.ts",
- "hash": "571ed6cc02ab58cf3c43b21b8477e39794e1858f",
- "deps": ["npm:typescript", "devkit"]
- },
- {
- "file": "packages/jest/src/utils/config/get-jest-projects.spec.ts",
- "hash": "f544c280773c0fed524f4ccd9b98ab152d4f5ab4",
- "deps": ["nx", "devkit"]
- },
- {
- "file": "packages/jest/src/utils/config/get-jest-projects.ts",
- "hash": "c282d30e6c796d9a032f89cef0ea835b676a3305",
- "deps": ["devkit", "nx"]
- },
- {
- "file": "packages/jest/src/utils/config/update-config.spec.ts",
- "hash": "b788b7331e46fef3bf344aa15a2b64d125aa908a",
- "deps": ["devkit"]
- },
- {
- "file": "packages/jest/src/utils/config/update-config.ts",
- "hash": "f7cebd71290a329c0ea82a625d7fa4dba21c06b7",
- "deps": ["devkit"]
- },
- {
- "file": "packages/jest/src/utils/testing.ts",
- "hash": "a5518ee18fb80e399cdd571b09af8b5efe0b42fa",
- "deps": ["npm:@angular-devkit/schematics"]
- },
- {
- "file": "packages/jest/src/utils/versions.ts",
- "hash": "46a8e4c375037519075b70b7242f9ad0ca916e20"
- },
- {
- "file": "packages/jest/tsconfig.json",
- "hash": "58bd2c97a66f5e5ea5d05c8a5709ee79bad02094"
- },
- {
- "file": "packages/jest/tsconfig.lib.json",
- "hash": "5c589aef9e7c76c6bd9a4eea2464ea8a75508919"
- },
- {
- "file": "packages/jest/tsconfig.spec.json",
- "hash": "46f9467f3bd81cb7ec6abc5dcec5c1d35c42f28a"
- }
- ]
- }
- },
- {
- "name": "nest",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/nest",
- "files": [
- {
- "file": "packages/nest/.eslintrc.json",
- "hash": "8b5501b5f63f971197d474d0c777bc984058ae21"
- },
- {
- "file": "packages/nest/generators.json",
- "hash": "71271f4710abd567a102dae6992131d78255efc9"
- },
- {
- "file": "packages/nest/index.ts",
- "hash": "f7d82a3abc6581231d8ebdda5fbc299e8ef946c1"
- },
- {
- "file": "packages/nest/jest.config.ts",
- "hash": "a6f7bbd8a2b4e10826f4cd0d3af630c76f3bac51"
- },
- {
- "file": "packages/nest/migrations.json",
- "hash": "ca5e8ffd86bd3d9c0a86b6b967d60e4cf8b1d6e5"
- },
- {
- "file": "packages/nest/migrations.spec.ts",
- "hash": "1467fb66ab5ac290d57b1bc08e32d9a231297629"
- },
- {
- "file": "packages/nest/package.json",
- "hash": "4d055f3c9aabb3d9814485734f0b0211d2f87376",
- "deps": [
- "npm:@nestjs/schematics",
- "devkit",
- "jest",
- "js",
- "linter",
- "node"
- ]
- },
- {
- "file": "packages/nest/project.json",
- "hash": "c821c8d6a3d0325c7b3369dd624b5f133f5586f6"
- },
- {
- "file": "packages/nest/README.md",
- "hash": "ce9503792cbf4d3078f08c8f1617ce9a0b107bc0"
- },
- {
- "file": "packages/nest/src/generators/application/application.spec.ts",
- "hash": "c805451f985d567ffb4d0a23ac8b4f004b2fee55",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/application/application.ts",
- "hash": "5daffb6559c4bff79be4c1adf4dbe3af0258fcd3",
- "deps": ["devkit", "node", "workspace"]
- },
- {
- "file": "packages/nest/src/generators/application/files/app/app.controller.spec.ts__tmpl__",
- "hash": "a99a57355c9312018484b2e60f07a1d05515c66c"
- },
- {
- "file": "packages/nest/src/generators/application/files/app/app.controller.ts__tmpl__",
- "hash": "dff210a841eb3893066314660135eb0c534f041d"
- },
- {
- "file": "packages/nest/src/generators/application/files/app/app.module.ts__tmpl__",
- "hash": "6a9bc166d35090df009e0fa74bf4a9a9d740028a"
- },
- {
- "file": "packages/nest/src/generators/application/files/app/app.service.spec.ts__tmpl__",
- "hash": "c35c26984b7f959d7bf34636196a018dbebfda5a"
- },
- {
- "file": "packages/nest/src/generators/application/files/app/app.service.ts__tmpl__",
- "hash": "1f5dc013bc8937d8ea2721620dfcd57e057f4448"
- },
- {
- "file": "packages/nest/src/generators/application/files/main.ts__tmpl__",
- "hash": "ca302bb811e324e14d12ac9124ed5219b4a0f17e"
- },
- {
- "file": "packages/nest/src/generators/application/lib/create-files.ts",
- "hash": "db6dc5ba27397d85c60805fda8e870bc622b9050",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/application/lib/index.ts",
- "hash": "06951360844239be6a5d60ee2b1772cecdbabd84"
- },
- {
- "file": "packages/nest/src/generators/application/lib/normalize-options.ts",
- "hash": "51cc73b3c6d9dd8edf1cf1f778f47a284677c266",
- "deps": ["devkit", "linter", "node"]
- },
- {
- "file": "packages/nest/src/generators/application/lib/update-tsconfig.ts",
- "hash": "d9383ff0ac05db365b7d7d94c3c943b3b80edd50",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/application/schema.d.ts",
- "hash": "f7bfeac433157eae0209b8f4d4ec90b4e686ff7d",
- "deps": ["linter"]
- },
- {
- "file": "packages/nest/src/generators/application/schema.json",
- "hash": "11794f0433ff68db191abc897adc195d515018aa"
- },
- {
- "file": "packages/nest/src/generators/class/class.spec.ts",
- "hash": "be7596829e5be26acc3d6cc5a4d71d51c413b523",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/class/class.ts",
- "hash": "cd58873713e490f8e6a78f8f3a2d2071cf658dd7",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/class/schema.json",
- "hash": "59843a08f267660a379f1acc626c69ca26cae8ff"
- },
- {
- "file": "packages/nest/src/generators/controller/controller.spec.ts",
- "hash": "eb33cf0320654166d45df39bc0d02de32cddc4d1",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/controller/controller.ts",
- "hash": "cc72f0466a9a433e64ff002d3fbb8ab0f6917cda",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/controller/schema.json",
- "hash": "a93969679f0b96aaaf2f59207e2c602bfb8df262"
- },
- {
- "file": "packages/nest/src/generators/convert-tslint-to-eslint/__snapshots__/convert-tslint-to-eslint.spec.ts.snap",
- "hash": "4a8d624aa79522a890bbeaf95034906d1afe9365"
- },
- {
- "file": "packages/nest/src/generators/convert-tslint-to-eslint/convert-tslint-to-eslint.spec.ts",
- "hash": "66eefc0cacc10fca04a0ec3e2a33d65f1bf71d08",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/nest/src/generators/convert-tslint-to-eslint/convert-tslint-to-eslint.ts",
- "hash": "a1751f46b20f03f5bb0c31c8ca03fcbc4eecfe16",
- "deps": ["devkit", "linter", "node", "workspace", "npm:eslint"]
- },
- {
- "file": "packages/nest/src/generators/convert-tslint-to-eslint/schema.json",
- "hash": "b728083f6ebb1ea27b7c055df547bebafcbbd8f9"
- },
- {
- "file": "packages/nest/src/generators/decorator/decorator.spec.ts",
- "hash": "a734ede264980d9035148aabd78c127c7aee856b",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/decorator/decorator.ts",
- "hash": "83d8674412cf4374ae3c068b96445696a9bd212a",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/decorator/schema.json",
- "hash": "cf3701048acfd3a26e1d3e2952f35d226d33ca6c"
- },
- {
- "file": "packages/nest/src/generators/filter/filter.spec.ts",
- "hash": "caf4f093f96591d9128633300607e932a885ed83",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/filter/filter.ts",
- "hash": "445cae1a555dbd1dbdc6ff261bd5470d7e83be7c",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/filter/schema.json",
- "hash": "789438b6127e6ba856c7d98317bed96805d7e807"
- },
- {
- "file": "packages/nest/src/generators/gateway/gateway.spec.ts",
- "hash": "3304ad0a1fd5604eba8ef51ee6e3ad2fbd1b46a3",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/gateway/gateway.ts",
- "hash": "5a383215354056057c448c30b2fa0fdec08ea3b0",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/gateway/schema.json",
- "hash": "d6e835fe4fab163c6b5024ae7d33418556088cd4"
- },
- {
- "file": "packages/nest/src/generators/guard/guard.spec.ts",
- "hash": "95a6e73a28f6acd0298d6151760022f99dd08553",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/guard/guard.ts",
- "hash": "71d015d2b997afab7d41a3d706ae86054d427adf",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/guard/schema.json",
- "hash": "e2b078955a39d9de8b6b7ec4c1902975df2e144d"
- },
- {
- "file": "packages/nest/src/generators/init/init.spec.ts",
- "hash": "3c2bc9e203ff9c472279ddfd78fcc42fb3515dcb",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/init/init.ts",
- "hash": "b196db03a2e561a90bc62f9a1a784acd3c21732d",
- "deps": ["devkit", "node", "workspace"]
- },
- {
- "file": "packages/nest/src/generators/init/lib/add-dependencies.ts",
- "hash": "9011a765ceac162858ebc9be0845b5d46c26413c",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/init/lib/index.ts",
- "hash": "abf7c4abf441a15c017914c2d46a832dfb02b085"
- },
- {
- "file": "packages/nest/src/generators/init/lib/normalize-options.ts",
- "hash": "f825f4e3e18609025be70c838b9a9c3af9cebce1"
- },
- {
- "file": "packages/nest/src/generators/init/schema.d.ts",
- "hash": "2967c2b490c5c825ceb343cd00019e00b4b57e2f"
- },
- {
- "file": "packages/nest/src/generators/init/schema.json",
- "hash": "b6012046d2822603eaca895566dc32f24d57a846"
- },
- {
- "file": "packages/nest/src/generators/interceptor/interceptor.spec.ts",
- "hash": "1fd036b1d4136bf37a911c74418c566dce48e20c",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/interceptor/interceptor.ts",
- "hash": "aa0f35c61434acc4269591a8055cc893f13db6ae",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/interceptor/schema.json",
- "hash": "8a84a9353fcd53f836f9e858b404767f2fa52b05"
- },
- {
- "file": "packages/nest/src/generators/interface/interface.spec.ts",
- "hash": "a21e9e0abb7857afc6bc6b38b16dd671ee950b37",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/interface/interface.ts",
- "hash": "df1e25e96f47b36e0c5773535b058043d970209a",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/interface/schema.json",
- "hash": "d0a1efda5651fb2699b37c3b6ec224c8948f0548"
- },
- {
- "file": "packages/nest/src/generators/library/__snapshots__/library.spec.ts.snap",
- "hash": "e6a45c591e7f901eb01ef5015df975d9282d07db"
- },
- {
- "file": "packages/nest/src/generators/library/files/common/src/lib/__fileName__.module.ts__tmpl__",
- "hash": "72f803785b45d49e87d4067327aa69c25d0ec584"
- },
- {
- "file": "packages/nest/src/generators/library/files/controller/src/lib/__fileName__.controller.spec.ts__tmpl__",
- "hash": "a70f129a4267a50722581b25b308430c6f2bea72"
- },
- {
- "file": "packages/nest/src/generators/library/files/controller/src/lib/__fileName__.controller.ts__tmpl__",
- "hash": "aa2d6464be399a631d15f58f703b9875cb825e1a"
- },
- {
- "file": "packages/nest/src/generators/library/files/service/src/lib/__fileName__.service.spec.ts__tmpl__",
- "hash": "7575812b580b9531748174045c491fe7d0bbc593"
- },
- {
- "file": "packages/nest/src/generators/library/files/service/src/lib/__fileName__.service.ts__tmpl__",
- "hash": "a89648b7de413ea40dd1f6f9159771c3e570e22b"
- },
- {
- "file": "packages/nest/src/generators/library/lib/add-exports-to-barrel.ts",
- "hash": "5aa95674d58fc61b40629369590c9a54ba8157e9",
- "deps": ["devkit", "workspace", "npm:typescript"]
- },
- {
- "file": "packages/nest/src/generators/library/lib/add-project.ts",
- "hash": "ca0d1df885ccab4d61314c2a41a66336cef40ccf",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/library/lib/create-files.ts",
- "hash": "5042e487a7c08d8f18091e3abe90bdc43e92d0ae",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/library/lib/delete-files.ts",
- "hash": "2d8485ccbbe44e6cd118c107e6e59820986d20c5",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/library/lib/index.ts",
- "hash": "ff664ca51ac551907b07f0df6c36eda95dd78681"
- },
- {
- "file": "packages/nest/src/generators/library/lib/normalize-options.ts",
- "hash": "e4a9cac1db32c89c2e97858a74fee5279fd4f3f9",
- "deps": ["devkit", "js", "linter"]
- },
- {
- "file": "packages/nest/src/generators/library/lib/update-tsconfig.ts",
- "hash": "b95d1d91b26d96fffb9e6337c306b83329d27fa8",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/library/library.spec.ts",
- "hash": "b6b95bf258e362acd386e29c919ea7e56255c20d",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/library/library.ts",
- "hash": "471f59dc631dec707f2916d0757b5f10da44e605",
- "deps": ["devkit", "js", "workspace"]
- },
- {
- "file": "packages/nest/src/generators/library/schema.d.ts",
- "hash": "2da8db1ae7e06179267d683afb0c8672b729ebec",
- "deps": ["linter"]
- },
- {
- "file": "packages/nest/src/generators/library/schema.json",
- "hash": "a3fcbdcd0006d78ceaa35d4cf6bd2592bae4e5ef"
- },
- {
- "file": "packages/nest/src/generators/middleware/middleware.spec.ts",
- "hash": "3e3d983167d7412f354e1c95067c29214e2f45ad",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/middleware/middleware.ts",
- "hash": "1b74c4a87af3f2d456be9bcb6ca11924b3dbbb0a",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/middleware/schema.json",
- "hash": "e321422e74b346ee70310f4020d2d53a4a779ccc"
- },
- {
- "file": "packages/nest/src/generators/module/module.spec.ts",
- "hash": "67c408a9e192472e89908515123052b7d0ec3e9e",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/module/module.ts",
- "hash": "80e7595d6e45185d2b953789794a27dc3f249093",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/module/schema.json",
- "hash": "5c2d7932f23612d4c3221a8e6b76c6a91af62e59"
- },
- {
- "file": "packages/nest/src/generators/pipe/pipe.spec.ts",
- "hash": "8b33d81bbe1ff7f14b5fee61f20a5ee714e00d66",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/pipe/pipe.ts",
- "hash": "5f032fd042c8db34c49160dfd95e1eaf30bf7803",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/pipe/schema.json",
- "hash": "eb1fb098b387b5d91966baae4e776c83f0130bd7"
- },
- {
- "file": "packages/nest/src/generators/provider/provider.spec.ts",
- "hash": "605e8434c4418ed4476c8e4aa8c582a8b77ed555",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/provider/provider.ts",
- "hash": "45825a1da9af4fac8248a1ba695bca843f916c39",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/provider/schema.json",
- "hash": "2037be30f5e4bbe4e2c2cdb0f37d38365c5d69c0"
- },
- {
- "file": "packages/nest/src/generators/resolver/resolver.spec.ts",
- "hash": "d8fb20d061adb52b5a04e51a331cf2b7f7d7be31",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/resolver/resolver.ts",
- "hash": "e8377fac2c7513b44cd958d3bd984877065c3898",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/resolver/schema.json",
- "hash": "86e40cdf31ed931e030faf348c4d3377cf98ba4e"
- },
- {
- "file": "packages/nest/src/generators/resource/resource.spec.ts",
- "hash": "27aeb4c78bf0333aecca5a0fb4de1066d2cfc887",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/resource/resource.ts",
- "hash": "628a92e01e1094e58a098b36435f051a14b68352",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/resource/schema.json",
- "hash": "bfcb425aaad723f669889ffa4e94c56e4a5f4b12"
- },
- {
- "file": "packages/nest/src/generators/service/schema.json",
- "hash": "64b9fcbae58794139ca4e53aa3d5424fb7502039"
- },
- {
- "file": "packages/nest/src/generators/service/service.spec.ts",
- "hash": "97e347a305f8d407c06f64d6e4b23b843c3b803c",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/service/service.ts",
- "hash": "71f0e0f311598f72f18eb1b72f80374ff5e1ec1d",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/utils/index.ts",
- "hash": "5ed9c21c4bf0078f8e4335704651168c1d27f570"
- },
- {
- "file": "packages/nest/src/generators/utils/normalize-options.ts",
- "hash": "c440398ff2e26827ff193275c4cf802b28ceaeb3",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/utils/run-nest-schematic.spec.ts",
- "hash": "4eacbee1ece1ec9f3bec4e10ac1e02cde26ef004",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/utils/run-nest-schematic.ts",
- "hash": "d1915b881ca1f662ae62d96a71ca940fad109578",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/utils/testing.ts",
- "hash": "920c91ebbc4cc54ce80b59e062f1dd60fce3f89f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/nest/src/generators/utils/types.ts",
- "hash": "03ae3f19330dc0ea9412bb8bb3774b276d4b9ccb"
- },
- {
- "file": "packages/nest/src/migrations/update-10-0-0/update-10-0-0.ts",
- "hash": "79dd5cc9a43850f1c44e3e098bc1b24ce1694423",
- "deps": [
- "npm:@angular-devkit/schematics",
- "workspace",
- "npm:typescript",
- "npm:ignore"
- ]
- },
- {
- "file": "packages/nest/src/migrations/update-13-2-0/update-to-nest-8.ts",
- "hash": "d0e9f732cb62af014fc0b8295e9d3fc8e5cf6ffa",
- "deps": ["devkit", "workspace", "npm:semver", "npm:enquirer"]
- },
- {
- "file": "packages/nest/src/migrations/update-8-7-0/update-8-7-0.ts",
- "hash": "2238636f91a66f9e236d13e73a0fb9c6a607d0f7",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/nest/src/utils/versions.ts",
- "hash": "5e6fcad1faab878dff7b95846ce5743556d55987"
- },
- {
- "file": "packages/nest/tsconfig.json",
- "hash": "58bd2c97a66f5e5ea5d05c8a5709ee79bad02094"
- },
- {
- "file": "packages/nest/tsconfig.lib.json",
- "hash": "1d2ddef3c1be3aa86cb55b66b9c912d3c6bf1a07"
- },
- {
- "file": "packages/nest/tsconfig.spec.json",
- "hash": "869c90c526a0fe7b4b32c39d3989c66259545d9a"
- }
- ]
- }
- },
- {
- "name": "next",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/next",
- "files": [
- {
- "file": "packages/next/.eslintrc.json",
- "hash": "4a142b79a6e0fb6e747a610ee63cdd78a9bf416b"
- },
- {
- "file": "packages/next/babel.ts",
- "hash": "7297bb80f78a717b684282b5f3244023b3bced7a"
- },
- {
- "file": "packages/next/executors.json",
- "hash": "35f5ee9375b1b8ebea1de9058fd81a9559389338"
- },
- {
- "file": "packages/next/generators.json",
- "hash": "cabfd86d53426dc0ee9adab1e3c681ca8abdd696"
- },
- {
- "file": "packages/next/index.ts",
- "hash": "dec99640c0ca4ec2253c868bffdb604724b3c245"
- },
- {
- "file": "packages/next/jest.config.ts",
- "hash": "060bb7efe609ea20f5c25e6951f45c6056e8dc70"
- },
- {
- "file": "packages/next/migrations.json",
- "hash": "997ccdb4582b37e589a955301d1c1bb83d9920d3"
- },
- {
- "file": "packages/next/migrations.spec.ts",
- "hash": "1e4ac6bcf95d9e6b699a79617602eaf1dfc69f65"
- },
- {
- "file": "packages/next/package.json",
- "hash": "c062fc9e8dc40688c396cbc2ce5bc48e345cbc1a",
- "deps": [
- "cypress",
- "devkit",
- "jest",
- "linter",
- "react",
- "web",
- "workspace",
- "npm:@svgr/webpack",
- "npm:chalk",
- "npm:dotenv",
- "npm:eslint-config-next",
- "npm:fs-extra",
- "npm:ignore",
- "npm:semver",
- "npm:ts-node",
- "npm:tsconfig-paths",
- "npm:url-loader",
- "npm:webpack-merge",
- "npm:next"
- ]
- },
- {
- "file": "packages/next/plugins/with-less.ts",
- "hash": "7651e320e88bf63a4746ddffe7a52a3a1dabeb59",
- "deps": ["npm:webpack-merge", "npm:next"]
- },
- {
- "file": "packages/next/plugins/with-nx.ts",
- "hash": "b514058a014afb36f8dab665e8a9d27fed7e17f1",
- "deps": ["npm:next", "devkit", "npm:@nrwl/next"]
- },
- {
- "file": "packages/next/plugins/with-stylus.ts",
- "hash": "f3a6bbd478d02c0e9940e4ebe3ab662456b53ebe",
- "deps": ["npm:webpack-merge", "npm:next"]
- },
- {
- "file": "packages/next/project.json",
- "hash": "418a845de57b973d951815f9356791bdb3dabc5b"
- },
- {
- "file": "packages/next/README.md",
- "hash": "7cb5ef3cabb37a3b662288f7e9c41a71ec5a0991"
- },
- {
- "file": "packages/next/src/executors/build/build.impl.ts",
- "hash": "bc3ad5be78ea4552abd720741a2a5358b4a3bd24",
- "deps": [
- "npm:dotenv",
- "devkit",
- "npm:next",
- "npm:fs-extra",
- "npm:semver",
- "workspace"
- ]
- },
- {
- "file": "packages/next/src/executors/build/compat.ts",
- "hash": "477ba0be5f653b607cb16d690a4a97b732e7df29",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/executors/build/lib/check-project.ts",
- "hash": "7ca8fcb024ce015c9f5a65c4e5a692bd4bdf9981",
- "deps": ["devkit", "npm:fs-extra"]
- },
- {
- "file": "packages/next/src/executors/build/lib/create-next-config-file.ts",
- "hash": "b28948ae2be2670c4975ce945789cc7c42ed1d9f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/executors/build/lib/create-package-json.ts",
- "hash": "2d28b9dc192906ed4306289d76d873e628712903",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/next/src/executors/build/schema.json",
- "hash": "aebfa724d7e2c2ca53dc7f092507d20e902fcf22"
- },
- {
- "file": "packages/next/src/executors/export/compat.ts",
- "hash": "7bc584476207acf6139fbd5db62f0e73df66df0b",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/executors/export/export.impl.ts",
- "hash": "d838836c1d1c6309daa6c13717d217bd68faa67e",
- "deps": ["npm:dotenv", "devkit", "npm:next", "workspace"]
- },
- {
- "file": "packages/next/src/executors/export/schema.json",
- "hash": "f8981144cc52656a28220b6af1ca81948b66405f"
- },
- {
- "file": "packages/next/src/executors/server/compat.ts",
- "hash": "c70f628f39422faa701c618a0b177c996b9c8297",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/executors/server/lib/custom-server.ts",
- "hash": "2b516a4857010c9168356b940c05ef34d664648e",
- "deps": ["devkit", "npm:next"]
- },
- {
- "file": "packages/next/src/executors/server/lib/default-server.ts",
- "hash": "72fe9948f25db50349280e60abbf680b4d2f3a77",
- "deps": ["npm:express", "npm:next"]
- },
- {
- "file": "packages/next/src/executors/server/lib/tsnode-register.ts",
- "hash": "6cfd836fc438547a49788f9c31c95fd3d9618a54",
- "deps": ["npm:ts-node", "npm:tsconfig-paths"]
- },
- {
- "file": "packages/next/src/executors/server/schema.json",
- "hash": "26954547baeb81d32909c1e58140245eec65aa61"
- },
- {
- "file": "packages/next/src/executors/server/server.impl.ts",
- "hash": "53a50d1eec58f85dea778422591d219c4502f653",
- "deps": ["npm:dotenv", "devkit", "npm:chalk", "workspace"]
- },
- {
- "file": "packages/next/src/generators/application/application.spec.ts",
- "hash": "656bd5fa931f047adb17726c113fd0de7c3cdc69",
- "deps": ["linter", "devkit"]
- },
- {
- "file": "packages/next/src/generators/application/application.ts",
- "hash": "3ab94d6770b28e3edbd4582565a76ff661c8c4f9",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/next/src/generators/application/files/.babelrc__tmpl__",
- "hash": "d9daea395c5c6d759cf52ec298af44d5ac5f9e20"
- },
- {
- "file": "packages/next/src/generators/application/files/index.d.ts__tmpl__",
- "hash": "090fbbce202293a3392154042f5bdffbeb1f6433"
- },
- {
- "file": "packages/next/src/generators/application/files/next-env.d.ts__tmpl__",
- "hash": "4f11a03dc6cc37f2b5105c08f2e7b24c603ab2f4"
- },
- {
- "file": "packages/next/src/generators/application/files/next.config.js__tmpl__",
- "hash": "fcc4650a987bd517a3650ea0021f90d5d5ac2bf1"
- },
- {
- "file": "packages/next/src/generators/application/files/pages/__fileName__.module.__style__",
- "hash": "40d88f3d797b7c4c53d94251e16448d68da0804c"
- },
- {
- "file": "packages/next/src/generators/application/files/pages/__fileName__.tsx__tmpl__",
- "hash": "0c9a7f8cb1ddfcaa021d786a2fa20c93c6762ab7"
- },
- {
- "file": "packages/next/src/generators/application/files/pages/_app.tsx__tmpl__",
- "hash": "4711aff36e193001f7fc0967670e3f7fd423c6d1"
- },
- {
- "file": "packages/next/src/generators/application/files/pages/_document.tsx__tmpl__",
- "hash": "5028c978e5aec1c44ccae501c03baf406eb4bcb3"
- },
- {
- "file": "packages/next/src/generators/application/files/pages/styles.__stylesExt____tmpl__",
- "hash": "c3f24863cb43429c3989f12e685c0a46f1f29bd7"
- },
- {
- "file": "packages/next/src/generators/application/files/public/.gitkeep",
- "hash": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"
- },
- {
- "file": "packages/next/src/generators/application/files/specs/__fileName__.spec.tsx__tmpl__",
- "hash": "42c94022afd1c1c396f85b24a08d75984b8adb9c"
- },
- {
- "file": "packages/next/src/generators/application/files/tsconfig.json__tmpl__",
- "hash": "6bfedf649eed0e0f43bf91d5c09bb47f9f42df5f"
- },
- {
- "file": "packages/next/src/generators/application/lib/add-cypress.ts",
- "hash": "33ac31ffa759b78d84949ad5fce4a8884d16a1c7",
- "deps": ["cypress", "devkit", "linter"]
- },
- {
- "file": "packages/next/src/generators/application/lib/add-jest.ts",
- "hash": "3237a4ebb664ff311cbd7c70623e5a7110b59d66",
- "deps": ["devkit", "jest"]
- },
- {
- "file": "packages/next/src/generators/application/lib/add-linting.ts",
- "hash": "95be3560fa48389e80a6f69ad7f2097a775c099e",
- "deps": ["linter", "devkit", "react", "workspace"]
- },
- {
- "file": "packages/next/src/generators/application/lib/add-project.ts",
- "hash": "a99e9766cb978ff86576b146f08876fda2685420",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/generators/application/lib/create-application-files.helpers.ts",
- "hash": "31ac728948215fc8018ddff010b0fa8e5ba148fb"
- },
- {
- "file": "packages/next/src/generators/application/lib/create-application-files.ts",
- "hash": "6b369bc4a6767b64ef53f80a26386105444608e8",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/next/src/generators/application/lib/create-next-server-files.ts",
- "hash": "e379f963d2f97871f9c2db6c29ec8b7774db72af",
- "deps": ["devkit", "npm:next"]
- },
- {
- "file": "packages/next/src/generators/application/lib/normalize-options.ts",
- "hash": "bd4d16d3b1dea37bc61e12ae2d5c77004de297cb",
- "deps": ["react", "devkit", "linter"]
- },
- {
- "file": "packages/next/src/generators/application/lib/set-defaults.ts",
- "hash": "3392cdc01f23ee2c557a8f703d42678afe5262dd",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/generators/application/lib/update-jest-config.ts",
- "hash": "e776f44b7b2cba6c2dc6944a422538877abd0633",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/generators/application/schema.d.ts",
- "hash": "d41b279e2767096da88e997da6ae6ca6835dcbaf",
- "deps": ["linter", "react"]
- },
- {
- "file": "packages/next/src/generators/application/schema.json",
- "hash": "3df88fe28bb32ddada583ceddc47b739f7357fbf"
- },
- {
- "file": "packages/next/src/generators/component/component.spec.ts",
- "hash": "87b16cb9af896b407e4adda738ee5f15a9c3e730",
- "deps": ["devkit", "react", "linter"]
- },
- {
- "file": "packages/next/src/generators/component/component.ts",
- "hash": "e0e613abcd7da193c29bd5bb1e73650deefac980",
- "deps": ["devkit", "react", "workspace"]
- },
- {
- "file": "packages/next/src/generators/component/schema.json",
- "hash": "411a8a2498e929f8023a4a871cd79944c37185e2"
- },
- {
- "file": "packages/next/src/generators/custom-server/custom-server.ts",
- "hash": "7a5d8daff52fec4fdfa779e7c7e64e5ff71ccb73",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/generators/custom-server/files/server/main.ts__tmpl__",
- "hash": "01ffab21ff1582c5de47620bf47ad0338e6e6fb2"
- },
- {
- "file": "packages/next/src/generators/custom-server/files/tsconfig.server.json__tmpl__",
- "hash": "84776020351a944f6c85cbb4c2c60f1ee1e21550"
- },
- {
- "file": "packages/next/src/generators/custom-server/schema.d.ts",
- "hash": "7e30711f6d63b1176557b6a477eb21c57c998b99"
- },
- {
- "file": "packages/next/src/generators/custom-server/schema.json",
- "hash": "76f5ef9134002787de0e65002dd3ec7df5619a75"
- },
- {
- "file": "packages/next/src/generators/init/init.spec.ts",
- "hash": "fbda92ec3acb9abbca92f6e247b78773839fe2bd",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/generators/init/init.ts",
- "hash": "0f08db7e2eedcaea8c96d5c47297d7ef5c0bc670",
- "deps": ["devkit", "workspace", "jest", "cypress", "react"]
- },
- {
- "file": "packages/next/src/generators/init/schema.d.ts",
- "hash": "a0157cab6ecd6c9b1fe63ebc9f69bd73e7d7a9d4"
- },
- {
- "file": "packages/next/src/generators/init/schema.json",
- "hash": "13370bb45af0cc49f0edf2d83ec69b4a9107a91d"
- },
- {
- "file": "packages/next/src/generators/library/library.spec.ts",
- "hash": "23d957e98948c2d04f894bcabf5a71ffce943ecd",
- "deps": ["cypress", "devkit", "linter"]
- },
- {
- "file": "packages/next/src/generators/library/library.ts",
- "hash": "25dbfa1a9d8be57828f1ef9402056d82148ca640",
- "deps": ["devkit", "react", "workspace"]
- },
- {
- "file": "packages/next/src/generators/library/schema.d.ts",
- "hash": "d3da5279f068bda81348de120697a545ef640312",
- "deps": ["linter", "react"]
- },
- {
- "file": "packages/next/src/generators/library/schema.json",
- "hash": "918a019187891e75f6a37ce2a97a9020b6e422fb"
- },
- {
- "file": "packages/next/src/generators/page/page.spec.ts",
- "hash": "34cd2b4a37b252fa8c53aef6524d600f21c441e1",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/generators/page/page.ts",
- "hash": "ecf705fcb11b00ab9de0c3d1807bba0aa23d1042",
- "deps": ["react", "devkit", "workspace"]
- },
- {
- "file": "packages/next/src/generators/page/schema.d.ts",
- "hash": "fb79f60691ebb78ea4411d527b287ddbc63f8dd2",
- "deps": ["react"]
- },
- {
- "file": "packages/next/src/generators/page/schema.json",
- "hash": "e6790c761210d7de4c4062482612bc4f3408ecd7"
- },
- {
- "file": "packages/next/src/migrations/update-10-1-0/update-10-1-0.ts",
- "hash": "9e18196a45cb1f2cfe0504ce2cf724090c8deaf5",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/next/src/migrations/update-11-0-0/rename-emotion-packages-11-0-0.spec.ts",
- "hash": "1f19671b9bdd242315771effc5506d60ee66b8e8",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/next/src/migrations/update-11-0-0/rename-emotion-packages-11-0-0.ts",
- "hash": "4a8d51affbc46b2e528ca2a3cf0fd6b25ec3e612",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/next/src/migrations/update-11-0-0/update-11-0-0.spec.ts",
- "hash": "9d0d6a512860c12a7e8e7ce89973ed6661e2685f",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/next/src/migrations/update-11-0-0/update-11-0-0.ts",
- "hash": "f1e4543f83a75038ceba7f4698f5e5dcdc28218c",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/next/src/migrations/update-11-5-0/remove-tsconfig-app-11-5-0.spec.ts",
- "hash": "c03a9232ef6adb6cc7d5cb32ae20fa7ae148746b",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-11-5-0/remove-tsconfig-app-11-5-0.ts",
- "hash": "e4c4f4a52ebcee1decba30a36f092c0afbbb74f1",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-11-5-0/update-babel-config.spec.ts",
- "hash": "56e24a7764c2591b8ef488e797a690fcebe49502",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-11-5-0/update-babel-config.ts",
- "hash": "47c32090d2bb8e176fccd441db3506c84467b5ac",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-11-6-0/add-js-include-11-6-0.spec.ts",
- "hash": "13f4bcd63fb63ac927a801dc5e6bd5c935e00be7",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-11-6-0/add-js-include-11-6-0.ts",
- "hash": "9ea787bf9b8016ea57eda9980000aee4da25e1b0",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-12-10-0/fix-page-dir-for-eslint.spec.ts",
- "hash": "9fdf98a6513ad10d436c8f0b5c60a9ae67408dc4",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-12-10-0/fix-page-dir-for-eslint.ts",
- "hash": "158c8d79e1a16cdb88df75868c95e141f88b3a54",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-12-6-0/add-next-eslint.spec.ts",
- "hash": "55f5f8e45379cffcb66971597eb86e10791850c1",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-12-6-0/add-next-eslint.ts",
- "hash": "d1dcba9d68f07ba6b758640cf9d2e91a7761bdc2",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-12-8-0/remove-styled-jsx-babel-plugin.spec.ts",
- "hash": "22c0c2b47f53ce6e9111b152b0ff03f6975f33b9",
- "deps": ["devkit", "linter"]
- },
- {
- "file": "packages/next/src/migrations/update-12-8-0/remove-styled-jsx-babel-plugin.ts",
- "hash": "ed63bf3bcc08d400c09bc5cff1254930a9dc1576",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-13-0-0/update-emotion-setup.spec.ts",
- "hash": "6116d1092d6b3709ff30b2fe2775c848e2bf1fc9",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-13-0-0/update-emotion-setup.ts",
- "hash": "36f38d7d05dc752ef7d44339c5a71bcc7fac433c",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-13-0-0/update-to-webpack-5.spec.ts",
- "hash": "5ee7c2bfa8852d7a1391478aa16031cec3771ff5",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-13-0-0/update-to-webpack-5.ts",
- "hash": "1f1ab230f0759e4ff2e7fe3375c2bad8c7980622",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-13-0-3/fix-less.ts",
- "hash": "c8d1be03b24e3adfad51e64c33ae20513b634001",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-13-1-1/enable-swc.spec.ts",
- "hash": "07ce317f3f223b56d8248be50779a0ea6b717be6",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-13-1-1/enable-swc.ts",
- "hash": "187adbfc798385c36047a5dd3dff063ee8cd7a9b",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-14-0-0/add-default-development-configurations.spec.ts",
- "hash": "df341d82b8a31b83f0dc0d7f6741a1ab9c1e19b8",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-14-0-0/add-default-development-configurations.ts",
- "hash": "0242eba1711c677ca7a792020642e9bbcf11764a",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-14-4-3/add-dev-output-path.spec.ts",
- "hash": "d09b8b05590c5a3eb90d49b7a830b75e4766bab7",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-14-4-3/add-dev-output-path.ts",
- "hash": "eaeaabc7af8ca2a3661a79751bd344ee68409f7b",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-14-5-3/add-gitignore-entry.ts",
- "hash": "6f078505f3ead5271cebcaa9d61c459d01ffccb8",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-14-5-3/update-dev-output-path.spec.ts",
- "hash": "9dc5354adab077143ef2ca428557576d9865d428",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-14-5-3/update-dev-output-path.ts",
- "hash": "1bbf5fa94c8f74c61dab78b5e7f70a8e7c049309",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-14-5-7/update-next-eslint.spec.ts",
- "hash": "95e5a343492875229cf811b11dd440eb4924d758",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-14-5-7/update-next-eslint.ts",
- "hash": "e21930a6ad5f9d12bcd1cb8aaf5c3c584eddaeb8",
- "deps": ["devkit"]
- },
- {
- "file": "packages/next/src/migrations/update-8-10-0/update-8-10-0.ts",
- "hash": "44354a45ff6fafe1d9f7a5e3c6fa15e2be6be673",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/next/src/migrations/update-9-2-0/create-next-config.spec.ts",
- "hash": "e7531a62e5b5b4597e5ae4a6fbcfa5cb9fd78b3e",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/next/src/migrations/update-9-2-0/create-next-config.ts",
- "hash": "46f9e8a9989b9c6ecb64e89654416ef3d0b2d7fd",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/next/src/migrations/update-9-3-1/update-9-3-1.ts",
- "hash": "701780ffc8b86ee475b32564c86d963a8b89ebb4",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/next/src/utils/add-gitignore-entry.ts",
- "hash": "561d6201d2b5d6b645cbc2e1ca958a0293d1b3c1",
- "deps": ["nx", "npm:ignore"]
- },
- {
- "file": "packages/next/src/utils/buildable-libs.ts",
- "hash": "a12ae0723dfe75c51455440d36d18ec1c260154b",
- "deps": ["workspace", "npm:chalk", "devkit"]
- },
- {
- "file": "packages/next/src/utils/config-invalid-function.fixture.ts",
- "hash": "cc40a4649c9f7c6cf49dd0092cf1f06bcf727bcd"
- },
- {
- "file": "packages/next/src/utils/config-not-a-function.fixture.ts",
- "hash": "2d1c453106b801311f3658813155d69369599ce3"
- },
- {
- "file": "packages/next/src/utils/config.fixture.ts",
- "hash": "8c33e8ece16f7aed6c22acfdcc7d30917cbb517d"
- },
- {
- "file": "packages/next/src/utils/config.spec.ts",
- "hash": "f507d0f3c617e5ddc57cbbfa25b260c9f9d1d616",
- "deps": ["npm:tsconfig-paths-webpack-plugin", "npm:memfs"]
- },
- {
- "file": "packages/next/src/utils/config.ts",
- "hash": "a01c52eeec29a7d0f44af762cb93975afc68af82",
- "deps": [
- "devkit",
- "npm:next",
- "npm:tsconfig-paths-webpack-plugin",
- "npm:webpack",
- "web",
- "workspace"
- ]
- },
- {
- "file": "packages/next/src/utils/constants.ts",
- "hash": "6276788cd8b47f9208de0a416cad9d766cc2c956",
- "deps": ["npm:next"]
- },
- {
- "file": "packages/next/src/utils/generate-globs.ts",
- "hash": "128da842a07b575ca5e8c2fa84f46ef7ac737ffb",
- "deps": ["devkit", "nx"]
- },
- {
- "file": "packages/next/src/utils/styles.ts",
- "hash": "59af4ab8af5533fec92b196cf352e21eb96f13b4",
- "deps": ["devkit", "react"]
- },
- {
- "file": "packages/next/src/utils/types.ts",
- "hash": "881b7844375ab75440faa40c2ef573e93784f4c6"
- },
- {
- "file": "packages/next/src/utils/versions.ts",
- "hash": "63381120b9860138371c570bdab87e50bddec085"
- },
- {
- "file": "packages/next/tailwind.ts",
- "hash": "09436dfa9a76198192a1c4bac00bdeb1fdbe345c",
- "deps": ["react"]
- },
- {
- "file": "packages/next/tsconfig.json",
- "hash": "58bd2c97a66f5e5ea5d05c8a5709ee79bad02094"
- },
- {
- "file": "packages/next/tsconfig.lib.json",
- "hash": "1d2ddef3c1be3aa86cb55b66b9c912d3c6bf1a07"
- },
- {
- "file": "packages/next/tsconfig.spec.json",
- "hash": "869c90c526a0fe7b4b32c39d3989c66259545d9a"
- },
- {
- "file": "packages/next/typings/image.d.ts",
- "hash": "54ff85aba6b6bd6cfd6f555d4ca4bd8aa571decf",
- "deps": ["npm:react"]
- }
- ]
- }
- },
- {
- "name": "node",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/node",
- "files": [
- {
- "file": "packages/node/.eslintrc.json",
- "hash": "bb098f7edfafeff3462f9eeac6abc26365205807"
- },
- {
- "file": "packages/node/executors.json",
- "hash": "c6fc8f875e10baa019bfa3e425ec74a44d2336a9"
- },
- {
- "file": "packages/node/generators.json",
- "hash": "77bc3079833f56a18d32088ced4c4d313ba6414a"
- },
- {
- "file": "packages/node/index.ts",
- "hash": "642dd5b1260ebc8d1d3b08da1a39ebec932bf344"
- },
- {
- "file": "packages/node/jest.config.ts",
- "hash": "67a45930213d67c3d150bb9bd6e8bbba25650ace"
- },
- {
- "file": "packages/node/migrations.json",
- "hash": "b2dbd2ea0005ded657e12cca149149c8cf035ed6"
- },
- {
- "file": "packages/node/migrations.spec.ts",
- "hash": "4f5aa32bb9ad7f4232f728f97d7b0237474d7caf"
- },
- {
- "file": "packages/node/package.json",
- "hash": "47c9d19eec1e35e884a26baef50ee1bf701b89e9",
- "deps": [
- "devkit",
- "jest",
- "js",
- "linter",
- "workspace",
- "npm:chalk",
- "npm:copy-webpack-plugin",
- "npm:dotenv",
- "npm:enhanced-resolve",
- "npm:fork-ts-checker-webpack-plugin",
- "npm:fs-extra",
- "npm:glob",
- "npm:license-webpack-plugin",
- "npm:rxjs",
- "npm:source-map-support",
- "npm:terser-webpack-plugin",
- "npm:tree-kill",
- "npm:ts-loader",
- "npm:ts-node",
- "npm:tsconfig-paths",
- "npm:tsconfig-paths-webpack-plugin",
- "npm:tslib",
- "npm:webpack",
- "npm:webpack-merge",
- "npm:webpack-node-externals"
- ]
- },
- {
- "file": "packages/node/project.json",
- "hash": "128e2d5d6c1a6641930a4d970ae089fcc32cc49f"
- },
- {
- "file": "packages/node/README.md",
- "hash": "37eb64ddbdbef18069a53a64e26181513e5cfb32"
- },
- {
- "file": "packages/node/src/executors/node/compat.ts",
- "hash": "44014a83a152af632a49566a4bf71e25d4ef7b1d",
- "deps": ["devkit"]
- },
- {
- "file": "packages/node/src/executors/node/node.impl.ts",
- "hash": "e276961b4443fb1725b5ba33a2fb46555190f43f",
- "deps": ["devkit", "js"]
- },
- {
- "file": "packages/node/src/executors/node/schema.json",
- "hash": "5208f43b282855f3f908788d4b4034979417c910"
- },
- {
- "file": "packages/node/src/executors/webpack/compat.ts",
- "hash": "919858b9b3dd79de372dbaeee30a15b126328847",
- "deps": ["devkit"]
- },
- {
- "file": "packages/node/src/executors/webpack/schema.json",
- "hash": "756c74d362cd6dead7f820a1c56f3c4cdd58c05f"
- },
- {
- "file": "packages/node/src/executors/webpack/webpack.impl.spec.ts",
- "hash": "581570ec5569fbd79c46001fa411ab3a97fbf531",
- "deps": ["devkit", "npm:rxjs"]
- },
- {
- "file": "packages/node/src/executors/webpack/webpack.impl.ts",
- "hash": "e5fcfec7f7b223a04f6d09279243194d0321324d",
- "deps": [
- "npm:dotenv",
- "devkit",
- "workspace",
- "npm:rxjs",
- "npm:ts-node"
- ]
- },
- {
- "file": "packages/node/src/generators/application/application.spec.ts",
- "hash": "2eb3797382bb34011e783d9ac2846eb15a9693ee",
- "deps": ["devkit"]
- },
- {
- "file": "packages/node/src/generators/application/application.ts",
- "hash": "ab21b852fb06a418d6cedef1161b8528d42fd2a5",
- "deps": ["devkit", "linter", "jest", "workspace"]
- },
- {
- "file": "packages/node/src/generators/application/files/app/src/app/.gitkeep",
- "hash": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"
- },
- {
- "file": "packages/node/src/generators/application/files/app/src/assets/.gitkeep",
- "hash": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"
- },
- {
- "file": "packages/node/src/generators/application/files/app/src/environments/environment.prod.ts__tmpl__",
- "hash": "3612073bc31cd4c1f5d6cbb00318521e9a61bd8a"
- },
- {
- "file": "packages/node/src/generators/application/files/app/src/environments/environment.ts__tmpl__",
- "hash": "ffe8aed76642585a382f5673e2c08e96de695788"
- },
- {
- "file": "packages/node/src/generators/application/files/app/src/main.ts__tmpl__",
- "hash": "a420803c09eec03f5e419c693d817f785a0b8efa"
- },
- {
- "file": "packages/node/src/generators/application/files/app/tsconfig.app.json",
- "hash": "3a0dc40bcc37d858ef616b13f082f0ada767c97a"
- },
- {
- "file": "packages/node/src/generators/application/files/app/tsconfig.json",
- "hash": "595598eddbf3e9afb57b78e929a72fdddbae66e3"
- },
- {
- "file": "packages/node/src/generators/application/schema.d.ts",
- "hash": "4564398f11aadb649ec2c19e56c634b6c9789505",
- "deps": ["linter"]
- },
- {
- "file": "packages/node/src/generators/application/schema.json",
- "hash": "5171d0b667c6804a020feda7f0930d467949d14c"
- },
- {
- "file": "packages/node/src/generators/init/init.spec.ts",
- "hash": "b329df81f2d5e107b52d0f3ffda55c5c0ca383e8",
- "deps": ["devkit"]
- },
- {
- "file": "packages/node/src/generators/init/init.ts",
- "hash": "88e6a5e0e30c21133fee73aeaf3ee1cad334a767",
- "deps": ["devkit", "jest"]
- },
- {
- "file": "packages/node/src/generators/init/schema.d.ts",
- "hash": "2216c6dbc28bec6a97e3de3df5d7bb9d81df7369"
- },
- {
- "file": "packages/node/src/generators/init/schema.json",
- "hash": "647e7d4248799d11be29259071bc4564e6d85866"
- },
- {
- "file": "packages/node/src/generators/library/files/lib/package.json__tmpl__",
- "hash": "e3a3ad83c46eb57baf768ec2c0e0be269c7bac1c"
- },
- {
- "file": "packages/node/src/generators/library/files/lib/src/lib/__fileName__.spec.ts__tmpl__",
- "hash": "35b0948b95087892cb9694ff9880cf254de6985e"
- },
- {
- "file": "packages/node/src/generators/library/files/lib/src/lib/__fileName__.ts__tmpl__",
- "hash": "87f0f45f164a16721ae12a45855828b815b5bc82"
- },
- {
- "file": "packages/node/src/generators/library/files/lib/tsconfig.lib.json",
- "hash": "fc6648159ee84e0f11e16af33fc37a15c8d3ae6b"
- },
- {
- "file": "packages/node/src/generators/library/library.spec.ts",
- "hash": "6781a110036099f9e48ff9afdbf7da1b4f26fb8e",
- "deps": ["devkit"]
- },
- {
- "file": "packages/node/src/generators/library/library.ts",
- "hash": "5e987ea36becd3fc3fc4d82b209c74d2663e8a59",
- "deps": ["devkit", "nx", "workspace"]
- },
- {
- "file": "packages/node/src/generators/library/schema.d.ts",
- "hash": "682a1c3a1ebc2e7bc4c4de52f4ee536eaa483be1",
- "deps": ["linter"]
- },
- {
- "file": "packages/node/src/generators/library/schema.json",
- "hash": "2ad3588e0e4e8608d70a608d3750b4970153c344"
- },
- {
- "file": "packages/node/src/migrations/update-10-1-0/remove-root-dir.spec.ts",
- "hash": "9c7edc55e1fbac1053807d8bed71d1715124b0c0",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/node/src/migrations/update-10-1-0/remove-root-dir.ts",
- "hash": "e369c9573ceb3ccd34af62b9b68a00892b70aa5f",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/node/src/migrations/update-13-0-0/remove-deprecated-options-13-0-0.spec.ts",
- "hash": "49028716d4f70bfb196813cebd05dff5d92e6e06",
- "deps": ["devkit"]
- },
- {
- "file": "packages/node/src/migrations/update-13-0-0/remove-deprecated-options-13-0-0.ts",
- "hash": "bb2d93deb7d20a311c19ff1a70576bf4e28d5854",
- "deps": ["devkit"]
- },
- {
- "file": "packages/node/src/migrations/update-13-0-0/remove-webpack-5-packages-13-0-0.spec.ts",
- "hash": "d2260fa442811cca54f4bc0c0c5e6fd3a00bed4c",
- "deps": ["devkit"]
- },
- {
- "file": "packages/node/src/migrations/update-13-0-0/remove-webpack-5-packages-13-0-0.ts",
- "hash": "b9b9f61218a6b995b084be379a9910e97b97fb11",
- "deps": ["devkit"]
- },
- {
- "file": "packages/node/src/migrations/update-13-8-5/rename-build-to-webpack.spec.ts",
- "hash": "bce6c77b9aa03f268a3a50ef79c36e3c39353af9",
- "deps": ["devkit"]
- },
- {
- "file": "packages/node/src/migrations/update-13-8-5/rename-build-to-webpack.ts",
- "hash": "159637fcd575f3e15384ec671623f5c1341fde1f",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/node/src/migrations/update-13-8-5/rename-execute-to-node.spec.ts",
- "hash": "ad51fdc9d9af438be55eb7ae1a85be52dc980c29",
- "deps": ["devkit"]
- },
- {
- "file": "packages/node/src/migrations/update-13-8-5/rename-execute-to-node.ts",
- "hash": "f141f18d04bf9781aa05523a3a2a6c5a94b91382",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/node/src/migrations/update-13-8-5/update-package-to-tsc.spec.ts",
- "hash": "663bf7239545cb35d3c6b3870eea12e002202b1e",
- "deps": ["devkit"]
- },
- {
- "file": "packages/node/src/migrations/update-13-8-5/update-package-to-tsc.ts",
- "hash": "f18444500cf080877ee853abffbc73ac6bda7ce7",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/node/src/migrations/update-9-2-0/set-build-libs-from-source.spec.ts",
- "hash": "ed9fe96e9e002fa7d5e48763e182075d62a73f93",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/node/src/migrations/update-9-2-0/set-build-libs-from-source.ts",
- "hash": "9e9a3216d97455012714b219fa37b98bf2f8ee96",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/node/src/utils/__mocks__/plugin-a.ts",
- "hash": "b5131cd5858eedba4cfe0c3b0e951beaa7263d67"
- },
- {
- "file": "packages/node/src/utils/__mocks__/plugin-b.ts",
- "hash": "df5ae8932752c118737c96bc1828d529ba1290aa"
- },
- {
- "file": "packages/node/src/utils/config.ts",
- "hash": "71a428beba10059598176f5180fba2aadd74516b",
- "deps": [
- "workspace",
- "npm:license-webpack-plugin",
- "npm:tsconfig-paths-webpack-plugin",
- "npm:typescript",
- "npm:webpack",
- "npm:copy-webpack-plugin",
- "npm:fork-ts-checker-webpack-plugin"
- ]
- },
- {
- "file": "packages/node/src/utils/fs.ts",
- "hash": "76948da59bd61f399a45ab97064439a8ebbfbcbc",
- "deps": ["npm:fs-extra"]
- },
- {
- "file": "packages/node/src/utils/generate-package-json-webpack-plugin.ts",
- "hash": "6a6c33313570046f5e1e74b42b8ac345ba545b7d",
- "deps": ["npm:webpack", "devkit", "workspace", "js"]
- },
- {
- "file": "packages/node/src/utils/load-ts-transformers.spec.ts",
- "hash": "69610f2b0c136937b179780d8187fdb5e4564631"
- },
- {
- "file": "packages/node/src/utils/load-ts-transformers.ts",
- "hash": "fc847c54b4632213f1d3fef0efa9a7640d2daadb",
- "deps": ["devkit"]
- },
- {
- "file": "packages/node/src/utils/node.config.spec.ts",
- "hash": "a071543b40e07338a7ab6cb7775cce60ae1e6805",
- "deps": ["devkit", "npm:tsconfig-paths-webpack-plugin"]
- },
- {
- "file": "packages/node/src/utils/node.config.ts",
- "hash": "5682aae7592ffaafe22942aebfd4c17182873150",
- "deps": [
- "devkit",
- "npm:webpack",
- "npm:webpack-merge",
- "npm:webpack-node-externals",
- "npm:terser-webpack-plugin"
- ]
- },
- {
- "file": "packages/node/src/utils/normalize.spec.ts",
- "hash": "996f7b08e1fac2872617154b408ef09d07af33e2"
- },
- {
- "file": "packages/node/src/utils/normalize.ts",
- "hash": "413cb7349ab2cd5504ae73639a36cf7040c17f6b"
- },
- {
- "file": "packages/node/src/utils/run-webpack.ts",
- "hash": "f958a98555bc5e0a47bf9688accde7568b3e351a",
- "deps": ["npm:webpack", "npm:rxjs"]
- },
- {
- "file": "packages/node/src/utils/types.ts",
- "hash": "a7c98b3a60e0956838e708990523c519883ba9a5",
- "deps": ["npm:typescript"]
- },
- {
- "file": "packages/node/src/utils/versions.ts",
- "hash": "87baad502a43971ee60ba66ac56d1ff63651fdee"
- },
- {
- "file": "packages/node/tsconfig.json",
- "hash": "58bd2c97a66f5e5ea5d05c8a5709ee79bad02094"
- },
- {
- "file": "packages/node/tsconfig.lib.json",
- "hash": "1d2ddef3c1be3aa86cb55b66b9c912d3c6bf1a07"
- },
- {
- "file": "packages/node/tsconfig.spec.json",
- "hash": "869c90c526a0fe7b4b32c39d3989c66259545d9a"
- }
- ]
- }
- },
- {
- "name": "nx-dev",
- "type": "app",
- "data": {
- "tags": ["scope:nx-dev", "type:app"],
- "root": "nx-dev/nx-dev",
- "files": [
- {
- "file": "nx-dev/nx-dev/.eslintrc.json",
- "hash": "80cd340dbc74cb054a4171b25994798825a88d19"
- },
- {
- "file": "nx-dev/nx-dev/index.d.ts",
- "hash": "7ba08fa17ccbb3d5eaa4d9c7b435bd44ff43f330"
- },
- {
- "file": "nx-dev/nx-dev/jest.config.ts",
- "hash": "e07f9a27a508b0a462a00bb719241461696d6844",
- "deps": ["jest"]
- },
- {
- "file": "nx-dev/nx-dev/lib/api.ts",
- "hash": "4f68e16333ab86a36203a3364555ec69e2fffed7",
- "deps": [
- "nx-dev-data-access-documents",
- "nx-dev-data-access-menu",
- "nx-dev-data-access-packages",
- "nx-dev-models-document"
- ]
- },
- {
- "file": "nx-dev/nx-dev/next-env.d.ts",
- "hash": "4f11a03dc6cc37f2b5105c08f2e7b24c603ab2f4"
- },
- {
- "file": "nx-dev/nx-dev/next-sitemap.js",
- "hash": "00aefe0cdf13ca36181c615bfba0c162d86095fa"
- },
- {
- "file": "nx-dev/nx-dev/next.config.js",
- "hash": "3e46cb3822cd7e7ead9b308ab45afeaf43ec08b5",
- "deps": ["npm:fs-extra"]
- },
- {
- "file": "nx-dev/nx-dev/pages/_app.tsx",
- "hash": "d3eb21e8c778e6c0c8b069039da7e465d8559360",
- "deps": [
- "nx-dev-feature-analytics",
- "nx-dev-ui-common",
- "npm:next-seo",
- "npm:next",
- "npm:react"
- ]
- },
- {
- "file": "nx-dev/nx-dev/pages/_document.tsx",
- "hash": "befde3dcef5bac11c20a6de4cea06f0b87fa9752",
- "deps": ["npm:next"]
- },
- {
- "file": "nx-dev/nx-dev/pages/[...segments].tsx",
- "hash": "bb791ef8b38c51eba1a2d17b7b69357640074c62",
- "deps": [
- "nx-dev-feature-package-schema-viewer",
- "nx-dev-feature-doc-viewer",
- "nx-dev-models-document",
- "nx-dev-models-menu",
- "nx-dev-models-package",
- "nx-dev-ui-common",
- "npm:classnames",
- "npm:next",
- "npm:react"
- ]
- },
- {
- "file": "nx-dev/nx-dev/pages/404.tsx",
- "hash": "5cf8858a850db9385e9427247a2ef3d7e701a21c",
- "deps": ["nx-dev-ui-common", "npm:next-seo", "npm:next"]
- },
- {
- "file": "nx-dev/nx-dev/pages/community.tsx",
- "hash": "1e9cd609d7be043c89a1d27305a0fe133a10b02a",
- "deps": [
- "npm:@heroicons/react",
- "nx-dev-ui-common",
- "nx-dev-ui-community",
- "npm:next-seo",
- "npm:next"
- ]
- },
- {
- "file": "nx-dev/nx-dev/pages/conf.tsx",
- "hash": "3f07386db0a26d5ee1ce1fce8004e1ba7e67c13b",
- "deps": [
- "nx-dev-ui-common",
- "nx-dev-ui-conference",
- "npm:next-seo",
- "npm:next"
- ]
- },
- {
- "file": "nx-dev/nx-dev/pages/index.tsx",
- "hash": "245944d44c6bcba6f1094199bf78ed2448373c8d",
- "deps": [
- "nx-dev-ui-common",
- "nx-dev-ui-home",
- "npm:next-seo",
- "npm:next",
- "npm:react"
- ]
- },
- {
- "file": "nx-dev/nx-dev/pages/packages.tsx",
- "hash": "b4917e3a486663b61306532f55f4998c77f5a41c",
- "deps": [
- "nx-dev-models-menu",
- "nx-dev-ui-common",
- "nx-dev-ui-references",
- "npm:next-seo",
- "npm:next",
- "npm:react"
- ]
- },
- {
- "file": "nx-dev/nx-dev/postcss.config.js",
- "hash": "9ed75de35123de53f2afa919e227adf9e471d993"
- },
- {
- "file": "nx-dev/nx-dev/project.json",
- "hash": "1ae264706451b7234ce2772a2345ff4f5a626126"
- },
- {
- "file": "nx-dev/nx-dev/public/assets/images/nrwl-logo-white.svg",
- "hash": "54e17113569fad7f67fd7ebe87fdb07e69e6c8bc"
- },
- {
- "file": "nx-dev/nx-dev/public/assets/images/readme.md",
- "hash": "f4a7bef4241d4f567146eae2db607d27c4ab8454"
- },
- {
- "file": "nx-dev/nx-dev/public/favicon.ico",
- "hash": "317ebcb2336e0833a22dddf0ab287849f26fda57"
- },
- {
- "file": "nx-dev/nx-dev/public/fonts/InputMono-Regular.woff",
- "hash": "02b93f443b1f8542d16adac95ece989de7b65dad"
- },
- {
- "file": "nx-dev/nx-dev/public/fonts/InputMono-Regular.woff2",
- "hash": "11599e8e6e1f4faf842499ac34947beb85e56927"
- },
- {
- "file": "nx-dev/nx-dev/public/images/apple-touch-icon.png",
- "hash": "78dfd572d4d38e82098c0fe468c1010e4458475d"
- },
- {
- "file": "nx-dev/nx-dev/public/images/background/hero-bg-large-2.svg",
- "hash": "f3c0ff3a6bac0f2846fbc5fe9e71749acc6e7e91"
- },
- {
- "file": "nx-dev/nx-dev/public/images/background/hero-bg-large-3.svg",
- "hash": "6bd98c906ee9d6040cd2399b2a998a959a8edef8"
- },
- {
- "file": "nx-dev/nx-dev/public/images/background/hero-bg-large.svg",
- "hash": "c0487fb2e7af50e03abce3842d805573bbf6b3a9"
- },
- {
- "file": "nx-dev/nx-dev/public/images/background/hero-bg.jpg",
- "hash": "b77b8a29d7d3ed12f4fff54e7b5e2af5e808d7ad"
- },
- {
- "file": "nx-dev/nx-dev/public/images/background/hero-bg.svg",
- "hash": "36463112dba18ee0e53fa814c22fadc47f898d2c"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/altan-stalker.webp",
- "hash": "8601d301c9f6972a017f2d1f527855d3a1e8811a"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/benjamin-cabanes.webp",
- "hash": "cd9ee52ddbb7141d64d05250e7efc295332bb947"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/brainlylogo.svg",
- "hash": "581bdc20b5e6eafca8774f666479c10292b97eed"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/briebuglogo.svg",
- "hash": "a3bbd701a9d4e0044c2fbb00450ad03a5838458a"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/ciscologo.webp",
- "hash": "6ad0aae63a260474272fbec03f128febfd5f441e"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/colum-ferry.webp",
- "hash": "dd279b9169a180a947c5f74da2c75455b26bafa7"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/craigory-coppola.webp",
- "hash": "076fc793a4331186b40a10bdcbfe4bd054d1fca7"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/devin-shoemaker.webp",
- "hash": "96e6e1195ca1b970611447ea3f2ecf4f263a53b3"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/herodevslogo.svg",
- "hash": "a2611b10ba9c593425805e9ac59a854e49df4ae0"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/ioniclogo.svg",
- "hash": "5adc06d9f67f9799923e196e9f9ec545fc007dd5"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/isaac-mann.webp",
- "hash": "b48acc2cbcaa2c0e92b22984d84bda7d23dab3fc"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/jack-hsu.webp",
- "hash": "f4c3e4b460c561dccc5af174984f6b299b892fcb"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/james-henry.webp",
- "hash": "c567a8dddffd86b01f7d84059e8854461eb2fd78"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/jason-jeans.webp",
- "hash": "6bd8c4dd5ec83db7241fe4d02c83a21b7cab3614"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/jeff-cross.webp",
- "hash": "c446b29ad62195cc1b8a802ba580f699a4403d27"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/jo-hanna-pearce.webp",
- "hash": "7a771a2a88df4ac9a883107ab53a08dc434ee116"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/jonathan-cammisuli.webp",
- "hash": "96ce42681471178f1a144a2bb0e67c7075ea23aa"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/jordan-powell.webp",
- "hash": "b65592df70e1e7fd1dbf8e84b7fd0076a50dc50f"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/juri-strumpflohner.webp",
- "hash": "f13ef555079c17e25503f6edb94938ce52f77715"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/katerina-skroumpelou.webp",
- "hash": "70cd70ca1247fa1c04b9b5d93028a5be14fde2a2"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/kirils-ladovs.webp",
- "hash": "f0c4c9b4aef35c78d351ba6591c9b467a6d84557"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/lara-newsom.webp",
- "hash": "e17977a1884be1c8da37004b0ea0174b6ceab648"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/manfred-steyer.webp",
- "hash": "3f3f2be2a38671f83788624a7f6dd2cefaaa5f5a"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/miroslav-jonas.webp",
- "hash": "49f0a29f06d4aac03ebe5932fd8746004fc194d4"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/nathan-walker.webp",
- "hash": "61731465978378996dd998a8167e62f79acecf40"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/nrwl-logo.webp",
- "hash": "7e4d62b8083eafa99e5af96c15d1a9da44bf75d2"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/oasisdigitallogo.svg",
- "hash": "1f5a8268952576b4f27640a8848a3cec485c3576"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/philip-fulcher.webp",
- "hash": "872fc93f595342aa61ddecf44625c5eef23fa310"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/rares-matei.webp",
- "hash": "d719d2d013df33766a689141f1265750b7392c9a"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/santosh-yadav.webp",
- "hash": "fc54b2ff1175d968c69804e1efd1291d385d259e"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/thinksterlogo.webp",
- "hash": "1c2ea2c3ea8f43c3b079ed256e48464d5bcfb1c5"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/victor-savkin.webp",
- "hash": "351f49397cc15f5e11b79eb594c1fedd31f9d4eb"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/vmwarelogo.svg",
- "hash": "c238c94ee779e43c0817aad659ad6edf74e172ff"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/webrushlogo.svg",
- "hash": "83315540fc8433221c7064f70308036cd9760631"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/xltslogo.webp",
- "hash": "4a83a087572482c38e87183dad139e39bd6255df"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/yvonne-allen.webp",
- "hash": "21c8861741301d06c0ff117f56295b2fa54934fe"
- },
- {
- "file": "nx-dev/nx-dev/public/images/conf/zack-derose.webp",
- "hash": "b1a658c8ff62c6a4d306075de96cc404ea5c829a"
- },
- {
- "file": "nx-dev/nx-dev/public/images/favicon-16x16.png",
- "hash": "ea82d7c30d186a16ddeb752a994e5355e12b6543"
- },
- {
- "file": "nx-dev/nx-dev/public/images/favicon-32x32.png",
- "hash": "a9e95b69b4c47c44c7305b071c1043a25e097773"
- },
- {
- "file": "nx-dev/nx-dev/public/images/github-app.webp",
- "hash": "9f0b26d01443387d9bc5527a34f3e22e49807442"
- },
- {
- "file": "nx-dev/nx-dev/public/images/icons/angular.svg",
- "hash": "6189bd2b942f05a881db63bbea40f737fb5a2797"
- },
- {
- "file": "nx-dev/nx-dev/public/images/icons/cypress.svg",
- "hash": "96ac3328573c3da398bd8767323e76da3f0a0680"
- },
- {
- "file": "nx-dev/nx-dev/public/images/icons/eslint.svg",
- "hash": "b0e0304a71a3fa1b2fdf75daf1d13f3ad0b7f6bf"
- },
- {
- "file": "nx-dev/nx-dev/public/images/icons/express.svg",
- "hash": "edeb4134d5301bfb88cb83f2b4ec9169858abda3"
- },
- {
- "file": "nx-dev/nx-dev/public/images/icons/html5.svg",
- "hash": "e8b1e371823142b9c86804fa51dad4ea72cbbf34"
- },
- {
- "file": "nx-dev/nx-dev/public/images/icons/javascript.svg",
- "hash": "91e516239d68d6616478b2bad15895dc14f9b087"
- },
- {
- "file": "nx-dev/nx-dev/public/images/icons/jest.svg",
- "hash": "3c36b3bbe27041ca59dc9745e7228767966a6250"
- },
- {
- "file": "nx-dev/nx-dev/public/images/icons/nestjs.svg",
- "hash": "eb4ca774bfb28b93400f789d877ccb8c496ecd65"
- },
- {
- "file": "nx-dev/nx-dev/public/images/icons/nextdotjs.svg",
- "hash": "9972859e301db15c4e585577080b27e0f4f7ec02"
- },
- {
- "file": "nx-dev/nx-dev/public/images/icons/nodedotjs.svg",
- "hash": "281c82962782d640245541fb38a856f805e04868"
- },
- {
- "file": "nx-dev/nx-dev/public/images/icons/nx.svg",
- "hash": "93b0362abc1c7eb47b5e55c6bd73ef8562ad7a3d"
- },
- {
- "file": "nx-dev/nx-dev/public/images/icons/react.svg",
- "hash": "60069956389076bff0f26062b0007a88865249a5"
- },
- {
- "file": "nx-dev/nx-dev/public/images/icons/storybook.svg",
- "hash": "0096f3b89e34f09a47939d1332d3dd4b8e6404ef"
- },
- {
- "file": "nx-dev/nx-dev/public/images/lerna-logo.svg",
- "hash": "70bf4082a5bb2442631417bfef76c606e28f2c1f"
- },
- {
- "file": "nx-dev/nx-dev/public/images/nrwlio-channel.webp",
- "hash": "a0dd84f11c5847cdd15b6c2f57d77158204d1163"
- },
- {
- "file": "nx-dev/nx-dev/public/images/nx-affected-dep-graph.webp",
- "hash": "8e639032c7edb1b499d437c7095d8865e77bb527"
- },
- {
- "file": "nx-dev/nx-dev/public/images/nx-affected.webp",
- "hash": "f24fa50d75d964b25e3d7b2cec69f9cd2834b9a9"
- },
- {
- "file": "nx-dev/nx-dev/public/images/nx-cloud.webp",
- "hash": "b37b34720a19de88ac13266db1a21a1508f4403f"
- },
- {
- "file": "nx-dev/nx-dev/public/images/nx-conf-2022-media.jpg",
- "hash": "7eaf747c9d2c0976922f9bbfd3163954736c5dec"
- },
- {
- "file": "nx-dev/nx-dev/public/images/nx-conf-lite-media.jpg",
- "hash": "c44237269e6581fdfddd1c89defa9f050a964adc"
- },
- {
- "file": "nx-dev/nx-dev/public/images/nx-conf-media.jpg",
- "hash": "c3fc11775ecb5b9cf7347b3e78b77e5b863beb17"
- },
- {
- "file": "nx-dev/nx-dev/public/images/nx-console.webp",
- "hash": "8461a8ca8aff3d08ca59f8aa222b2bc5dff1573d"
- },
- {
- "file": "nx-dev/nx-dev/public/images/nx-dep-graph.webp",
- "hash": "5d363b57c2de125de46c658095ed7d0909cac668"
- },
- {
- "file": "nx-dev/nx-dev/public/images/nx-egghead-course.webp",
- "hash": "cfbc9d4654f8d95de60d8f1b3bcab65d000d3a64"
- },
- {
- "file": "nx-dev/nx-dev/public/images/nx-media-monorepo.jpg",
- "hash": "9ae64584fe760eb7d09a35edc999b190c534afe5"
- },
- {
- "file": "nx-dev/nx-dev/public/images/nx-media.jpg",
- "hash": "9e8aa58d8587556d1c790f14d99741cbd9f6b700"
- },
- {
- "file": "nx-dev/nx-dev/public/images/nx-on-egghead.webp",
- "hash": "ba74f246524872ea26761bc5d2f1dc450c48dd0f"
- },
- {
- "file": "nx-dev/nx-dev/public/images/nx-playbook-banner.svg",
- "hash": "d03c32ebe25c794d9d93857e2b36293fdcb0c37c"
- },
- {
- "file": "nx-dev/nx-dev/public/images/nx-playbook.webp",
- "hash": "575fcc4e20eb67a5ba7934a5bc0c80e2cd3e8e54"
- },
- {
- "file": "nx-dev/nx-dev/public/images/safari-pinned-tab.svg",
- "hash": "adfd97595eec598bf6863e07952c08c946384631"
- },
- {
- "file": "nx-dev/nx-dev/public/images/testimonials/akira-tsuboi.jpg",
- "hash": "480c841b83e57e7fb1da2d359f608ffdd839d80c"
- },
- {
- "file": "nx-dev/nx-dev/public/images/testimonials/alan-montgomery.jpg",
- "hash": "6945433ab0984a0e99dec4d225f9326482834378"
- },
- {
- "file": "nx-dev/nx-dev/public/images/testimonials/antoine-pairet.jpg",
- "hash": "c1d07375323a863ff47343581fabbcd87223a2bf"
- },
- {
- "file": "nx-dev/nx-dev/public/images/testimonials/daniel-marin.jpg",
- "hash": "5365241bd233566461ecd93a0d9d886282b3a18f"
- },
- {
- "file": "nx-dev/nx-dev/public/images/testimonials/kent-c-dodds.jpg",
- "hash": "0b2b3c9fface2211e38b307d67e4c8a96efaa515"
- },
- {
- "file": "nx-dev/nx-dev/public/images/testimonials/michael-bromley.jpg",
- "hash": "d0b4700eba4f4c8d73b070d8ef49ab57bd5c7977"
- },
- {
- "file": "nx-dev/nx-dev/public/images/testimonials/tejas-kumar.jpg",
- "hash": "29ac62e6006fc8115810978486bd0f63dc1e81b1"
- },
- {
- "file": "nx-dev/nx-dev/public/images/testimonials/tomek-sulkowski.jpg",
- "hash": "570e1cfa2055ac5f057a3d312189315dda0b2ff9"
- },
- {
- "file": "nx-dev/nx-dev/public/videos/nx-dep-graph.mp4",
- "hash": "7d4825a7805b6e3b16d954e81ba06780f7e87316"
- },
- {
- "file": "nx-dev/nx-dev/public/videos/nx-dep-graph.webm",
- "hash": "023c12a5e141588f44d782898a14a547c7ddd8ec"
- },
- {
- "file": "nx-dev/nx-dev/README.md",
- "hash": "d8ed7220ba29c3ebe31a514f8f05db4b72f631db"
- },
- {
- "file": "nx-dev/nx-dev/redirect-rules.config.js",
- "hash": "f8f5e2a90d07b7e3f8a81be2b5772378544fd009"
- },
- {
- "file": "nx-dev/nx-dev/redirect-rules.config.spec.js",
- "hash": "f9554baa95fbba2ce8c0deaa44b42c09a35d31bf"
- },
- {
- "file": "nx-dev/nx-dev/styles/main.css",
- "hash": "5f08e346a34ecef982464679741a51ed087736d5"
- },
- {
- "file": "nx-dev/nx-dev/tailwind.config.js",
- "hash": "5493c083f417aa838d2780bb278b2fd7816f4d82",
- "deps": [
- "npm:@nrwl/next",
- "npm:@tailwindcss/aspect-ratio",
- "npm:@tailwindcss/typography",
- "npm:@tailwindcss/forms"
- ]
- },
- {
- "file": "nx-dev/nx-dev/test-setup.ts",
- "hash": "2ab2ad075b06b962f43a56d2da571379e91fabe5"
- },
- {
- "file": "nx-dev/nx-dev/tsconfig.app.json",
- "hash": "4bb986e226da2ba83cad5eb3ca38a8cb4c88100a"
- },
- {
- "file": "nx-dev/nx-dev/tsconfig.json",
- "hash": "332b26845a302cbfac36af2db3b713c1e751c507"
- },
- {
- "file": "nx-dev/nx-dev/tsconfig.spec.json",
- "hash": "dd4782d4a0892ec3009b1f687705ac02b907e16e"
- }
- ]
- }
- },
- {
- "name": "typedoc-theme",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "typedoc-theme",
- "files": [
- {
- "file": "typedoc-theme/.babelrc",
- "hash": "cf7ddd99c615a064ac18eb3109eee4f394ab1faf"
- },
- {
- "file": "typedoc-theme/.eslintrc.json",
- "hash": "1ad7cf0289df74dc431b4220396a4bd16ed7f1a7"
- },
- {
- "file": "typedoc-theme/jest.config.ts",
- "hash": "7e28c5715e9d08e3adcc2bfcab45daffa729ac3f"
- },
- {
- "file": "typedoc-theme/package.json",
- "hash": "9240fecc513df6c878ac99dc614617f0d4949e4f"
- },
- {
- "file": "typedoc-theme/project.json",
- "hash": "47ecfbe171807a600bc1d3b90a9e441db4ab130f"
- },
- {
- "file": "typedoc-theme/README.md",
- "hash": "07b76f41abd382524178e64b188b4f6e5351a7e7"
- },
- {
- "file": "typedoc-theme/src/index.ts",
- "hash": "0aba4424b2c375ed6a1ca80c095aaf8a0fe26c60"
- },
- {
- "file": "typedoc-theme/src/lib/theme.ts",
- "hash": "a13c879436433fa9df97595b562d9bbfa798a390",
- "deps": ["npm:typedoc", "npm:typedoc-plugin-markdown"]
- },
- {
- "file": "typedoc-theme/tsconfig.json",
- "hash": "e236e0f405da6408c3e49fe7cdf764732febcd61"
- },
- {
- "file": "typedoc-theme/tsconfig.lib.json",
- "hash": "7d34ef8ef2a29ca2fc064b5b97baef27ec3d2a4c"
- },
- {
- "file": "typedoc-theme/tsconfig.spec.json",
- "hash": "6e605fc25fc53f0f949608b22e445f4304219f99"
- }
- ]
- }
- },
- {
- "name": "cli",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/cli",
- "files": [
- {
- "file": "packages/cli/.eslintrc.json",
- "hash": "5354eb31ef70484aa27b524a2a2539801b0fb1a3"
- },
- {
- "file": "packages/cli/bin/nx.ts",
- "hash": "e906e77b5a0037d176cf8f232476a80d9575ff5f",
- "deps": ["nx"]
- },
- {
- "file": "packages/cli/jest.config.ts",
- "hash": "5a6bcdc5c0f2540e13206f7276ef09ccf886a305"
- },
- {
- "file": "packages/cli/lib/decorate-cli.ts",
- "hash": "fbb9636c447e0e8a3af4c1f6446ffd7103388431",
- "deps": ["nx"]
- },
- {
- "file": "packages/cli/package.json",
- "hash": "d6fe0a951b4ad3bd591529a1823238cbf927f43b",
- "deps": ["nx"]
- },
- {
- "file": "packages/cli/project.json",
- "hash": "921b0bcde48b422f6427ea6fcabb2fb8bc2bf897"
- },
- {
- "file": "packages/cli/README.md",
- "hash": "37eb64ddbdbef18069a53a64e26181513e5cfb32"
- },
- {
- "file": "packages/cli/tsconfig.json",
- "hash": "58bd2c97a66f5e5ea5d05c8a5709ee79bad02094"
- },
- {
- "file": "packages/cli/tsconfig.lib.json",
- "hash": "1d2ddef3c1be3aa86cb55b66b9c912d3c6bf1a07"
- },
- {
- "file": "packages/cli/tsconfig.spec.json",
- "hash": "869c90c526a0fe7b4b32c39d3989c66259545d9a"
- }
- ]
- }
- },
- {
- "name": "graph-client",
- "type": "app",
- "data": {
- "tags": [],
- "root": "graph/client",
- "files": [
- {
- "file": "graph/client/.babelrc",
- "hash": "61641ec8ac3659e204441c80bb06defe323e3110"
- },
- {
- "file": "graph/client/.browserslistrc",
- "hash": "f1d12df4faa25ab7f0f03196105e957395f609af"
- },
- {
- "file": "graph/client/.eslintrc.json",
- "hash": "6e467025f32791bd41287b448bbe9c0b5f10fed0"
- },
- {
- "file": "graph/client/jest.config.ts",
- "hash": "d5dfecc2e580f3037c0cb41b016a6437ef458597"
- },
- {
- "file": "graph/client/postcss.config.js",
- "hash": "40cb791f9ad0ac2a4ca2e9051776e8b51ed16a7f"
- },
- {
- "file": "graph/client/project.json",
- "hash": "a83c7d4a6de3b23b9d6ad3ea44c2735c47944cd4"
- },
- {
- "file": "graph/client/src/app/app.tsx",
- "hash": "1ae8d7ede3b12674d4dbcf6d2cc330406607911a"
- },
- {
- "file": "graph/client/src/app/debugger-panel.tsx",
- "hash": "fcbe41ed6a1520b69954ba1aa6b6c4ba9c5670af",
- "deps": ["npm:react"]
- },
- {
- "file": "graph/client/src/app/edge-tooltip.tsx",
- "hash": "9137c9d2943259b0dbf5a3a9d9a24779cc2e37a9"
- },
- {
- "file": "graph/client/src/app/experimental-feature.tsx",
- "hash": "bdea528aeb2be46fa42f4ea1e694942db03538f1"
- },
- {
- "file": "graph/client/src/app/fetch-project-graph-service.ts",
- "hash": "010cfecf0f93a087557ef7549c042fb5d17a38fa"
- },
- {
- "file": "graph/client/src/app/hooks/use-debounce.ts",
- "hash": "0b2637c30cd416194da737aa986aa931539e6ba4",
- "deps": ["npm:react"]
- },
- {
- "file": "graph/client/src/app/hooks/use-dep-graph-selector.ts",
- "hash": "f28a114b944462571c1bb20d513fd1c203c13c35",
- "deps": ["npm:@xstate/react"]
- },
- {
- "file": "graph/client/src/app/hooks/use-dep-graph.ts",
- "hash": "01bfb77bae1c116af3e00c824ce08ead090ac62a",
- "deps": ["npm:react"]
- },
- {
- "file": "graph/client/src/app/hooks/use-environment-config.ts",
- "hash": "677c7f63e3c0db9d8ee2424e8f333aed04a1b6db",
- "deps": ["npm:react"]
- },
- {
- "file": "graph/client/src/app/hooks/use-interval-when.ts",
- "hash": "3868db3ef856d03ec226803bd361491cd883fc70",
- "deps": ["npm:react"]
- },
- {
- "file": "graph/client/src/app/hooks/use-project-graph-data-service.ts",
- "hash": "60225449da7b22eb57198b2ab4eb6b7601c8b854"
- },
- {
- "file": "graph/client/src/app/interfaces.ts",
- "hash": "f4ce9592eb690d565e2e4dc3cf9f0c7c33923c4b"
- },
- {
- "file": "graph/client/src/app/local-project-graph-service.ts",
- "hash": "49228ca3898b25712f42f20747bd3eda5c1392c7"
- },
- {
- "file": "graph/client/src/app/machines/custom-selected.state.ts",
- "hash": "2bed077f526e9d346bd5b7863a57cb225c4a49e7",
- "deps": ["npm:@xstate/immer", "npm:xstate"]
- },
- {
- "file": "graph/client/src/app/machines/dep-graph.machine.ts",
- "hash": "7ff221b1c20881e3aed348777b63dc84e2dafdee",
- "deps": ["npm:@xstate/immer", "npm:xstate"]
- },
- {
- "file": "graph/client/src/app/machines/dep-graph.service.ts",
- "hash": "3b2dbf9a1637c7d070b09deba17df8c19efb9fe9",
- "deps": ["npm:xstate"]
- },
- {
- "file": "graph/client/src/app/machines/dep-graph.spec.ts",
- "hash": "c0181e208bf9a969d2f474872b01665f82760518",
- "deps": ["npm:xstate"]
- },
- {
- "file": "graph/client/src/app/machines/externalApi.ts",
- "hash": "16b39b22f3db16a5a39075beef064625e9b6c008"
- },
- {
- "file": "graph/client/src/app/machines/focused.state.ts",
- "hash": "79a83b983a66eb134f317c54ae9e8f667f4cf9d0",
- "deps": ["npm:@xstate/immer", "npm:xstate"]
- },
- {
- "file": "graph/client/src/app/machines/graph.actor.ts",
- "hash": "d97961c125df3bbfa595257c4b673d56981a9b39"
- },
- {
- "file": "graph/client/src/app/machines/graph.service.ts",
- "hash": "8da0594194164e515341cf4f74b9b1ed4f7e959c"
- },
- {
- "file": "graph/client/src/app/machines/graph.ts",
- "hash": "777fcccc7dbacaa701c1471dfa5d7b2012c181e8",
- "deps": [
- "npm:@popperjs/core",
- "npm:cytoscape",
- "npm:cytoscape-dagre",
- "npm:cytoscape-popper"
- ]
- },
- {
- "file": "graph/client/src/app/machines/interfaces.ts",
- "hash": "a8ba471192570df02062da68de76540cbb591535",
- "deps": ["npm:xstate"]
- },
- {
- "file": "graph/client/src/app/machines/route-listener.actor.ts",
- "hash": "7587a47b95fe7f088a3739a1e3408895a63f5fc8",
- "deps": ["npm:xstate"]
- },
- {
- "file": "graph/client/src/app/machines/route-setter.machine.ts",
- "hash": "acb66d776f57b497434d7736f1fc7e68c1ab5169",
- "deps": ["npm:@xstate/immer", "npm:xstate"]
- },
- {
- "file": "graph/client/src/app/machines/selectors.ts",
- "hash": "e5861360bf821dbedf6a5e35e38ec851d6821c76"
- },
- {
- "file": "graph/client/src/app/machines/text-filtered.state.ts",
- "hash": "4240a97be66dbbf7c69fea75bc2dff5f63af9afe",
- "deps": ["npm:@xstate/immer", "npm:xstate"]
- },
- {
- "file": "graph/client/src/app/machines/tracing.state.ts",
- "hash": "5eaba6b3e697a6c820a17eb4f94ff7c4bac10130",
- "deps": ["npm:@xstate/immer"]
- },
- {
- "file": "graph/client/src/app/machines/unselected.state.ts",
- "hash": "2be0e66cb9a76391e24d7ed246bbf64af4bf7a97",
- "deps": ["npm:@xstate/immer", "npm:xstate"]
- },
- {
- "file": "graph/client/src/app/mock-project-graph-service.ts",
- "hash": "f2df03e83656bdba89e9763103a693ddcc2b073f"
- },
- {
- "file": "graph/client/src/app/project-node-tooltip.tsx",
- "hash": "bc9aef0e52f2e1a1eadfbb74278ab6c680b3c80a"
- },
- {
- "file": "graph/client/src/app/shell.tsx",
- "hash": "d7741410e5d8214e41fec212c95811d781db8174",
- "deps": [
- "npm:@heroicons/react",
- "npm:@tippyjs/react",
- "npm:classnames",
- "npm:react"
- ]
- },
- {
- "file": "graph/client/src/app/sidebar/collapse-edges-panel.tsx",
- "hash": "46a7ce9511df51d6f3fa6217b2a436c6dd6a3c09",
- "deps": ["npm:react"]
- },
- {
- "file": "graph/client/src/app/sidebar/focused-project-panel.tsx",
- "hash": "323516f67d13c068e0d15a2e666318b5e3248734",
- "deps": ["npm:@heroicons/react", "npm:react"]
- },
- {
- "file": "graph/client/src/app/sidebar/group-by-folder-panel.tsx",
- "hash": "2ae99b7ef7e71abba1461e5c40ebe4f05947b147",
- "deps": ["npm:react"]
- },
- {
- "file": "graph/client/src/app/sidebar/project-list.tsx",
- "hash": "912cf4d42aa23c80a1eca9476b30f00aaae9b0c5",
- "deps": ["npm:@heroicons/react"]
- },
- {
- "file": "graph/client/src/app/sidebar/search-depth.tsx",
- "hash": "a8d16ff36802668462eba66093ff430a81b1ac23",
- "deps": ["npm:react"]
- },
- {
- "file": "graph/client/src/app/sidebar/show-hide-projects.tsx",
- "hash": "89920182c201c0f2c8ce90eea55f0aa6670c951f",
- "deps": ["npm:react"]
- },
- {
- "file": "graph/client/src/app/sidebar/sidebar.tsx",
- "hash": "b718f01d043acb38c7cac25328e251878cd7a6d3",
- "deps": ["npm:@heroicons/react", "npm:react"]
- },
- {
- "file": "graph/client/src/app/sidebar/text-filter-panel.tsx",
- "hash": "63ddfd7ace82fdba7e3c0e25f300969f933e01e0",
- "deps": ["npm:react"]
- },
- {
- "file": "graph/client/src/app/sidebar/theme-panel.tsx",
- "hash": "8e1eb0f2f7a7738c6436776fecd930d7fc767d4a",
- "deps": [
- "npm:@headlessui/react",
- "npm:@heroicons/react",
- "npm:classnames",
- "npm:react"
- ]
- },
- {
- "file": "graph/client/src/app/sidebar/tracing-panel.tsx",
- "hash": "aed9dd358cb50c7cac0e56b6bce600038494dd9a",
- "deps": ["npm:@heroicons/react", "npm:react"]
- },
- {
- "file": "graph/client/src/app/state.provider.tsx",
- "hash": "798cf9bc890dec367594bf5537b7754bf890983c",
- "deps": ["npm:react", "npm:xstate"]
- },
- {
- "file": "graph/client/src/app/styles-graph/edges.ts",
- "hash": "e499f41919ec3adc40478a1a5371e4b1aa1ebec6",
- "deps": ["npm:cytoscape"]
- },
- {
- "file": "graph/client/src/app/styles-graph/fonts.ts",
- "hash": "eaf490825a9ad7c4265cca71c6d4a59936e98dae"
- },
- {
- "file": "graph/client/src/app/styles-graph/index.ts",
- "hash": "c557f1698c2309a3dfa1ae30e75db9e16d1a3cc6"
- },
- {
- "file": "graph/client/src/app/styles-graph/label-width.ts",
- "hash": "0d0743a520c0d69e727f193efe34b0ada4263a62",
- "deps": ["npm:cytoscape"]
- },
- {
- "file": "graph/client/src/app/styles-graph/nodes.ts",
- "hash": "df8ccac5f7729687fcd0446643113f84d8dc0a85",
- "deps": ["npm:cytoscape"]
- },
- {
- "file": "graph/client/src/app/styles-graph/palette.ts",
- "hash": "107043212a252e6586c959df307059c95a443576"
- },
- {
- "file": "graph/client/src/app/theme-resolver.tsx",
- "hash": "5ccf10f747857cd22c20a032af13dfcaa78789d4"
- },
- {
- "file": "graph/client/src/app/tooltip-service.ts",
- "hash": "bfc9c3aa378449e7f1712aaa3b0bd2bd582d90f9",
- "deps": ["npm:@popperjs/core"]
- },
- {
- "file": "graph/client/src/app/util-cytoscape/cytoscape.models.ts",
- "hash": "6e0e73f7943cb0b1eec83bd587482c3271a94143",
- "deps": ["npm:cytoscape"]
- },
- {
- "file": "graph/client/src/app/util-cytoscape/edge.ts",
- "hash": "d1bb1f2458c13569c8a5f05e23f0dd725ab5a76a",
- "deps": ["npm:cytoscape"]
- },
- {
- "file": "graph/client/src/app/util-cytoscape/index.ts",
- "hash": "f10dc4ac0b409f488a70b6cbc7ece930534beb8a"
- },
- {
- "file": "graph/client/src/app/util-cytoscape/parent-node.ts",
- "hash": "fed0fab636a439a2bea6ad4bc1af9ec7d5b01ff1",
- "deps": ["npm:cytoscape"]
- },
- {
- "file": "graph/client/src/app/util-cytoscape/project-node.spec.ts",
- "hash": "20b6cd7c545f1619ec83a0427524236b0836c95f"
- },
- {
- "file": "graph/client/src/app/util-cytoscape/project-node.ts",
- "hash": "982e32e7be6499d74511d716d1c17ead954616f4",
- "deps": ["npm:cytoscape"]
- },
- {
- "file": "graph/client/src/app/util.spec.ts",
- "hash": "10827ae63b32c2dd94ceb1a65162cbffed8cc242"
- },
- {
- "file": "graph/client/src/app/util.ts",
- "hash": "6e8eb2bd3cf9db73ce84da10a5fd49b86b90835d"
- },
- {
- "file": "graph/client/src/assets/.gitkeep",
- "hash": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"
- },
- {
- "file": "graph/client/src/assets/dev/environment.js",
- "hash": "b0510b112e6eaaf31ca03125177bbeaac18afd86"
- },
- {
- "file": "graph/client/src/assets/graphs/affected.json",
- "hash": "30140be791e560f2ad771587499a6fdccd5f2cf2"
- },
- {
- "file": "graph/client/src/assets/graphs/collapsing-edges-testing.json",
- "hash": "bd1de85083b792de3094c2e7cb7811d9fd99cbbd"
- },
- {
- "file": "graph/client/src/assets/graphs/focus-testing.json",
- "hash": "e90b0b9e2ac5def29ccadad7fd32936d10f3875d"
- },
- {
- "file": "graph/client/src/assets/graphs/nested-workspace-layout.json",
- "hash": "586990c4e0d46e1fef39a4f23ec17022114225ed"
- },
- {
- "file": "graph/client/src/assets/graphs/nx-examples.json",
- "hash": "40e103f9b7f33b74e64b37a0728ef6ec34293e07"
- },
- {
- "file": "graph/client/src/assets/graphs/nx.json",
- "hash": "eed9aa9d3812ae09eedfc737c1765c04f78b5f89"
- },
- {
- "file": "graph/client/src/assets/graphs/ocean.json",
- "hash": "1b9047dcd1069d1897dfd73a66906e77f566446c"
- },
- {
- "file": "graph/client/src/assets/graphs/storybook.json",
- "hash": "efb135656a32a763a1d974f0b4637e932102ec66"
- },
- {
- "file": "graph/client/src/assets/graphs/sub-apps.json",
- "hash": "9a5962811f7969e6d80b34fa01cd32e59ccb8fdd"
- },
- {
- "file": "graph/client/src/assets/nx-console/environment.js",
- "hash": "652af724c0d497f8a126926a13584613cccac102"
- },
- {
- "file": "graph/client/src/assets/release/environment.js",
- "hash": "68584fcb884346b7ba264bf7bb5753ffd0e3436c"
- },
- {
- "file": "graph/client/src/assets/watch/environment.js",
- "hash": "449135329ba4fe6fb33a727d3d06af6e025309eb"
- },
- {
- "file": "graph/client/src/favicon.ico",
- "hash": "317ebcb2336e0833a22dddf0ab287849f26fda57"
- },
- {
- "file": "graph/client/src/globals.d.ts",
- "hash": "e478b89dfb70efb422eb84c110849071d52f15d7"
- },
- {
- "file": "graph/client/src/index.html",
- "hash": "9e4b2327f72bc3b8361be2eef9d5a502e8e559db"
- },
- {
- "file": "graph/client/src/main.tsx",
- "hash": "5da159f5c17e362a09894c03de9efd4ee2eb33d7",
- "deps": ["npm:react", "npm:react-dom", "npm:@xstate/inspect"]
- },
- {
- "file": "graph/client/src/polyfills.ts",
- "hash": "2adf3d05b6fcf479dd61c74f6bda95d9edb6ac6b",
- "deps": ["npm:core-js", "npm:regenerator-runtime"]
- },
- {
- "file": "graph/client/src/styles.scss",
- "hash": "b85f9c288d24dfa4dc2572eff2e7c43b92403460"
- },
- {
- "file": "graph/client/tailwind.config.js",
- "hash": "5b15aca77e422046ae37bc8efcbf9b8a22907fd5",
- "deps": ["npm:@tailwindcss/typography"]
- },
- {
- "file": "graph/client/tsconfig.app.json",
- "hash": "8e68a6b6dd8d590b7cfb53746f0d8f5595b2cfe7"
- },
- {
- "file": "graph/client/tsconfig.json",
- "hash": "ad56986cc181c811be9e9ca7b49f255e4d266c94"
- },
- {
- "file": "graph/client/tsconfig.spec.json",
- "hash": "17043fc1b25d24e527b486f78999f44c57dbeacd"
- },
- {
- "file": "graph/client/webpack.config.js",
- "hash": "31b9ad59cda864d39baa61127c6fe579f4eef235"
- }
- ]
- }
- },
- {
- "name": "tao",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/tao",
- "files": [
- {
- "file": "packages/tao/.eslintrc.json",
- "hash": "ff47ddace4d5155dd8a9f2542fda521d497ba0e7"
- },
- {
- "file": "packages/tao/index.ts",
- "hash": "0125b1a562c67c322cc4031ab9ea71c5b7e02e0b",
- "deps": ["nx"]
- },
- {
- "file": "packages/tao/jest.config.ts",
- "hash": "21d583ce886a33e83a04bdc32e68098d2444cdc6"
- },
- {
- "file": "packages/tao/package.json",
- "hash": "c8b1b9599fc73b738f67cb1265da9029fb0cfd72",
- "deps": ["nx"]
- },
- {
- "file": "packages/tao/project.json",
- "hash": "d2fd428179750339128fe23c43b8d1facd7bcab1"
- },
- {
- "file": "packages/tao/README.md",
- "hash": "37eb64ddbdbef18069a53a64e26181513e5cfb32"
- },
- {
- "file": "packages/tao/src/commands/ngcli-adapter.ts",
- "hash": "7d8509c1b1861038a49625329b5f845f303c4119",
- "deps": ["nx"]
- },
- {
- "file": "packages/tao/src/shared/logger.ts",
- "hash": "dceb7df0fa518aa93bc395619b44c508e0b52c25",
- "deps": ["nx"]
- },
- {
- "file": "packages/tao/src/shared/nx.ts",
- "hash": "bae4793a4217bc0b541afe4e904c2be550c92e8d",
- "deps": ["nx"]
- },
- {
- "file": "packages/tao/src/shared/package-manager.ts",
- "hash": "2e1be25998964b7cfa02d3cd113fd40e88a3055a",
- "deps": ["nx"]
- },
- {
- "file": "packages/tao/src/shared/project-graph.ts",
- "hash": "864b5462a7c6b3166bc89338aec9447776159929",
- "deps": ["nx"]
- },
- {
- "file": "packages/tao/src/shared/tree.ts",
- "hash": "57e112145eefeff450ccdb60b82821d4fd1da594",
- "deps": ["nx"]
- },
- {
- "file": "packages/tao/src/shared/workspace.ts",
- "hash": "1a77ede0ec582647c669c496edf389a3eda3eaf9",
- "deps": ["nx"]
- },
- {
- "file": "packages/tao/src/utils/app-root.ts",
- "hash": "a4e612047e6d1ca8125de939960d6b40709b0e42",
- "deps": ["nx"]
- },
- {
- "file": "packages/tao/tsconfig.json",
- "hash": "58bd2c97a66f5e5ea5d05c8a5709ee79bad02094"
- },
- {
- "file": "packages/tao/tsconfig.lib.json",
- "hash": "5c589aef9e7c76c6bd9a4eea2464ea8a75508919"
- },
- {
- "file": "packages/tao/tsconfig.spec.json",
- "hash": "46f9467f3bd81cb7ec6abc5dcec5c1d35c42f28a"
- }
- ]
- }
- },
- {
- "name": "web",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/web",
- "files": [
- {
- "file": "packages/web/.eslintrc.json",
- "hash": "4a142b79a6e0fb6e747a610ee63cdd78a9bf416b"
- },
- {
- "file": "packages/web/babel.ts",
- "hash": "223cb4a896070c05b91603d8eeee6a6baab635fa"
- },
- {
- "file": "packages/web/executors.json",
- "hash": "e9a918e9a9f99222ac3b20cad7bb1bf410bdd82f"
- },
- {
- "file": "packages/web/generators.json",
- "hash": "3c5b6699027a66fe1d383336217296a8135594ac"
- },
- {
- "file": "packages/web/index.ts",
- "hash": "5bdcea824fe081238113711d60341965ccbf69b2"
- },
- {
- "file": "packages/web/jest.config.ts",
- "hash": "1199910c99aec6a6faecb3754a88886f035e8764"
- },
- {
- "file": "packages/web/migrations.json",
- "hash": "ea90bd99ac8cc43549d9d9609d4b1c72633619cc"
- },
- {
- "file": "packages/web/migrations.spec.ts",
- "hash": "b00de2211c62a562064619cdc5a58341c15356ce"
- },
- {
- "file": "packages/web/package.json",
- "hash": "b25e7269f721a825a4b8933d799d651c490e076d",
- "deps": [
- "cypress",
- "devkit",
- "jest",
- "js",
- "linter",
- "workspace",
- "npm:@pmmmwh/react-refresh-webpack-plugin",
- "npm:@rollup/plugin-babel",
- "npm:@rollup/plugin-commonjs",
- "npm:@rollup/plugin-image",
- "npm:@rollup/plugin-json",
- "npm:@rollup/plugin-node-resolve",
- "npm:autoprefixer",
- "npm:chalk",
- "npm:chokidar",
- "npm:copy-webpack-plugin",
- "npm:core-js",
- "npm:css-minimizer-webpack-plugin",
- "npm:enhanced-resolve",
- "npm:file-loader",
- "npm:fork-ts-checker-webpack-plugin",
- "npm:fs-extra",
- "npm:http-server",
- "npm:identity-obj-proxy",
- "npm:ignore",
- "npm:less",
- "npm:less-loader",
- "npm:license-webpack-plugin",
- "npm:loader-utils",
- "npm:mini-css-extract-plugin",
- "npm:parse5",
- "npm:postcss",
- "npm:postcss-import",
- "npm:raw-loader",
- "npm:react-refresh",
- "npm:rollup",
- "npm:rollup-plugin-copy",
- "npm:rollup-plugin-peer-deps-external",
- "npm:rollup-plugin-postcss",
- "npm:rollup-plugin-typescript2",
- "npm:rxjs",
- "npm:sass",
- "npm:sass-loader",
- "npm:semver",
- "npm:source-map",
- "npm:source-map-loader",
- "npm:style-loader",
- "npm:stylus",
- "npm:stylus-loader",
- "npm:terser-webpack-plugin",
- "npm:ts-loader",
- "npm:ts-node",
- "npm:tsconfig-paths",
- "npm:tsconfig-paths-webpack-plugin",
- "npm:tslib",
- "npm:webpack",
- "npm:webpack-dev-server",
- "npm:webpack-merge",
- "npm:webpack-sources",
- "npm:webpack-subresource-integrity"
- ]
- },
- {
- "file": "packages/web/project.json",
- "hash": "b5886c0b00cef630c5792c84b459870fa8703b34"
- },
- {
- "file": "packages/web/README.md",
- "hash": "a61f710fabb22ddf82084755ea0a6abeb3927312"
- },
- {
- "file": "packages/web/src/executors/dev-server/compat.ts",
- "hash": "a587ba361b107642d805754f6799b90f2ac6bde4",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/executors/dev-server/dev-server.impl.ts",
- "hash": "0af5e399260cc923febdc0ca7a7ed97939bd6385",
- "deps": [
- "npm:webpack",
- "devkit",
- "npm:rxjs",
- "npm:webpack-dev-server",
- "workspace"
- ]
- },
- {
- "file": "packages/web/src/executors/dev-server/schema.json",
- "hash": "a9480d9578fddbad2dca2d166835bd6df35c1b6e"
- },
- {
- "file": "packages/web/src/executors/file-server/compat.ts",
- "hash": "094efc423152340e16481ea0d7c25caa077a714f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/executors/file-server/file-server.impl.ts",
- "hash": "3f577ddc396cad8660f3b58626977f8c19bbc6da",
- "deps": ["npm:chalk", "devkit", "npm:ignore", "npm:chokidar", "nx"]
- },
- {
- "file": "packages/web/src/executors/file-server/schema.d.ts",
- "hash": "ec5fb0f1eeb1fcb1427ec49c92c48090b792d470"
- },
- {
- "file": "packages/web/src/executors/file-server/schema.json",
- "hash": "ca944a053168158c7e31deda5c9aaa4ad7224c89"
- },
- {
- "file": "packages/web/src/executors/rollup/compat.ts",
- "hash": "e9dd420efbac07eb0374bd84e2ab5ea4865dac37",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/executors/rollup/lib/analyze-plugin.ts",
- "hash": "244a24f611017541afe393b36ddd34f8dc6ffae6",
- "deps": ["npm:chalk", "devkit"]
- },
- {
- "file": "packages/web/src/executors/rollup/lib/normalize.spec.ts",
- "hash": "d0ba4583b5e8807c12c586ce6b78026e6d203c73"
- },
- {
- "file": "packages/web/src/executors/rollup/lib/normalize.ts",
- "hash": "ec003057a286502e64f7be47d9bdb3922d680dbd"
- },
- {
- "file": "packages/web/src/executors/rollup/lib/run-rollup.ts",
- "hash": "774cd0780bc08cade9d726d53e1a49005cf55189",
- "deps": ["npm:rollup", "npm:rxjs"]
- },
- {
- "file": "packages/web/src/executors/rollup/lib/swc-plugin.ts",
- "hash": "36eb86386929ae58e8bf7f03ae1e50d4f5233c71",
- "deps": ["npm:rollup", "npm:@swc/core"]
- },
- {
- "file": "packages/web/src/executors/rollup/lib/update-package-json.spec.ts",
- "hash": "f79366e69dbfb712aa074715037eb403b28eec21",
- "deps": ["nx"]
- },
- {
- "file": "packages/web/src/executors/rollup/lib/update-package-json.ts",
- "hash": "31b4f7a9a93fa4436c1f460d6ce72e262890476c",
- "deps": ["nx", "workspace"]
- },
- {
- "file": "packages/web/src/executors/rollup/lib/validate-types.ts",
- "hash": "1c89c1ca0ffffb64000180e1871cbb3cbc87c639",
- "deps": ["js"]
- },
- {
- "file": "packages/web/src/executors/rollup/rollup.impl.spec.ts",
- "hash": "d8db74dc0bdde47827c39b73ee2c6bb276ea15a2",
- "deps": ["devkit", "npm:rollup", "npm:rollup-plugin-copy"]
- },
- {
- "file": "packages/web/src/executors/rollup/rollup.impl.ts",
- "hash": "d86c080de861572ca74ae82db026c8d914489f4b",
- "deps": [
- "npm:rollup",
- "npm:rollup-plugin-peer-deps-external",
- "npm:@rollup/plugin-babel",
- "npm:rxjs",
- "devkit",
- "npm:autoprefixer",
- "workspace",
- "npm:@rollup/plugin-node-resolve",
- "npm:@rollup/plugin-commonjs",
- "npm:@rollup/plugin-image",
- "npm:@rollup/plugin-json",
- "npm:rollup-plugin-copy",
- "npm:rollup-plugin-postcss"
- ]
- },
- {
- "file": "packages/web/src/executors/rollup/schema.d.ts",
- "hash": "528b1b5345025eab38d7a9f1bec51182f834caba"
- },
- {
- "file": "packages/web/src/executors/rollup/schema.json",
- "hash": "bd9c2274668b30011f048f6de97a407e6ce140fe"
- },
- {
- "file": "packages/web/src/executors/webpack/compat.ts",
- "hash": "177aa84d0709557fbf71e154e17649e7008cf620",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/executors/webpack/schema.json",
- "hash": "c76feae2a8402bf31070c7e0a35cb17fff29147a"
- },
- {
- "file": "packages/web/src/executors/webpack/webpack.impl.ts",
- "hash": "a3878183d5c6c4d3dc0958f347ab5c1171317936",
- "deps": [
- "devkit",
- "npm:webpack",
- "npm:rxjs",
- "npm:semver",
- "workspace"
- ]
- },
- {
- "file": "packages/web/src/generators/application/application.spec.ts",
- "hash": "5666829fc54bd2af2dccbb7d5282128ff2f2cdc2",
- "deps": ["cypress", "devkit"]
- },
- {
- "file": "packages/web/src/generators/application/application.ts",
- "hash": "f2f7b3fe3a07b0270cad516c5de377cf136e552e",
- "deps": ["cypress", "devkit", "jest", "js", "linter", "workspace"]
- },
- {
- "file": "packages/web/src/generators/application/files/app/.babelrc__tmpl__",
- "hash": "2e593427f7ba2133f2718369cb43067f579b757a"
- },
- {
- "file": "packages/web/src/generators/application/files/app/browserslist",
- "hash": "8d6179367e7ba6b8cd0fa04b900d6ab4142ab08b"
- },
- {
- "file": "packages/web/src/generators/application/files/app/src/app/app.element.__style__",
- "hash": "e033890e43cf06ff7de56f8f83a7d9bf882257cd"
- },
- {
- "file": "packages/web/src/generators/application/files/app/src/app/app.element.spec.ts__tmpl__",
- "hash": "8f8178a21b2c6b0f73b60bc515dad0cff44a68b9"
- },
- {
- "file": "packages/web/src/generators/application/files/app/src/app/app.element.ts__tmpl__",
- "hash": "b00a2885ef21106cd96f4ada9596448989dfbfe9"
- },
- {
- "file": "packages/web/src/generators/application/files/app/src/assets/.gitkeep",
- "hash": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"
- },
- {
- "file": "packages/web/src/generators/application/files/app/src/environments/environment.prod.ts__tmpl__",
- "hash": "3612073bc31cd4c1f5d6cbb00318521e9a61bd8a"
- },
- {
- "file": "packages/web/src/generators/application/files/app/src/environments/environment.ts__tmpl__",
- "hash": "d9370e924b51bc67ecddee7fc3b6693681a324b6"
- },
- {
- "file": "packages/web/src/generators/application/files/app/src/favicon.ico",
- "hash": "317ebcb2336e0833a22dddf0ab287849f26fda57"
- },
- {
- "file": "packages/web/src/generators/application/files/app/src/index.html",
- "hash": "42ece406e8b8a1c34635b9ad6f424411f6bbeb06"
- },
- {
- "file": "packages/web/src/generators/application/files/app/src/main.ts__tmpl__",
- "hash": "12f7aaebe90c53c21c5efc6ad3b571d86f6ff932"
- },
- {
- "file": "packages/web/src/generators/application/files/app/src/polyfills.ts__tmpl__",
- "hash": "2adf3d05b6fcf479dd61c74f6bda95d9edb6ac6b"
- },
- {
- "file": "packages/web/src/generators/application/files/app/src/styles.__style__",
- "hash": "90d4ee0072ce3fc41812f8af910219f9eea3c3de"
- },
- {
- "file": "packages/web/src/generators/application/files/app/tsconfig.app.json",
- "hash": "0ee582ddabaac0d12560fe6d5210c173a03c71d5"
- },
- {
- "file": "packages/web/src/generators/application/files/app/tsconfig.json",
- "hash": "595598eddbf3e9afb57b78e929a72fdddbae66e3"
- },
- {
- "file": "packages/web/src/generators/application/schema.d.ts",
- "hash": "9e94dd72264ca1b979745b01e37471d99354e359",
- "deps": ["linter"]
- },
- {
- "file": "packages/web/src/generators/application/schema.json",
- "hash": "26349026b2119f001ea72e3d5de0dfd6b082104f"
- },
- {
- "file": "packages/web/src/generators/init/init.spec.ts",
- "hash": "ea505c5582e9f1a1dfe6bc563e8d303915ac2a9f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/generators/init/init.ts",
- "hash": "21d1de243e8727da966c9514df04586a01976d2c",
- "deps": ["cypress", "devkit", "jest", "workspace"]
- },
- {
- "file": "packages/web/src/generators/init/schema.d.ts",
- "hash": "7ab6757712763422267ba107cc7811179d6dad46"
- },
- {
- "file": "packages/web/src/generators/init/schema.json",
- "hash": "373aa9aecffba2550d875c799fc1c9b2bdd7208f"
- },
- {
- "file": "packages/web/src/migrations/update-11-5-2/create-babelrc-for-workspace-libs.spec.ts",
- "hash": "b70888d5b953df5dda1d1a4ee26f0a1dc98bc471",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/migrations/update-11-5-2/create-babelrc-for-workspace-libs.ts",
- "hash": "c694abe958ee6b777990b8443a22ee82a5c1d827",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/migrations/update-11-5-2/update-existing-babelrc-files.spec.ts",
- "hash": "a5ee1a1706c3b942dbfc7e8e126076be8e332d8f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/migrations/update-11-5-2/update-existing-babelrc-files.ts",
- "hash": "757fce97b081e40fdf8008d544e7549e08e69329",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/migrations/update-11-5-2/update-root-babel-config.spec.ts",
- "hash": "4116f2ec6d70b33a90d3ad8e895b0c81bbbfd643",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/migrations/update-11-5-2/update-root-babel-config.ts",
- "hash": "1f0507ae13ab95a637c21eb61b0e6cab33e8f214",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/migrations/update-11-5-2/utils.spec.ts",
- "hash": "95ae311fbf649c544fc1bd09d8ab578463404315",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/migrations/update-11-5-2/utils.ts",
- "hash": "2cf390034333242a8dcf3921fb09dcb2c2b79630",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/migrations/update-13-0-0/remove-deprecated-options-13-0-0.spec.ts",
- "hash": "46c7a90389802d2a6bbccdd4c457f1981468022a",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/migrations/update-13-0-0/remove-deprecated-options-13-0-0.ts",
- "hash": "0cc3d68405797b126f290e998fef834ad815d66c",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/migrations/update-13-0-0/remove-node-sass-13-0-0.spec.ts",
- "hash": "8fd4784c069ebf617932c65b18b4990a7ee7cf99",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/migrations/update-13-0-0/remove-node-sass-13-0-0.ts",
- "hash": "2bad29b1e660b3bb52dd347909434bcf7c4bca76",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/migrations/update-13-0-0/remove-webpack-5-packages-13-0-0.spec.ts",
- "hash": "d2260fa442811cca54f4bc0c0c5e6fd3a00bed4c",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/migrations/update-13-0-0/remove-webpack-5-packages-13-0-0.ts",
- "hash": "b9b9f61218a6b995b084be379a9910e97b97fb11",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/migrations/update-13-3-0/rename-build-to-webpack.spec.ts",
- "hash": "5430ae722b62794ba529e16a76522ff1fb2f1abb",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/migrations/update-13-3-0/rename-build-to-webpack.ts",
- "hash": "18b83729c1b707029c69403f84ddb10cfafab89a",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/migrations/update-13-3-0/rename-package-to-rollup.spec.ts",
- "hash": "90a823a82bdc6783d90b97a7e8e7e143cd9d19d3",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/migrations/update-13-3-0/rename-package-to-rollup.ts",
- "hash": "28bd85b4bdb5d2423e231a9ddb7a7793980e558f",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/migrations/update-13-8-0/add-postcss-config-option.spec.ts",
- "hash": "0dd7f1dbf66e219253e21a7a98d4cff88e485bd2",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/migrations/update-13-8-0/add-postcss-config-option.ts",
- "hash": "50bb4fe44b22a3136a1b1269b49019f13d1e5b09",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/migrations/update-14-1-7/rollup-format-backwards-compatibility.spec.ts",
- "hash": "a741cb6f734d5663f497209af1bb8a7cfc10dc75",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/migrations/update-14-1-7/rollup-format-backwards-compatibility.ts",
- "hash": "47b393e085c5bba5b0fcb7f7893c990ec72d5578",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/migrations/update-8-5-0/update-builder-8-5-0.spec.ts",
- "hash": "648f3a24298308bfd8794b246c9c69fd45bd6b4a",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/web/src/migrations/update-8-5-0/update-builder-8-5-0.ts",
- "hash": "8609283d12a9710edb8c8bae1dcf8d7bcd9e569d",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/web/src/migrations/update-9-0-0/update-builder-9-0-0.ts",
- "hash": "8a27386fe3f7467dd3632e5c166712448fc9ecfe",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/web/src/migrations/update-9-2-0/set-build-libs-from-source.spec.ts",
- "hash": "76fae774948901470038738d661fb9b8256d2722",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/web/src/migrations/update-9-2-0/set-build-libs-from-source.ts",
- "hash": "f4008621e563594b660b94134e89cd0c82386011",
- "deps": ["npm:@angular-devkit/schematics", "workspace"]
- },
- {
- "file": "packages/web/src/plugins/webpack-nx-build-coordination-plugin.ts",
- "hash": "3920a185111731555b4c94641e8f6c24e7c07b30",
- "deps": ["npm:chokidar", "devkit", "npm:ignore"]
- },
- {
- "file": "packages/web/src/utils/config.ts",
- "hash": "a662a233f1fae04d83f02f6591645f827bce585a",
- "deps": [
- "npm:webpack",
- "npm:license-webpack-plugin",
- "npm:copy-webpack-plugin",
- "npm:tsconfig-paths-webpack-plugin",
- "npm:terser-webpack-plugin",
- "npm:fork-ts-checker-webpack-plugin"
- ]
- },
- {
- "file": "packages/web/src/utils/devserver.config.spec.ts",
- "hash": "7d659ee9ec01b39bca1d7a340b676380cbeb09a4"
- },
- {
- "file": "packages/web/src/utils/devserver.config.ts",
- "hash": "3e4705a8ea090357a46675cdab27425e63549069",
- "deps": [
- "devkit",
- "npm:webpack",
- "npm:webpack-dev-server",
- "npm:fs-extra"
- ]
- },
- {
- "file": "packages/web/src/utils/fs.ts",
- "hash": "c9b512bb29f979a912d40d556ab6a390313840dc",
- "deps": ["npm:fs-extra", "nx"]
- },
- {
- "file": "packages/web/src/utils/hash-format.ts",
- "hash": "f3693f67d15bbe33c583e50680969103d01bac51"
- },
- {
- "file": "packages/web/src/utils/interpolate-env-variables-to-index.spec.ts",
- "hash": "45fda63c15483c1aee1cb8c85c879388514bf2b4"
- },
- {
- "file": "packages/web/src/utils/interpolate-env-variables-to-index.ts",
- "hash": "f942098020478d03b514597fac74e963fc467d8a"
- },
- {
- "file": "packages/web/src/utils/normalize.spec.ts",
- "hash": "851b8393626aad34a11d0bd4439081f9460c84cf"
- },
- {
- "file": "packages/web/src/utils/normalize.ts",
- "hash": "5dc96c3f197a586ac6f3efc596bb739699518876",
- "deps": ["devkit"]
- },
- {
- "file": "packages/web/src/utils/run-webpack.ts",
- "hash": "c9298c8ef746a13c858a94c9f928c2770628463c",
- "deps": ["npm:webpack", "npm:webpack-dev-server", "npm:rxjs"]
- },
- {
- "file": "packages/web/src/utils/serve-path.ts",
- "hash": "8757646b07e6cb761e29f31b8a5086e5ad25aabe"
- },
- {
- "file": "packages/web/src/utils/shared-models.ts",
- "hash": "335e685badba0f2dd936c7c944d4c8b1e785076e"
- },
- {
- "file": "packages/web/src/utils/versions.ts",
- "hash": "09a8f017bc5986bed5bde3a48a86b85832a4281b"
- },
- {
- "file": "packages/web/src/utils/web-babel-loader.ts",
- "hash": "c13ddcfae3d623bf409dc94f031b65f412de243c"
- },
- {
- "file": "packages/web/src/utils/web.config.ts",
- "hash": "84b645a821f5358470c1225e8ceb83550462dd95",
- "deps": [
- "workspace",
- "npm:typescript",
- "npm:loader-utils",
- "npm:webpack",
- "npm:mini-css-extract-plugin",
- "npm:webpack-merge",
- "npm:postcss-import",
- "npm:postcss",
- "npm:sass"
- ]
- },
- {
- "file": "packages/web/src/utils/webpack/build-browser-features.spec.ts",
- "hash": "ed5d7ba5a99b8ff8ca748ddc6fbfab9a6bd7b931",
- "deps": ["npm:memfs", "npm:typescript"]
- },
- {
- "file": "packages/web/src/utils/webpack/build-browser-features.ts",
- "hash": "790c31ffdf675b3790969a3a391571b36b92e08e",
- "deps": ["npm:typescript"]
- },
- {
- "file": "packages/web/src/utils/webpack/custom-webpack.ts",
- "hash": "fcbaa515a062f7b79a25def6008e3e40393a9d42",
- "deps": ["npm:ts-node", "npm:tsconfig-paths"]
- },
- {
- "file": "packages/web/src/utils/webpack/package-chunk-sort.ts",
- "hash": "50043c60922d7a7b00fa2d12f4505ffb9d6451d3"
- },
- {
- "file": "packages/web/src/utils/webpack/partials/browser.ts",
- "hash": "ce0b75c2ca4576e1b766055aeda6505441b9a27a",
- "deps": [
- "npm:license-webpack-plugin",
- "npm:webpack-subresource-integrity"
- ]
- },
- {
- "file": "packages/web/src/utils/webpack/partials/common.ts",
- "hash": "e3d39a07279db2ec9f5abb7cc2131c1192a8d6a3",
- "deps": [
- "npm:typescript",
- "npm:webpack",
- "npm:css-minimizer-webpack-plugin"
- ]
- },
- {
- "file": "packages/web/src/utils/webpack/partials/styles.ts",
- "hash": "984a7f1b61dd09357ddeb945ef8d2b50bfcde822",
- "deps": [
- "npm:webpack",
- "npm:mini-css-extract-plugin",
- "npm:autoprefixer",
- "npm:postcss-import"
- ]
- },
- {
- "file": "packages/web/src/utils/webpack/plugins/index-file/augment-index-html.ts",
- "hash": "add879d69c10ff5b22a75b63e386b4c925723de3"
- },
- {
- "file": "packages/web/src/utils/webpack/plugins/index-file/html-rewriting-stream.ts",
- "hash": "f55ed21da81af025873090ac05e5e6b2f7f26b17"
- },
- {
- "file": "packages/web/src/utils/webpack/plugins/index-file/index-html-generator.ts",
- "hash": "00a96e80decdd3fce98d741d9283f9e690940583"
- },
- {
- "file": "packages/web/src/utils/webpack/plugins/index-html-webpack-plugin.ts",
- "hash": "713d0346fc0710e173329134e218b401df2553fd",
- "deps": ["npm:webpack"]
- },
- {
- "file": "packages/web/src/utils/webpack/plugins/postcss-cli-resources.ts",
- "hash": "751440931181c072c624d326afa2e349f36f5a5a",
- "deps": ["npm:loader-utils", "npm:postcss", "npm:webpack"]
- },
- {
- "file": "packages/web/src/utils/webpack/plugins/raw-css-loader.ts",
- "hash": "adc45e6b321871131575e5f964e9e17bf2ef2927"
- },
- {
- "file": "packages/web/src/utils/webpack/plugins/remove-empty-scripts-plugin.ts",
- "hash": "796689503ee45b469ef1695261cac0d758fd6179"
- },
- {
- "file": "packages/web/src/utils/webpack/plugins/remove-hash-plugin.ts",
- "hash": "e05b628a49455ebe51526b76b7ac855296d4da47"
- },
- {
- "file": "packages/web/src/utils/webpack/plugins/scripts-webpack-plugin.ts",
- "hash": "626d64409673168b39f3eccd1486450ce98c3c5f",
- "deps": ["npm:loader-utils", "npm:webpack", "npm:webpack-sources"]
- },
- {
- "file": "packages/web/src/utils/webpack/safari-nomodule.js",
- "hash": "3ed244256f3a9c3507da1c0fa22ecdf627242e75"
- },
- {
- "file": "packages/web/src/utils/webpack/write-index-html.ts",
- "hash": "73a040e7b072864cd87910e3aa9365bd08d8ac2a",
- "deps": ["npm:webpack-sources", "npm:parse5"]
- },
- {
- "file": "packages/web/tsconfig.json",
- "hash": "58bd2c97a66f5e5ea5d05c8a5709ee79bad02094"
- },
- {
- "file": "packages/web/tsconfig.lib.json",
- "hash": "1d2ddef3c1be3aa86cb55b66b9c912d3c6bf1a07"
- },
- {
- "file": "packages/web/tsconfig.spec.json",
- "hash": "869c90c526a0fe7b4b32c39d3989c66259545d9a"
- }
- ]
- }
- },
- {
- "name": "e2e-cypress",
- "type": "app",
- "data": {
- "tags": [],
- "root": "e2e/cypress",
- "files": [
- {
- "file": "e2e/cypress/jest.config.ts",
- "hash": "a493ad946820ae14c9bcc96676efc38de6a59020"
- },
- {
- "file": "e2e/cypress/project.json",
- "hash": "1b6f131fea9243d84fd7742aeccb2a5a2f63b1b8"
- },
- {
- "file": "e2e/cypress/src/cypress.test.ts",
- "hash": "62fffefdb7cca32731abc9b29edeb55cb5dfa991",
- "deps": ["e2e-utils", "npm:cypress", "cypress"]
- },
- {
- "file": "e2e/cypress/tsconfig.json",
- "hash": "6d5abf84832009a8c70e7a910c49f332bf1f0612"
- },
- {
- "file": "e2e/cypress/tsconfig.spec.json",
- "hash": "1a24bfb0a13536cd17717808ca5609e15def438f"
- }
- ]
- }
- },
- {
- "name": "e2e-nx-init",
- "type": "app",
- "data": {
- "tags": [],
- "root": "e2e/nx-init",
- "files": [
- {
- "file": "e2e/nx-init/jest.config.ts",
- "hash": "bf6d9e472c0bc71381c64616a59dd80d2943cb0b"
- },
- {
- "file": "e2e/nx-init/project.json",
- "hash": "4e79b374b80873ab2e63c8cc8854c7649716f326"
- },
- {
- "file": "e2e/nx-init/src/nx-init.test.ts",
- "hash": "d84e9fbd81355629ac23b019b8eeb222135ad1f4",
- "deps": ["e2e-utils"]
- },
- {
- "file": "e2e/nx-init/src/nx-project-graph.test.ts",
- "hash": "c3bb3156de57faab60011917171c6a15e5facf0d",
- "deps": ["e2e-utils"]
- },
- {
- "file": "e2e/nx-init/tsconfig.json",
- "hash": "6d5abf84832009a8c70e7a910c49f332bf1f0612"
- },
- {
- "file": "e2e/nx-init/tsconfig.spec.json",
- "hash": "1a24bfb0a13536cd17717808ca5609e15def438f"
- }
- ]
- }
- },
- {
- "name": "e2e-nx-misc",
- "type": "app",
- "data": {
- "tags": [],
- "root": "e2e/nx-misc",
- "files": [
- {
- "file": "e2e/nx-misc/jest.config.ts",
- "hash": "538339c8bc3f4553b281eb7faf54b4b21a205234"
- },
- {
- "file": "e2e/nx-misc/project.json",
- "hash": "ddf901566e86f53feb469fba9be331a649389f3e"
- },
- {
- "file": "e2e/nx-misc/src/extras.test.ts",
- "hash": "5ad10a7bf12b05d50f3d03847ab93046acd3ef33",
- "deps": ["e2e-utils", "devkit"]
- },
- {
- "file": "e2e/nx-misc/src/misc.test.ts",
- "hash": "4a41464d48daa0c82ccf7a05fe20720adeee639a",
- "deps": ["e2e-utils", "nx"]
- },
- {
- "file": "e2e/nx-misc/src/workspace.test.ts",
- "hash": "e9c7f25f556aa0f44538d229c20c6b04e820e9a2",
- "deps": ["e2e-utils"]
- },
- {
- "file": "e2e/nx-misc/tsconfig.json",
- "hash": "6d5abf84832009a8c70e7a910c49f332bf1f0612"
- },
- {
- "file": "e2e/nx-misc/tsconfig.spec.json",
- "hash": "1a24bfb0a13536cd17717808ca5609e15def438f"
- }
- ]
- }
- },
- {
- "name": "js",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/js",
- "files": [
- {
- "file": "packages/js/.babelrc",
- "hash": "cf7ddd99c615a064ac18eb3109eee4f394ab1faf"
- },
- {
- "file": "packages/js/.eslintrc.json",
- "hash": "fab01c73bb2385a2e0f3cbde8c5192789580db21"
- },
- {
- "file": "packages/js/executors.json",
- "hash": "bfedf70d9d752dd68d87ee2ea3b45f641f06a0dc"
- },
- {
- "file": "packages/js/generators.json",
- "hash": "2ae21a2c90014ddf9c3c42ddedb8acc8f3cd3fa2"
- },
- {
- "file": "packages/js/jest.config.ts",
- "hash": "b67998652bedafd37604ced8767404aaa77ef03e"
- },
- {
- "file": "packages/js/migrations.json",
- "hash": "569c636498098400865fc06d2a1c1b0d5622d243"
- },
- {
- "file": "packages/js/migrations.spec.ts",
- "hash": "a3f53a6c0415579d58fe976323ed1661e379deba"
- },
- {
- "file": "packages/js/package.json",
- "hash": "29450b0eb9d94424a5c8b972104bb266ba780da9",
- "deps": [
- "devkit",
- "jest",
- "linter",
- "workspace",
- "npm:@parcel/watcher",
- "npm:chalk",
- "npm:fast-glob",
- "npm:fs-extra",
- "npm:ignore",
- "npm:minimatch",
- "npm:source-map-support",
- "npm:tree-kill"
- ]
- },
- {
- "file": "packages/js/project.json",
- "hash": "fa3772d78f3147cc09a13738cacb26828995be13"
- },
- {
- "file": "packages/js/README.md",
- "hash": "7e5d73ccf1fc42fed197767b3649f3ec39884a58"
- },
- {
- "file": "packages/js/src/executors/node/compat.ts",
- "hash": "44014a83a152af632a49566a4bf71e25d4ef7b1d",
- "deps": ["devkit"]
- },
- {
- "file": "packages/js/src/executors/node/node-with-require-overrides.ts",
- "hash": "6d152d5adacb738b70c96273f7ff21044f54c235"
- },
- {
- "file": "packages/js/src/executors/node/node.impl.ts",
- "hash": "d54b71ceaeff233df200925239deb702e29178cd",
- "deps": ["devkit", "workspace", "nx", "npm:tree-kill"]
- },
- {
- "file": "packages/js/src/executors/node/schema.d.ts",
- "hash": "8ce910c7c70a50fa5be2e84100c31ec705992808"
- },
- {
- "file": "packages/js/src/executors/node/schema.json",
- "hash": "5208f43b282855f3f908788d4b4034979417c910"
- },
- {
- "file": "packages/js/src/executors/swc/compat.ts",
- "hash": "478b3ef73f5026cf71b9618515c2bd993cc26e9c",
- "deps": ["devkit"]
- },
- {
- "file": "packages/js/src/executors/swc/schema.json",
- "hash": "f6de3bc096fbe8aca3be49b02e44bac642fb505c"
- },
- {
- "file": "packages/js/src/executors/swc/swc.impl.ts",
- "hash": "163cdc4049322e510c72183ea5b2c00370bb958e",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/js/src/executors/tsc/compat.ts",
- "hash": "546cfcc0e415aa08c4186dfda4256c9262a5f837",
- "deps": ["devkit"]
- },
- {
- "file": "packages/js/src/executors/tsc/schema.json",
- "hash": "183d06d701204105ed25816b6cc15786c3e70ac1"
- },
- {
- "file": "packages/js/src/executors/tsc/tsc.impl.ts",
- "hash": "65267201bdfc177bc8a51a4d96e4c118b62bc6f1",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/js/src/generators/convert-to-swc/convert-to-swc.spec.ts",
- "hash": "7dd82edde8fcbf227708594afa4d785fb0d9a1d7",
- "deps": ["devkit"]
- },
- {
- "file": "packages/js/src/generators/convert-to-swc/convert-to-swc.ts",
- "hash": "ba157a1bf1ce2d90d58195b2f1687a3b7990779e",
- "deps": ["devkit"]
- },
- {
- "file": "packages/js/src/generators/convert-to-swc/schema.d.ts",
- "hash": "d8dbeaa13bc322f5f2cfc3dedee359a7ba7647f9"
- },
- {
- "file": "packages/js/src/generators/convert-to-swc/schema.json",
- "hash": "0b15cdffe02643795babb414fd5c1eab03c18e15"
- },
- {
- "file": "packages/js/src/generators/init/init.ts",
- "hash": "b6cf117dbbdd675035463f60a5835509b7082872",
- "deps": ["devkit"]
- },
- {
- "file": "packages/js/src/generators/init/schema.json",
- "hash": "00e651cc61390b4110f0d89c487459f044b65878"
- },
- {
- "file": "packages/js/src/generators/library/__snapshots__/library.spec.ts.snap",
- "hash": "aaa14053ee3da66852477d316e3e490ef39552d5"
- },
- {
- "file": "packages/js/src/generators/library/files/jest-config/jest.config.__ext__",
- "hash": "acafb3c173142ef93673982828abe3887e937b66"
- },
- {
- "file": "packages/js/src/generators/library/files/lib/package.json__tmpl__",
- "hash": "7ede38f8da1ed5a53f7be6a04605264a0406ed65"
- },
- {
- "file": "packages/js/src/generators/library/files/lib/README.md",
- "hash": "33fea67f357d586363211dd5d424d729e6720d28"
- },
- {
- "file": "packages/js/src/generators/library/files/lib/src/index.ts__tmpl__",
- "hash": "32176b3ef175e1c81af513d1381762f4dca7e1b2"
- },
- {
- "file": "packages/js/src/generators/library/files/lib/src/lib/__fileName__.spec.ts__tmpl__",
- "hash": "35b0948b95087892cb9694ff9880cf254de6985e"
- },
- {
- "file": "packages/js/src/generators/library/files/lib/src/lib/__fileName__.ts__tmpl__",
- "hash": "ae311e3ac41f0b1ffb8f097e7f4e27ca08512f91"
- },
- {
- "file": "packages/js/src/generators/library/files/lib/tsconfig.json__tmpl__",
- "hash": "8d27bd10719eba4128841b4841f2945bc4786772"
- },
- {
- "file": "packages/js/src/generators/library/files/lib/tsconfig.lib.json__tmpl__",
- "hash": "15a16deae4414c5c00eeaccd34f5caab15e9b0c3"
- },
- {
- "file": "packages/js/src/generators/library/library.spec.ts",
- "hash": "536d4aa839921b4875ce11fea79a7eaed81edb69",
- "deps": ["devkit"]
- },
- {
- "file": "packages/js/src/generators/library/library.ts",
- "hash": "bd946eb40d4f5a12685c364a696a1550b5c0cd85",
- "deps": ["devkit", "nx", "jest", "linter", "workspace"]
- },
- {
- "file": "packages/js/src/generators/library/schema.json",
- "hash": "57426a85821ea8d3bbbb476eada89b5142c32194"
- },
- {
- "file": "packages/js/src/index.ts",
- "hash": "a766533e9987f49027e43aec8eda18e93ee1c489"
- },
- {
- "file": "packages/js/src/migrations/update-13-10-1/__snapshots__/update-lib-swcrc-exclude.spec.ts.snap",
- "hash": "dbd56e68bf316e84e8b047b6a02d2452fdbac40b"
- },
- {
- "file": "packages/js/src/migrations/update-13-10-1/update-lib-swcrc-exclude.spec.ts",
- "hash": "425893d29a1b2e2f3d3a03ddeb33e22fb06dc8dd",
- "deps": ["devkit"]
- },
- {
- "file": "packages/js/src/migrations/update-13-10-1/update-lib-swcrc-exclude.ts",
- "hash": "6a4f4755923f8410bbc6cc9b216237f56c3df57d",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/js/src/migrations/update-13-8-5/update-node-executor.spec.ts",
- "hash": "988a23cbf7666b900c15425841dc0458e7f1a196",
- "deps": ["devkit"]
- },
- {
- "file": "packages/js/src/migrations/update-13-8-5/update-node-executor.ts",
- "hash": "e4150465af7596bf09e0bc4b71d4f1163395065a",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/js/src/migrations/update-13-8-5/update-swcrc.spec.ts",
- "hash": "23fc57a459e660982bf6a85ad5e874b55b62ce87",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/js/src/migrations/update-13-8-5/update-swcrc.ts",
- "hash": "469feb874516ed805269626b55d8c8cc0cfab19c",
- "deps": ["devkit"]
- },
- {
- "file": "packages/js/src/migrations/update-14-0-0/__snapshots__/exclude-jest-config-swcrc.spec.ts.snap",
- "hash": "d9f768e42113db682dbe1977206a5849be0f5dac"
- },
- {
- "file": "packages/js/src/migrations/update-14-0-0/exclude-jest-config-swcrc.spec.ts",
- "hash": "e98325f63afc24dcb08504273abb5b543cd46652",
- "deps": ["devkit", "nx"]
- },
- {
- "file": "packages/js/src/migrations/update-14-0-0/exclude-jest-config-swcrc.ts",
- "hash": "5bcf4d3601b2680cf2ad837435b4d094f4f544e6",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/js/src/migrations/update-14.1.5-beta.0/update-swcrc-path.spec.ts",
- "hash": "8e45cf573585a4d2c434d347359a1bdef95eff85",
- "deps": ["devkit"]
- },
- {
- "file": "packages/js/src/migrations/update-14.1.5-beta.0/update-swcrc-path.ts",
- "hash": "6fe831cbea45a07fba5fcb7b62fb45a523770a91",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/js/src/utils/check-dependencies.ts",
- "hash": "2b6858ce1670a27233bb8ca5d487b7d5113ee346",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/js/src/utils/code-frames/code-frames.ts",
- "hash": "a79a5aa3494afb5ec4128992e7e98e610d6af040",
- "deps": ["npm:chalk"]
- },
- {
- "file": "packages/js/src/utils/code-frames/highlight.ts",
- "hash": "bcd67a63b1141864f7344e590027930f4a5b339a",
- "deps": ["npm:chalk"]
- },
- {
- "file": "packages/js/src/utils/code-frames/identifiers.ts",
- "hash": "6a31b6c5f94b19567a4ced4a29eb8af646f4a3a5"
- },
- {
- "file": "packages/js/src/utils/compiler-helper-dependency.ts",
- "hash": "c9fab1c13eb39d70e2cf597623edb01978452d5a",
- "deps": ["devkit", "workspace"]
- },
- {
- "file": "packages/js/src/utils/copy-assets-handler.spec.ts",
- "hash": "b1f0e0d00b6243228e03841308c6a625008927d3",
- "deps": ["npm:fs-extra"]
- },
- {
- "file": "packages/js/src/utils/copy-assets-handler.ts",
- "hash": "155c1cc538897739dd5a5977e9125876c5f76d1b",
- "deps": [
- "npm:@parcel/watcher",
- "npm:minimatch",
- "npm:fs-extra",
- "npm:ignore",
- "npm:fast-glob",
- "workspace",
- "devkit"
- ]
- },
- {
- "file": "packages/js/src/utils/create-async-iterable/create-async-iterable.spec.ts",
- "hash": "2c999bc014acd51a76e8a4481048f10b6b3cd267"
- },
- {
- "file": "packages/js/src/utils/create-async-iterable/create-async-iteratable.ts",
- "hash": "9df566c660a96ca1ea9c774ead4166eff4ea2801"
- },
- {
- "file": "packages/js/src/utils/minimal-publish-script.ts",
- "hash": "98bf5150639f9781858ebd5ae6335a6a9d652bac",
- "deps": ["devkit"]
- },
- {
- "file": "packages/js/src/utils/schema.d.ts",
- "hash": "8e585b0ffee5df3478ff1651ca1f65061043922d",
- "deps": ["workspace"]
- },
- {
- "file": "packages/js/src/utils/swc/add-swc-config.ts",
- "hash": "eca563191e31e4df3c9d4a55ad3c928ed58235fe",
- "deps": ["devkit"]
- },
- {
- "file": "packages/js/src/utils/swc/add-swc-dependencies.ts",
- "hash": "b36dee699a178acf483ba23a402085e6057e2b69",
- "deps": ["devkit"]
- },
- {
- "file": "packages/js/src/utils/swc/compile-swc.ts",
- "hash": "51b2a2cedc43f82bd887787fe13bba59c8ff046d",
- "deps": ["devkit", "npm:fs-extra"]
- },
- {
- "file": "packages/js/src/utils/swc/get-swcrc-path.ts",
- "hash": "781c83faa70b87e906c1d0fdf9eccf3afd1e12f0"
- },
- {
- "file": "packages/js/src/utils/typescript/__mocks__/plugin-a.ts",
- "hash": "b5131cd5858eedba4cfe0c3b0e951beaa7263d67"
- },
- {
- "file": "packages/js/src/utils/typescript/__mocks__/plugin-b.ts",
- "hash": "df5ae8932752c118737c96bc1828d529ba1290aa"
- },
- {
- "file": "packages/js/src/utils/typescript/compile-typescript-files.ts",
- "hash": "09d7e0ac662882e9807f31160d3be3aa1b90fc0b",
- "deps": ["devkit", "workspace", "npm:typescript"]
- },
- {
- "file": "packages/js/src/utils/typescript/load-ts-transformers.spec.ts",
- "hash": "69610f2b0c136937b179780d8187fdb5e4564631"
- },
- {
- "file": "packages/js/src/utils/typescript/load-ts-transformers.ts",
- "hash": "fc847c54b4632213f1d3fef0efa9a7640d2daadb",
- "deps": ["devkit"]
- },
- {
- "file": "packages/js/src/utils/typescript/print-diagnostics.ts",
- "hash": "78de064524032f15f1499b2b7da44763e731aff5"
- },
- {
- "file": "packages/js/src/utils/typescript/run-type-check.spec.ts",
- "hash": "54b2896bf7be33bd00cf8dee0b27e7e3b215a8c3",
- "deps": ["npm:fs-extra"]
- },
- {
- "file": "packages/js/src/utils/typescript/run-type-check.ts",
- "hash": "6ebb695ac5dfa46db774ab614fc7b0b8784d5f5f",
- "deps": ["workspace", "npm:chalk", "npm:typescript"]
- },
- {
- "file": "packages/js/src/utils/typescript/test-fixtures/source-with-errors.ts",
- "hash": "a422365e6ba5a68a5783dfe21787ac76c5da48f9"
- },
- {
- "file": "packages/js/src/utils/typescript/test-fixtures/tsconfig.json",
- "hash": "97b9d757bdf50fa9e0cc2a6dd95457aba85ce671"
- },
- {
- "file": "packages/js/src/utils/typescript/types.ts",
- "hash": "8dc792c363d72788398fbcd2cce7f96bd747512f",
- "deps": ["npm:typescript"]
- },
- {
- "file": "packages/js/src/utils/update-package-json.ts",
- "hash": "e3b3be849384564fbeba31561ca74604833d64ca",
- "deps": ["devkit", "workspace", "nx"]
- },
- {
- "file": "packages/js/src/utils/versions.ts",
- "hash": "d0b49fd710a7fcbb731d87579b295fc8f4a8335d",
- "deps": ["nx"]
- },
- {
- "file": "packages/js/src/utils/watch-for-single-file-changes.ts",
- "hash": "6408ad3f2eacd62e5c35359cc9c1378086233d3b",
- "deps": ["devkit", "npm:@parcel/watcher"]
- },
- {
- "file": "packages/js/tsconfig.json",
- "hash": "62ebbd946474cea997e774d20fffc4d585c184f3"
- },
- {
- "file": "packages/js/tsconfig.lib.json",
- "hash": "82bab87ede4f732dbc318b81dde9d9692bcd17af"
- },
- {
- "file": "packages/js/tsconfig.spec.json",
- "hash": "6e605fc25fc53f0f949608b22e445f4304219f99"
- }
- ]
- }
- },
- {
- "name": "nx",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "packages/nx",
- "files": [
- {
- "file": "packages/nx/.eslintrc.json",
- "hash": "d7d209d33f5c63dd2fb74869e98819c5cbfc18ee"
- },
- {
- "file": "packages/nx/bin/compute-project-graph.ts",
- "hash": "bb1b3bdb40b44325c2455b94eb7f8687411ea212"
- },
- {
- "file": "packages/nx/bin/init-local.ts",
- "hash": "8c5cf0722bdd229728522d9f9d227dce5e6c86ed",
- "deps": ["npm:enquirer"]
- },
- {
- "file": "packages/nx/bin/nx.ts",
- "hash": "dd11144ce34e2b875d888ee281566cfe2aba148e",
- "deps": ["npm:chalk"]
- },
- {
- "file": "packages/nx/bin/run-executor.ts",
- "hash": "2e68b21ec8211d711971a663088d3a26bce20a8a"
- },
- {
- "file": "packages/nx/docs/run-commands-examples.md",
- "hash": "41d43eeff62e458f67983ee34d3e6c72c8426f14"
- },
- {
- "file": "packages/nx/docs/run-script-examples.md",
- "hash": "ddfc4c77bf80695de3cd5b770df790b73bc093ca"
- },
- {
- "file": "packages/nx/executors.json",
- "hash": "c69d5eb941fbf768fa93ceefb197260bd65c0b74"
- },
- {
- "file": "packages/nx/jest.config.ts",
- "hash": "341594bb4af0d13daad938f649ab553f2c5e0bc1"
- },
- {
- "file": "packages/nx/migrations.json",
- "hash": "121e1104d0c551080cbe84fb4cd8cc0e408f36f4"
- },
- {
- "file": "packages/nx/package.json",
- "hash": "a47c2b99ffe9ebebc924211aac3425d7af066295",
- "deps": [
- "npm:@parcel/watcher",
- "npm:chalk",
- "npm:chokidar",
- "npm:cliui",
- "npm:dotenv",
- "npm:enquirer",
- "npm:fast-glob",
- "npm:flat",
- "npm:fs-extra",
- "npm:glob",
- "npm:ignore",
- "npm:jsonc-parser",
- "npm:minimatch",
- "npm:npm-run-path",
- "npm:open",
- "npm:semver",
- "npm:string-width",
- "npm:tar-stream",
- "npm:tmp",
- "npm:tsconfig-paths",
- "npm:tslib",
- "npm:yargs",
- "npm:yargs-parser",
- "npm:js-yaml",
- "npm:@swc-node/register",
- "npm:@swc/core"
- ]
- },
- {
- "file": "packages/nx/presets/core.json",
- "hash": "dc91d269dd1670996a0308d52818ca4d5245ed24"
- },
- {
- "file": "packages/nx/presets/npm.json",
- "hash": "b754765d7550842e525d54bfc61c2e2697bda935"
- },
- {
- "file": "packages/nx/project.json",
- "hash": "c6b3a596ff29cf600f62a3076c1b9b9424764766"
- },
- {
- "file": "packages/nx/README.md",
- "hash": "37eb64ddbdbef18069a53a64e26181513e5cfb32"
- },
- {
- "file": "packages/nx/schemas/nx-schema.json",
- "hash": "cd6506d99b2b2c69db11930e1c457b2483971315"
- },
- {
- "file": "packages/nx/schemas/project-schema.json",
- "hash": "60a77577f5f0b146c71a5d2fca63daeaf8561d55"
- },
- {
- "file": "packages/nx/schemas/workspace-schema.json",
- "hash": "02c1513bf90548242e7a2b8fd2428d2d5157cd4b"
- },
- {
- "file": "packages/nx/src/adapter/compat.ts",
- "hash": "4f6eac334c1bcefa42e2783deafcca261a81e19c",
- "deps": [
- "npm:@angular-devkit/build-angular",
- "npm:@angular-devkit/core"
- ]
- },
- {
- "file": "packages/nx/src/adapter/decorate-cli.ts",
- "hash": "7126a16e8c98f8cb4c2eec1b80a3f8db3c65bff0"
- },
- {
- "file": "packages/nx/src/adapter/ngcli-adapter.ts",
- "hash": "3e872dd16c8661f9b328a6f5a9dbb024e175fab0",
- "deps": [
- "npm:@angular-devkit/core",
- "npm:chalk",
- "npm:@angular-devkit/architect",
- "npm:rxjs",
- "npm:@angular-devkit/schematics"
- ]
- },
- {
- "file": "packages/nx/src/adapter/rxjs-for-await.ts",
- "hash": "6810a32ace1986e217446e800ba40d80456816d9",
- "deps": ["npm:rxjs"]
- },
- {
- "file": "packages/nx/src/command-line/affected.ts",
- "hash": "55aa0f577ee19923739f86b86b577891687fe8ac"
- },
- {
- "file": "packages/nx/src/command-line/connect-to-nx-cloud.ts",
- "hash": "a182ea73ea8732857f39fe956c9e5bacb411b986"
- },
- {
- "file": "packages/nx/src/command-line/daemon.ts",
- "hash": "aed536011bcd3687a529c81f44c741b44ae8f18f",
- "deps": ["npm:yargs"]
- },
- {
- "file": "packages/nx/src/command-line/dep-graph.ts",
- "hash": "b291d3290e5d8523905299ca802ad70193482d87",
- "deps": ["npm:chokidar", "npm:fs-extra", "npm:ignore", "npm:open"]
- },
- {
- "file": "packages/nx/src/command-line/examples.ts",
- "hash": "285a62525d778fcc3d01784978550197bd59523d"
- },
- {
- "file": "packages/nx/src/command-line/format.ts",
- "hash": "65553fc2e8aaf79201d4175c800d7d2eac12ab7d",
- "deps": ["npm:yargs", "npm:prettier"]
- },
- {
- "file": "packages/nx/src/command-line/generate.ts",
- "hash": "8c05fa147547d2461e9ff1d5bb5dbeec599a69cf",
- "deps": ["npm:chalk", "npm:enquirer"]
- },
- {
- "file": "packages/nx/src/command-line/init.ts",
- "hash": "3a11f306a13ebabf74766adcd9c672e7b69e7db5"
- },
- {
- "file": "packages/nx/src/command-line/lint.ts",
- "hash": "8b1a1652a5cd6f8680d7a169b79ab639f877d038"
- },
- {
- "file": "packages/nx/src/command-line/list.ts",
- "hash": "c134cbd697e2d09d57d3ad5c05412141b4bd72d1"
- },
- {
- "file": "packages/nx/src/command-line/migrate.spec.ts",
- "hash": "bbad6f89494fb241d67a18c5cf244c4707e0c3c2"
- },
- {
- "file": "packages/nx/src/command-line/migrate.ts",
- "hash": "ac9b9a585243efdf8ebd09851cc82402d7412c62",
- "deps": ["npm:chalk", "npm:semver"]
- },
- {
- "file": "packages/nx/src/command-line/nx-commands.spec.ts",
- "hash": "d37b249e91a66c7ee3edaceb8e52835c2fc98922"
- },
- {
- "file": "packages/nx/src/command-line/nx-commands.ts",
- "hash": "db426482ca2a314489217e49e34b14ec30d4dc87",
- "deps": ["npm:chalk", "npm:yargs"]
- },
- {
- "file": "packages/nx/src/command-line/print-affected.spec.ts",
- "hash": "7cd4a5e1ae17f65fb782c468126f07fd15156076"
- },
- {
- "file": "packages/nx/src/command-line/print-affected.ts",
- "hash": "31e7d64adf57e3cd53dfd494e9a15cd4e8d10b2d",
- "deps": ["npm:yargs"]
- },
- {
- "file": "packages/nx/src/command-line/read-environment.ts",
- "hash": "0075157867398a7acac492155da1b2de9ade2e12"
- },
- {
- "file": "packages/nx/src/command-line/repair.ts",
- "hash": "699ee1a31c2f45c9520ba8ec3849c2cb6f4c3df0"
- },
- {
- "file": "packages/nx/src/command-line/report.spec.ts",
- "hash": "31705f48cf1e1ad6103ae484e44909c8150dd66a"
- },
- {
- "file": "packages/nx/src/command-line/report.ts",
- "hash": "bf4345eb35cd8014a8262b6dc7017881807f1140",
- "deps": ["npm:chalk"]
- },
- {
- "file": "packages/nx/src/command-line/reset.ts",
- "hash": "e8f8ab45e436b9cfa1fa69d9a6975a82f3630a85",
- "deps": ["npm:fs-extra"]
- },
- {
- "file": "packages/nx/src/command-line/run-many.ts",
- "hash": "61d70c7e66d21854f007ec8e9ca91bbd64c2ae89",
- "deps": ["npm:yargs"]
- },
- {
- "file": "packages/nx/src/command-line/run-one.ts",
- "hash": "3a540a3317fc15a664dbab5671467a12578155bf"
- },
- {
- "file": "packages/nx/src/command-line/run.ts",
- "hash": "a43ab9e5562298a45c8a47f929d7c57663f1e1ee"
- },
- {
- "file": "packages/nx/src/command-line/workspace-generators.ts",
- "hash": "7b7f137950ad003f5f0df371f18d1b089af2824d",
- "deps": [
- "npm:chalk",
- "npm:fs-extra",
- "npm:yargs-parser",
- "npm:typescript"
- ]
- },
- {
- "file": "packages/nx/src/command-line/workspace-integrity-checks.spec.ts",
- "hash": "246d6e93b757e2802dab9d7a5e349c89eb5bfc97",
- "deps": ["npm:chalk"]
- },
- {
- "file": "packages/nx/src/command-line/workspace-integrity-checks.ts",
- "hash": "f1b4d84f9edceb0e94ea653f61cad5e74c7b28b1"
- },
- {
- "file": "packages/nx/src/config/configuration.ts",
- "hash": "53b579fd6d6284df69f204ba809ef3abdab2e4ba"
- },
- {
- "file": "packages/nx/src/config/misc-interfaces.ts",
- "hash": "4972c96eb6577da9c2d3641b51ed0106204d9c02"
- },
- {
- "file": "packages/nx/src/config/nx-json.ts",
- "hash": "05be51c5e79d80db42afd13a604d9e5015dc5ead"
- },
- {
- "file": "packages/nx/src/config/project-graph.ts",
- "hash": "22070905fd04e03076b4aa622a5a151a9ac2a643"
- },
- {
- "file": "packages/nx/src/config/task-graph.ts",
- "hash": "575c7ea8fbe9084c2b2db6d803e1a50c8e881c66"
- },
- {
- "file": "packages/nx/src/config/workspace-json-project-json.ts",
- "hash": "19363a9c1bb0f3e8fb79b5bfa3b0cff41d1e16c5"
- },
- {
- "file": "packages/nx/src/config/workspaces.spec.ts",
- "hash": "3a608dda9d83a750ade511b248461751d57efff1",
- "deps": ["npm:memfs", "npm:fast-glob"]
- },
- {
- "file": "packages/nx/src/config/workspaces.ts",
- "hash": "3f2d579bd2c3483d787aa83db12545f276be161e",
- "deps": ["npm:fast-glob", "npm:ignore", "npm:js-yaml"]
- },
- {
- "file": "packages/nx/src/daemon/cache.ts",
- "hash": "ec5a2be08b96d1aff6e56df43655f86b8cf66a00",
- "deps": ["npm:fs-extra"]
- },
- {
- "file": "packages/nx/src/daemon/client/client.ts",
- "hash": "c5a3e3712045ed6409210e487f860660ea70e30b",
- "deps": ["npm:fs-extra"]
- },
- {
- "file": "packages/nx/src/daemon/client/exec-is-server-available.ts",
- "hash": "c875abc1e64b1440de3e238f0e18b010c28e3bad"
- },
- {
- "file": "packages/nx/src/daemon/client/generate-help-output.ts",
- "hash": "f8decf824fb3926a807cf7efaf3395f9155d73b9"
- },
- {
- "file": "packages/nx/src/daemon/server/handle-process-in-background.ts",
- "hash": "d4875b001a0709d56cf920bf5b20c3e6dd69aef4"
- },
- {
- "file": "packages/nx/src/daemon/server/handle-request-project-graph.ts",
- "hash": "1109b672283644e1a0f997900df10269ce6326d0"
- },
- {
- "file": "packages/nx/src/daemon/server/logger.spec.ts",
- "hash": "1100ec81317ba7cb3982e50d61e165736dfe1e66"
- },
- {
- "file": "packages/nx/src/daemon/server/logger.ts",
- "hash": "6b760e6bce5707097ba46d982c0a32f73f112058"
- },
- {
- "file": "packages/nx/src/daemon/server/project-graph-incremental-recomputation.ts",
- "hash": "f5b7beec533529836b95679b6d3c2bcb7fc5c2ca"
- },
- {
- "file": "packages/nx/src/daemon/server/server.ts",
- "hash": "d5de77c8be404cc966fb35b819ab89923f0e2ed3"
- },
- {
- "file": "packages/nx/src/daemon/server/shutdown-utils.ts",
- "hash": "f3c412607c3f6cb7f64ac3c46265da3bb84d8a5d"
- },
- {
- "file": "packages/nx/src/daemon/server/start.ts",
- "hash": "12fceb318f9e99ccf733bb1452b894d9dac70495"
- },
- {
- "file": "packages/nx/src/daemon/server/stop.ts",
- "hash": "fde7949566a6456063bcc770e4eedb6fa3b1ad55"
- },
- {
- "file": "packages/nx/src/daemon/server/watcher.ts",
- "hash": "0c1a98c70f6356d5ab9f1ec25d7802a0e3882043",
- "deps": ["npm:@parcel/watcher", "npm:ignore"]
- },
- {
- "file": "packages/nx/src/daemon/socket-utils.ts",
- "hash": "a914e10a58325937de10de7cfcce9b7804f09682"
- },
- {
- "file": "packages/nx/src/daemon/tmp-dir.ts",
- "hash": "d6406bbe6bd5ff71c08d6585ff51cbc77e7bc5cd"
- },
- {
- "file": "packages/nx/src/executors/noop/noop.impl.ts",
- "hash": "3d8be5edac9d37e76de18a737c29ed46b3837b39"
- },
- {
- "file": "packages/nx/src/executors/noop/schema.json",
- "hash": "b2b80b665c204f91b14360e5dd8ac3da40b5dabd"
- },
- {
- "file": "packages/nx/src/executors/run-commands/run-commands.impl.spec.ts",
- "hash": "e962b263a05f9ef36df76d035e9f7654d3d898ea",
- "deps": ["npm:tmp", "npm:npm-run-path"]
- },
- {
- "file": "packages/nx/src/executors/run-commands/run-commands.impl.ts",
- "hash": "aed60308944be0bbf24fce192271883939084c11",
- "deps": [
- "npm:yargs-parser",
- "npm:npm-run-path",
- "npm:chalk",
- "npm:dotenv"
- ]
- },
- {
- "file": "packages/nx/src/executors/run-commands/schema.json",
- "hash": "d15ad9201bf5dd50883e190248dbf505280fa468"
- },
- {
- "file": "packages/nx/src/executors/run-script/run-script.impl.ts",
- "hash": "d0ebc3f91ba4dfaa8b0f35a59cbfead129553157"
- },
- {
- "file": "packages/nx/src/executors/run-script/schema.json",
- "hash": "ada463360833d1e4a1759d3dcef75ccab851ab75"
- },
- {
- "file": "packages/nx/src/generators/internal-utils/format-changed-files-with-prettier-if-available.ts",
- "hash": "965d3a59ff60bfae051494d7e74848273febbcde",
- "deps": ["npm:prettier"]
- },
- {
- "file": "packages/nx/src/generators/testing-utils/create-tree-with-empty-workspace.ts",
- "hash": "ed2eab2df2c19bad2ecb4b721548d93efab4b502"
- },
- {
- "file": "packages/nx/src/generators/testing-utils/create-tree.ts",
- "hash": "9a9d094e5876d70f226a720990b13653d2914b79"
- },
- {
- "file": "packages/nx/src/generators/tree.spec.ts",
- "hash": "37c091af3dfc1375711f79113e817bf268f5bea1",
- "deps": ["npm:fs-extra", "npm:tmp"]
- },
- {
- "file": "packages/nx/src/generators/tree.ts",
- "hash": "d99633c2cc2a6486e5a1d35fc5bd6afe93c3a749",
- "deps": ["npm:fs-extra", "npm:chalk"]
- },
- {
- "file": "packages/nx/src/generators/utils/json.ts",
- "hash": "223a620278fe49cc96412a619581921ba0202178"
- },
- {
- "file": "packages/nx/src/generators/utils/project-configuration.spec.ts",
- "hash": "c5b656ec6abb3706550e47642d8eebd14c726dd1",
- "deps": ["npm:ajv"]
- },
- {
- "file": "packages/nx/src/generators/utils/project-configuration.ts",
- "hash": "f57a4143899c14fa8f4cf42e258d2d3ed83e01b2"
- },
- {
- "file": "packages/nx/src/hasher/file-hasher-base.ts",
- "hash": "d1ac75537c9890bf1b490110ffbddca3662f44d9"
- },
- {
- "file": "packages/nx/src/hasher/file-hasher.ts",
- "hash": "9a49308546010e48fceb6396f21b59368f3e1a09"
- },
- {
- "file": "packages/nx/src/hasher/git-based-file-hasher.ts",
- "hash": "f296e5c110e23231c05d3b0e895e3679829b5114",
- "deps": ["npm:ignore"]
- },
- {
- "file": "packages/nx/src/hasher/git-hasher.spec.ts",
- "hash": "c98af65b2afae35f9ace5e02087ff6de27915755",
- "deps": ["npm:fs-extra", "npm:tmp"]
- },
- {
- "file": "packages/nx/src/hasher/git-hasher.ts",
- "hash": "e93ce44f151263f35a4c2e7c39882ca87cbf16bc"
- },
- {
- "file": "packages/nx/src/hasher/hash-task.ts",
- "hash": "9a08c03cf9818d5049b1c18b33b8a04724f195a8"
- },
- {
- "file": "packages/nx/src/hasher/hasher.spec.ts",
- "hash": "1c39282f9c0e6d844d3c788e629b533f68b8c558",
- "deps": ["npm:memfs"]
- },
- {
- "file": "packages/nx/src/hasher/hasher.ts",
- "hash": "043f7614d4d588efd2f2a15a5f52246418982ab4",
- "deps": ["npm:minimatch"]
- },
- {
- "file": "packages/nx/src/hasher/hashing-impl.ts",
- "hash": "a20c86095d2fd787e06c4ebc625bcac1d0cbdde0"
- },
- {
- "file": "packages/nx/src/hasher/node-based-file-hasher.ts",
- "hash": "98297ada207fb4278fa5e0dec85541831401a3b3",
- "deps": ["npm:ignore"]
- },
- {
- "file": "packages/nx/src/migrations/update-14-0-6/remove-roots.spec.ts",
- "hash": "19907fa7e18abb098bd4ae6fe192d99cdbe1147a"
- },
- {
- "file": "packages/nx/src/migrations/update-14-0-6/remove-roots.ts",
- "hash": "1b8e1a6b143ed93483d30b7853b420d0b7135ebe"
- },
- {
- "file": "packages/nx/src/migrations/update-14-2-0/add-json-schema.spec.ts",
- "hash": "2dccfe87bb9bc29aa8e3e3823149ff9d76a6743d"
- },
- {
- "file": "packages/nx/src/migrations/update-14-2-0/add-json-schema.ts",
- "hash": "8fe5bbeac3cdc6d1e84232b74e9f9d256094ea69"
- },
- {
- "file": "packages/nx/src/migrations/update-14-2-0/remove-default-collection.spec.ts",
- "hash": "5e979819ef0985a846ce25ea6c5103fadc187de4"
- },
- {
- "file": "packages/nx/src/migrations/update-14-2-0/remove-default-collection.ts",
- "hash": "4f4208f8ecedf6776adf709d76e1a5216fa749ae"
- },
- {
- "file": "packages/nx/src/migrations/update-14-2-0/replace-all-relative-outputs-with-absolute.ts",
- "hash": "17af41ff8c3ee98732ea5bcb56ad249cb7f725ec"
- },
- {
- "file": "packages/nx/src/migrations/update-14-3-4/create-target-defaults.spec.ts",
- "hash": "99dd7176d8d8022461827fac3c6a4f55955cbc5f"
- },
- {
- "file": "packages/nx/src/migrations/update-14-3-4/create-target-defaults.ts",
- "hash": "5d5875e175b9bf3b6e60fa3fc4bf86a6a3a21f51"
- },
- {
- "file": "packages/nx/src/project-graph/affected/affected-project-graph-models.ts",
- "hash": "74f891d0a5810a1dbd132e9030274b2a72a736d5"
- },
- {
- "file": "packages/nx/src/project-graph/affected/affected-project-graph.spec.ts",
- "hash": "79c032e2924fb558ebba3c4212078be1e98e4dbd",
- "deps": ["npm:memfs"]
- },
- {
- "file": "packages/nx/src/project-graph/affected/affected-project-graph.ts",
- "hash": "272497731f59f7fa2c33b0859b774b0bb4f33e6c"
- },
- {
- "file": "packages/nx/src/project-graph/affected/locators/implicit-json-changes.spec.ts",
- "hash": "6842c63ec9f90e23ac2f2fcbf80fd89c21054b62"
- },
- {
- "file": "packages/nx/src/project-graph/affected/locators/implicit-json-changes.ts",
- "hash": "2f213fe136464ceb6e551edb7d2239d8fd901cfc",
- "deps": ["npm:flat", "npm:minimatch"]
- },
- {
- "file": "packages/nx/src/project-graph/affected/locators/npm-packages.spec.ts",
- "hash": "d2e826c644bb30cb3f2b9494b2dbebaaf8adc5db"
- },
- {
- "file": "packages/nx/src/project-graph/affected/locators/npm-packages.ts",
- "hash": "be36f5aac0bcf7bb0b30cda014ae1b7c02467891"
- },
- {
- "file": "packages/nx/src/project-graph/affected/locators/tsconfig-json-changes.spec.ts",
- "hash": "a7d60a2223f0fd7dc8f59f3e1ce3791a27854443"
- },
- {
- "file": "packages/nx/src/project-graph/affected/locators/tsconfig-json-changes.ts",
- "hash": "ca612d052a4b2d49682695f44cbdc583983e1801"
- },
- {
- "file": "packages/nx/src/project-graph/affected/locators/workspace-json-changes.spec.ts",
- "hash": "e8d93d0d53b67f2d9d669aefce6c31f7f7465bd2"
- },
- {
- "file": "packages/nx/src/project-graph/affected/locators/workspace-json-changes.ts",
- "hash": "50a1374231d1d2f4fed4cdd5697e7f83776b06b9"
- },
- {
- "file": "packages/nx/src/project-graph/affected/locators/workspace-projects.spec.ts",
- "hash": "34dd7cf9452fdfdb70bcbde58c8ebbed63b42a53"
- },
- {
- "file": "packages/nx/src/project-graph/affected/locators/workspace-projects.ts",
- "hash": "8550d51225721619786b5dce25accb256745e9d9",
- "deps": ["npm:minimatch"]
- },
- {
- "file": "packages/nx/src/project-graph/build-dependencies/build-explicit-typescript-and-package-json-dependencies.ts",
- "hash": "4f4f303a070d9c8788954111b681b124d49aec0e"
- },
- {
- "file": "packages/nx/src/project-graph/build-dependencies/explicit-package-json-dependencies.spec.ts",
- "hash": "00985c3fdf3bc6b072f1540538144092979c22de",
- "deps": ["npm:memfs"]
- },
- {
- "file": "packages/nx/src/project-graph/build-dependencies/explicit-package-json-dependencies.ts",
- "hash": "d9687c5a628dcecbcf799ee224b6e2d9eb2baca6"
- },
- {
- "file": "packages/nx/src/project-graph/build-dependencies/explicit-project-dependencies.spec.ts",
- "hash": "c57f57caa12040454226a8325136f77af3317a59",
- "deps": ["npm:memfs"]
- },
- {
- "file": "packages/nx/src/project-graph/build-dependencies/explicit-project-dependencies.ts",
- "hash": "44f08e2c897c9b99c3f02275a3ab9cf8c59a5c8c"
- },
- {
- "file": "packages/nx/src/project-graph/build-dependencies/implicit-project-dependencies.ts",
- "hash": "97e6409d725e530cf9ea1916ae49f71ea5413a5c"
- },
- {
- "file": "packages/nx/src/project-graph/build-dependencies/implict-project-dependencies.spec.ts",
- "hash": "a63f2a9aa8cfa2a9f75f9c3955e89aec32d7e35d",
- "deps": ["npm:memfs"]
- },
- {
- "file": "packages/nx/src/project-graph/build-dependencies/index.ts",
- "hash": "eec030f38cc599b938b79ff2df9094cffe5944bd"
- },
- {
- "file": "packages/nx/src/project-graph/build-dependencies/typescript-import-locator.ts",
- "hash": "79eeb419aa3ac271912108638d983d11b9f98964",
- "deps": ["npm:typescript"]
- },
- {
- "file": "packages/nx/src/project-graph/build-nodes/index.ts",
- "hash": "faff1905e741416f58a2c0db121eec71a6601eb6"
- },
- {
- "file": "packages/nx/src/project-graph/build-nodes/npm-packages.ts",
- "hash": "1e2113495e63686f37baea629453c49e2c704d6d"
- },
- {
- "file": "packages/nx/src/project-graph/build-nodes/workspace-projects.ts",
- "hash": "479505d308869e01da5e8e2561461f718f0cc529"
- },
- {
- "file": "packages/nx/src/project-graph/build-project-graph.spec.ts",
- "hash": "8fbd65306bc85e9ec86faf128b85baab626de1a9",
- "deps": ["npm:memfs"]
- },
- {
- "file": "packages/nx/src/project-graph/build-project-graph.ts",
- "hash": "fd18fd7a3387cdf2561f308d9878335b8901bc1e"
- },
- {
- "file": "packages/nx/src/project-graph/file-map-utils.spec.ts",
- "hash": "ba7154d70d4d677b32730df96ca0805aa8ae5b28"
- },
- {
- "file": "packages/nx/src/project-graph/file-map-utils.ts",
- "hash": "cd7219007817437323cbbd7079892f4723831528"
- },
- {
- "file": "packages/nx/src/project-graph/file-utils.spec.ts",
- "hash": "1e8f4e322e91ec08a3286dece5c4f050fcb5f1b1",
- "deps": ["npm:ignore"]
- },
- {
- "file": "packages/nx/src/project-graph/file-utils.ts",
- "hash": "1bd07d75281d9f799c34957983088ed9ff14b422",
- "deps": ["npm:ignore"]
- },
- {
- "file": "packages/nx/src/project-graph/nx-deps-cache.spec.ts",
- "hash": "2266e6edc6b8be40e7963cef85871246e417524c"
- },
- {
- "file": "packages/nx/src/project-graph/nx-deps-cache.ts",
- "hash": "63c145c39cb8fd460aa8bb37d8f3407fee743ffe",
- "deps": ["npm:fs-extra"]
- },
- {
- "file": "packages/nx/src/project-graph/operators.spec.ts",
- "hash": "8b9de1d417ffc0e4235e1afd3e1312a1306e7f3e"
- },
- {
- "file": "packages/nx/src/project-graph/operators.ts",
- "hash": "e1d8da566cf02125d7985344a7862a73f1e954b2"
- },
- {
- "file": "packages/nx/src/project-graph/project-graph-builder.spec.ts",
- "hash": "c86dce4c11863cb944387734a8256cffb8143f0f"
- },
- {
- "file": "packages/nx/src/project-graph/project-graph-builder.ts",
- "hash": "c5daabd508234d937b99cecaf4b9eef85010b814"
- },
- {
- "file": "packages/nx/src/project-graph/project-graph-worker.ts",
- "hash": "b2402888ccebc7d841373b29338e14756db7b734"
- },
- {
- "file": "packages/nx/src/project-graph/project-graph.ts",
- "hash": "2b0265be8dc48f4fc8770959f0a99ba85088f1c2"
- },
- {
- "file": "packages/nx/src/tasks-runner/batch/batch-messages.ts",
- "hash": "fe952fe7eba131af7b14e1e7e5b8e6b9f2b8e392"
- },
- {
- "file": "packages/nx/src/tasks-runner/batch/run-batch.ts",
- "hash": "e4b69737c37a0d20f9f4d93cfdc937a5df148a74"
- },
- {
- "file": "packages/nx/src/tasks-runner/cache.spec.ts",
- "hash": "9e63c9402e5f6c9f38dc90d3b97422e2cf8270d4"
- },
- {
- "file": "packages/nx/src/tasks-runner/cache.ts",
- "hash": "07d4c29fd72ee49beba700836148f2c073efd5d9",
- "deps": ["npm:fs-extra", "npm:fast-glob"]
- },
- {
- "file": "packages/nx/src/tasks-runner/create-task-graph.spec.ts",
- "hash": "16b851cacc6bd12ad0f114fd5b7f6e3906b09d0b"
- },
- {
- "file": "packages/nx/src/tasks-runner/create-task-graph.ts",
- "hash": "a85f8edf75c9d8829bac314024b9205d3a001e93"
- },
- {
- "file": "packages/nx/src/tasks-runner/default-tasks-runner.ts",
- "hash": "65eae2f31bc56638107927a66812d52a8457585c"
- },
- {
- "file": "packages/nx/src/tasks-runner/forked-process-task-runner.ts",
- "hash": "18330af8b4edd3c0dd71a16c3c910879a2e88689",
- "deps": ["npm:dotenv"]
- },
- {
- "file": "packages/nx/src/tasks-runner/life-cycle.ts",
- "hash": "1192a73415c1613ca30451bae473fbeba30adde5"
- },
- {
- "file": "packages/nx/src/tasks-runner/life-cycles/dynamic-run-many-terminal-output-life-cycle.ts",
- "hash": "dd278d223fde3793a6514dfe170feb3e8b3a7387"
- },
- {
- "file": "packages/nx/src/tasks-runner/life-cycles/dynamic-run-one-terminal-output-life-cycle.ts",
- "hash": "9912e35b75de8c7197af4c2e34a512e96ee3e3d7"
- },
- {
- "file": "packages/nx/src/tasks-runner/life-cycles/empty-terminal-output-life-cycle.ts",
- "hash": "e1faa49b6663ae1aa5867136e115f2f5f9ec351d"
- },
- {
- "file": "packages/nx/src/tasks-runner/life-cycles/formatting-utils.spec.ts",
- "hash": "cf66eaf7f08ca5e1e5de85b9cf98a8e324c8b259"
- },
- {
- "file": "packages/nx/src/tasks-runner/life-cycles/formatting-utils.ts",
- "hash": "187ec7b3f9cd034fd52373859320f628c5268ddc"
- },
- {
- "file": "packages/nx/src/tasks-runner/life-cycles/pretty-time.ts",
- "hash": "7898e54c1c02e39c744ada4ea247788bc95eadb9"
- },
- {
- "file": "packages/nx/src/tasks-runner/life-cycles/static-run-many-terminal-output-life-cycle.ts",
- "hash": "4b261ae27af3edc40f27de02646f1c2cac14e999"
- },
- {
- "file": "packages/nx/src/tasks-runner/life-cycles/static-run-one-terminal-output-life-cycle.ts",
- "hash": "ee5ab25e63d628d9ebc562601a03a1e274f091f1"
- },
- {
- "file": "packages/nx/src/tasks-runner/life-cycles/task-profiling-life-cycle.ts",
- "hash": "1f4ae0ea5663ada6683e63f11970fdab9e06ec1e"
- },
- {
- "file": "packages/nx/src/tasks-runner/life-cycles/task-timings-life-cycle.ts",
- "hash": "1d57f9568d9f1c6cce8fff2c43bfd8a76853e2a9"
- },
- {
- "file": "packages/nx/src/tasks-runner/remove-old-cache-records.ts",
- "hash": "ef95f83d188a087fb4912871ebbf7dad36213e91",
- "deps": ["npm:fs-extra"]
- },
- {
- "file": "packages/nx/src/tasks-runner/run-command.spec.ts",
- "hash": "b835cd3ea0298c3e5feffe969702930ed75bd8ae"
- },
- {
- "file": "packages/nx/src/tasks-runner/run-command.ts",
- "hash": "49b7e6ab8322846e2b1d5497ee15c9c77f18712e"
- },
- {
- "file": "packages/nx/src/tasks-runner/task-graph-utils.spec.ts",
- "hash": "2d413e8929c700628f85ca56adaf275c4e53e159"
- },
- {
- "file": "packages/nx/src/tasks-runner/task-graph-utils.ts",
- "hash": "be1204a9f79ae6478101520ff1bb8b2e8cff9bdd"
- },
- {
- "file": "packages/nx/src/tasks-runner/task-orchestrator.ts",
- "hash": "d66f32482f6bf8e2a7d4c11f4a922c9b36d95873"
- },
- {
- "file": "packages/nx/src/tasks-runner/tasks-runner-v2.ts",
- "hash": "98d5db37b8d3c2e2b96dfb09aa25e7722da5768e",
- "deps": ["npm:rxjs"]
- },
- {
- "file": "packages/nx/src/tasks-runner/tasks-runner.ts",
- "hash": "d9daabc36923de552c5e9413e39a4581b28154fc"
- },
- {
- "file": "packages/nx/src/tasks-runner/tasks-schedule.spec.ts",
- "hash": "78e9922da426cde8c45c0a46525c9df3e0d6261a"
- },
- {
- "file": "packages/nx/src/tasks-runner/tasks-schedule.ts",
- "hash": "7a75258b6164a997af8abe74af3391bc0ebcfe65"
- },
- {
- "file": "packages/nx/src/tasks-runner/utils.spec.ts",
- "hash": "20110cc0838de2d43c47b92b6c16548bcc56d37e"
- },
- {
- "file": "packages/nx/src/tasks-runner/utils.ts",
- "hash": "7b0c451722e2e19ecbf5bfafe04a29408a0f1aad",
- "deps": ["npm:flat"]
- },
- {
- "file": "packages/nx/src/utils/add-command-prefix.spec.ts",
- "hash": "ea4b3e19d759c268964f1cff15dafdd508ab8695"
- },
- {
- "file": "packages/nx/src/utils/add-command-prefix.ts",
- "hash": "4a4ece1f65ee0b60289163b94eb24363df00ce22",
- "deps": ["npm:chalk"]
- },
- {
- "file": "packages/nx/src/utils/app-root.ts",
- "hash": "1a498111913730e8136e2f3464c06396f04fd817"
- },
- {
- "file": "packages/nx/src/utils/assert-workspace-validity.spec.ts",
- "hash": "3b30fbc69f3ff4157df4caf47ef0ac88e50216e7"
- },
- {
- "file": "packages/nx/src/utils/assert-workspace-validity.ts",
- "hash": "7b1a9984ed4902382a88e017e33f5295c3aebb0b"
- },
- {
- "file": "packages/nx/src/utils/cache-directory.ts",
- "hash": "7747804720c438e4c2cc98ae966ac4d9f2c69f2f"
- },
- {
- "file": "packages/nx/src/utils/command-line-utils.spec.ts",
- "hash": "e2e10c8a99315440c98bcf70711b0e7c5a0cf7fb"
- },
- {
- "file": "packages/nx/src/utils/command-line-utils.ts",
- "hash": "94dbb00e69bc839393755602f7eb8c4517b6dc94",
- "deps": ["npm:yargs-parser", "npm:yargs"]
- },
- {
- "file": "packages/nx/src/utils/default-base.spec.ts",
- "hash": "859ff3949fe1987c696ac8bc8feb9c7c2990e236"
- },
- {
- "file": "packages/nx/src/utils/default-base.ts",
- "hash": "42a410f41bb1909540197cec9fdd764b82a17d9e"
- },
- {
- "file": "packages/nx/src/utils/fileutils.spec.ts",
- "hash": "d3acf32602a6afeda28d22305e6ae9ef1bdca17d",
- "deps": ["npm:memfs"]
- },
- {
- "file": "packages/nx/src/utils/fileutils.ts",
- "hash": "fe17842e5c87449f4f34d82206bbac392ec3c6f4",
- "deps": ["npm:tar-stream"]
- },
- {
- "file": "packages/nx/src/utils/find-workspace-root.ts",
- "hash": "ca6fbb627435ba52c4b3ce33d905ee5b60f0fca3"
- },
- {
- "file": "packages/nx/src/utils/is-ci.ts",
- "hash": "11f184b5feb69c3ddd4564d0839644c0bfa15237"
- },
- {
- "file": "packages/nx/src/utils/json-diff.spec.ts",
- "hash": "032381884374a2cfc2f02b10b9ef652ae502b186"
- },
- {
- "file": "packages/nx/src/utils/json-diff.ts",
- "hash": "b5ceb2a02f83b5e6251adc75497b0d00670aab39"
- },
- {
- "file": "packages/nx/src/utils/json.spec.ts",
- "hash": "8d053badd466a3f7479a3c2bdcafc6b096e0303e"
- },
- {
- "file": "packages/nx/src/utils/json.ts",
- "hash": "b619f67fd031f071036216530c08113642e2dd11",
- "deps": ["npm:jsonc-parser"]
- },
- {
- "file": "packages/nx/src/utils/logger.spec.ts",
- "hash": "6aee352afdee377b489ccd48f46364b397373163"
- },
- {
- "file": "packages/nx/src/utils/logger.ts",
- "hash": "16ea72492071c8b3d187e91f39e9fa98a9ae29c0",
- "deps": ["npm:chalk"]
- },
- {
- "file": "packages/nx/src/utils/nx-plugin.ts",
- "hash": "ec1009a7f68c7a3560a365c2263717f920559567",
- "deps": ["npm:fast-glob"]
- },
- {
- "file": "packages/nx/src/utils/object-sort.ts",
- "hash": "5d162f55c9a32eea5bd0745cc2423e1553edc0c6"
- },
- {
- "file": "packages/nx/src/utils/output.ts",
- "hash": "890f109ccdad84bcacda2e4c329eb94c666a9753",
- "deps": ["npm:chalk"]
- },
- {
- "file": "packages/nx/src/utils/package-json.spec.ts",
- "hash": "67a3b8abeb13e7bd7fa66e9495048344272f1c1c"
- },
- {
- "file": "packages/nx/src/utils/package-json.ts",
- "hash": "c55f50074637480628e53d0e3bd79787ef59a1f3"
- },
- {
- "file": "packages/nx/src/utils/package-manager.ts",
- "hash": "c41165b979aee2203c438b9581bd42c72b00ed5d",
- "deps": ["npm:fs-extra", "npm:tmp", "npm:semver"]
- },
- {
- "file": "packages/nx/src/utils/params.spec.ts",
- "hash": "c31476089eb247459724dd9064dfd443be1b6ff8",
- "deps": ["npm:yargs-parser"]
- },
- {
- "file": "packages/nx/src/utils/params.ts",
- "hash": "5a7de0af5be47a382316fd84e6df695fec4a50cc"
- },
- {
- "file": "packages/nx/src/utils/path.spec.ts",
- "hash": "33cc70a064de4571246cdf958134ec34ed5098f7"
- },
- {
- "file": "packages/nx/src/utils/path.ts",
- "hash": "e0bd34d47234122dd94f177bfa2aeb6226f50d8f"
- },
- {
- "file": "packages/nx/src/utils/perf-logging.ts",
- "hash": "b0f93215566a7afb9ea18a147f66b976a5fa99fe"
- },
- {
- "file": "packages/nx/src/utils/plugins/community-plugins.ts",
- "hash": "dd8f84c66f17d16d954e741d64e1d242a3c29b57",
- "deps": ["npm:chalk"]
- },
- {
- "file": "packages/nx/src/utils/plugins/core-plugins.ts",
- "hash": "2c5ab108ee1544d30d9a295b1f66604014cf02f8",
- "deps": ["npm:chalk"]
- },
- {
- "file": "packages/nx/src/utils/plugins/index.ts",
- "hash": "9ac357e92d22cfcc5c205fa5405bf8546ddd35b7"
- },
- {
- "file": "packages/nx/src/utils/plugins/installed-plugins.ts",
- "hash": "9f32d388fa620a9c4d198f8a4311c3ceade18624",
- "deps": ["npm:chalk"]
- },
- {
- "file": "packages/nx/src/utils/plugins/local-plugins.ts",
- "hash": "94fd105d26f084d937eb449dbb8772b94627f55b",
- "deps": ["npm:chalk"]
- },
- {
- "file": "packages/nx/src/utils/plugins/models.ts",
- "hash": "89cbded58217947f1c58c26b2cca4555fe0df539"
- },
- {
- "file": "packages/nx/src/utils/plugins/plugin-capabilities.ts",
- "hash": "e0671fef8e578a2dc137ce291d47ba6043719635",
- "deps": ["npm:chalk"]
- },
- {
- "file": "packages/nx/src/utils/plugins/shared.ts",
- "hash": "534feccefec66b287622c7a2c6206b234d160ac2"
- },
- {
- "file": "packages/nx/src/utils/print-help.ts",
- "hash": "4cb75d419bebadd37cbcb2206f0ed02f1f6e3d8c",
- "deps": ["npm:chalk", "npm:string-width", "npm:cliui"]
- },
- {
- "file": "packages/nx/src/utils/project-graph-utils.spec.ts",
- "hash": "82dcb2702c0aa3fff76ba68189903a735bbb6131"
- },
- {
- "file": "packages/nx/src/utils/project-graph-utils.ts",
- "hash": "bff1fc4fd9a228d4faddebe1afe4abbac4ae5321"
- },
- {
- "file": "packages/nx/src/utils/register.ts",
- "hash": "93ce107b5fdace9e7937ebf9395c2e5c0f06349b",
- "deps": [
- "npm:@swc-node/register",
- "npm:ts-node",
- "npm:tsconfig-paths"
- ]
- },
- {
- "file": "packages/nx/src/utils/serialize-overrides-into-command-line.ts",
- "hash": "1a583a594da09addc66c58462b82dc37ac4aa1e8"
- },
- {
- "file": "packages/nx/src/utils/split-target.spec.ts",
- "hash": "7b77e71a0c5c2eb1ef6e39c9b67cc43b56d1796b"
- },
- {
- "file": "packages/nx/src/utils/split-target.ts",
- "hash": "6e89fed08c9acec9c8e3f956e6f41d6962242f73"
- },
- {
- "file": "packages/nx/src/utils/strip-indents.ts",
- "hash": "32a3431f64c8d13bead0b6c46596e744690b8d7f"
- },
- {
- "file": "packages/nx/src/utils/strip-source-code.spec.ts",
- "hash": "fd047848889fab6f37da2335a5322fa19847e979",
- "deps": ["npm:typescript"]
- },
- {
- "file": "packages/nx/src/utils/strip-source-code.ts",
- "hash": "9597957f4d16c20086d7fb720213a6f7b1c4d707",
- "deps": ["npm:typescript"]
- },
- {
- "file": "packages/nx/src/utils/target-project-locator.spec.ts",
- "hash": "cadf8622bdda817f4d623559816ce379812be258",
- "deps": ["npm:memfs"]
- },
- {
- "file": "packages/nx/src/utils/target-project-locator.ts",
- "hash": "8433cb4b1fd38fc394cbf9c4eea9d4f107142683"
- },
- {
- "file": "packages/nx/src/utils/typescript.ts",
- "hash": "c364ccf0bb6834b2dd74cccce84e65a34f3ba172",
- "deps": ["npm:typescript"]
- },
- {
- "file": "packages/nx/src/utils/version-utils.ts",
- "hash": "9e693139ee90478b303b6970cca822211fa1aa46",
- "deps": ["npm:semver"]
- },
- {
- "file": "packages/nx/src/utils/versions.ts",
- "hash": "6548a6053e7316819f9b1a7b3af9fc737de9b121"
- },
- {
- "file": "packages/nx/src/utils/workspace-root.ts",
- "hash": "6dfdfdbb44f53305a4ab4e59d341e6f5553bde64"
- },
- {
- "file": "packages/nx/tasks-runners/default.ts",
- "hash": "9fe50fe4f8235f6afc1b4d3bce6e015c0972b1cc"
- },
- {
- "file": "packages/nx/tsconfig.json",
- "hash": "58bd2c97a66f5e5ea5d05c8a5709ee79bad02094"
- },
- {
- "file": "packages/nx/tsconfig.lib.json",
- "hash": "32ae44d32bd66ca06cfc302ac071e37fb992dff1"
- },
- {
- "file": "packages/nx/tsconfig.spec.json",
- "hash": "20c83bf39016f5a5e04303ecf82bb6df984188f4"
- }
- ]
- }
- },
- {
- "name": "e2e-linter",
- "type": "app",
- "data": {
- "tags": [],
- "root": "e2e/linter",
- "files": [
- {
- "file": "e2e/linter/jest.config.ts",
- "hash": "4d2a36031306dab7dbee4f4cd7479adafdc39a4f"
- },
- {
- "file": "e2e/linter/project.json",
- "hash": "a77df597d2fba14380dbd12846b6cf09730984f5"
- },
- {
- "file": "e2e/linter/src/linter.test.ts",
- "hash": "8bcdc60f0af88fe3a73a36ff82d95e1be4454e6e",
- "deps": ["e2e-utils", "npm:typescript"]
- },
- {
- "file": "e2e/linter/tsconfig.json",
- "hash": "6d5abf84832009a8c70e7a910c49f332bf1f0612"
- },
- {
- "file": "e2e/linter/tsconfig.spec.json",
- "hash": "1a24bfb0a13536cd17717808ca5609e15def438f"
- }
- ]
- }
- },
- {
- "name": "e2e-nx-run",
- "type": "app",
- "data": {
- "tags": [],
- "root": "e2e/nx-run",
- "files": [
- {
- "file": "e2e/nx-run/jest.config.ts",
- "hash": "d1ad254f759836b5b792b703788367626ac2882e"
- },
- {
- "file": "e2e/nx-run/project.json",
- "hash": "9c45a6c99b9b559ce5fff0e3138091ad154bfb28"
- },
- {
- "file": "e2e/nx-run/src/affected-graph.test.ts",
- "hash": "e4ddd742bca36396e1042b3c12009a0334773aac",
- "deps": ["devkit", "e2e-utils"]
- },
- {
- "file": "e2e/nx-run/src/cache.test.ts",
- "hash": "0868b05d88288130e734f94b3c6b8e4b95053406",
- "deps": ["e2e-utils"]
- },
- {
- "file": "e2e/nx-run/src/run.test.ts",
- "hash": "c859b3f03116388d195fecca9727a80370defd4d",
- "deps": ["e2e-utils"]
- },
- {
- "file": "e2e/nx-run/tsconfig.json",
- "hash": "6d5abf84832009a8c70e7a910c49f332bf1f0612"
- },
- {
- "file": "e2e/nx-run/tsconfig.spec.json",
- "hash": "1a24bfb0a13536cd17717808ca5609e15def438f"
- }
- ]
- }
- },
- {
- "name": "e2e-detox",
- "type": "app",
- "data": {
- "tags": [],
- "root": "e2e/detox",
- "files": [
- {
- "file": "e2e/detox/jest.config.ts",
- "hash": "e4a42588b1e2ec3cb9dbb5d557257e76de2ec9c7"
- },
- {
- "file": "e2e/detox/project.json",
- "hash": "f22adbb59d6a8a4773027a52754e971010c0628a"
- },
- {
- "file": "e2e/detox/src/detox.test.ts",
- "hash": "56e0cd2055206ecb1d3c5ad77747413399ad2b60",
- "deps": ["e2e-utils"]
- },
- {
- "file": "e2e/detox/tsconfig.json",
- "hash": "6d5abf84832009a8c70e7a910c49f332bf1f0612"
- },
- {
- "file": "e2e/detox/tsconfig.spec.json",
- "hash": "1a24bfb0a13536cd17717808ca5609e15def438f"
- }
- ]
- }
- },
- {
- "name": "e2e-react",
- "type": "app",
- "data": {
- "tags": [],
- "root": "e2e/react",
- "files": [
- {
- "file": "e2e/react/jest.config.ts",
- "hash": "1df82ae4213ece77a147a5d254242b9af6aeb017"
- },
- {
- "file": "e2e/react/project.json",
- "hash": "b1fc9e38ede36ce7f8c53438aa76bef9463246b5"
- },
- {
- "file": "e2e/react/src/cypress-component-tests.test.ts",
- "hash": "ec82f59aa23518e3f7684d8be7e9938363a94879",
- "deps": ["e2e-utils"]
- },
- {
- "file": "e2e/react/src/react-package.test.ts",
- "hash": "b5a947ec0bfa0d2d9fb3eb6ba8757db2d447cecf",
- "deps": ["e2e-utils", "devkit"]
- },
- {
- "file": "e2e/react/src/react.module-federation.test.ts",
- "hash": "317229ba0f645c5fab5054bdad3a1de7b6120ad5",
- "deps": ["devkit", "e2e-utils", "react"]
- },
- {
- "file": "e2e/react/src/react.test.ts",
- "hash": "6446213faec1ca7519c408f2497488f46fc99874",
- "deps": ["e2e-utils"]
- },
- {
- "file": "e2e/react/tsconfig.json",
- "hash": "6d5abf84832009a8c70e7a910c49f332bf1f0612"
- },
- {
- "file": "e2e/react/tsconfig.spec.json",
- "hash": "1a24bfb0a13536cd17717808ca5609e15def438f"
- }
- ]
- }
- },
- {
- "name": "e2e-utils",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "e2e/utils",
- "files": [
- {
- "file": "e2e/utils/index.ts",
- "hash": "8ed5a21a0dd8595c20140dd459574b2664efd233",
- "deps": [
- "devkit",
- "workspace",
- "npm:fs-extra",
- "npm:tcp-port-used",
- "npm:tmp",
- "npm:chalk",
- "npm:is-ci",
- "npm:tree-kill",
- "nx",
- "npm:kill-port",
- "npm:is-windows"
- ]
- },
- {
- "file": "e2e/utils/project.json",
- "hash": "a152c73b0397bf2f723d8dc9fe6b33d7b0dc9c7b"
- }
- ]
- }
- },
- {
- "name": "e2e-jest",
- "type": "app",
- "data": {
- "tags": [],
- "root": "e2e/jest",
- "files": [
- {
- "file": "e2e/jest/jest.config.ts",
- "hash": "a533d9b8ba1974653adc319296bdc25dfccab79a"
- },
- {
- "file": "e2e/jest/project.json",
- "hash": "9692e1681abaa724ffdd719c5393e7ea3f08f7a9"
- },
- {
- "file": "e2e/jest/src/jest.test.ts",
- "hash": "ab71f72864ab106019eefc4c875ecccd37506fc7",
- "deps": ["npm:@angular-devkit/core", "e2e-utils", "nx"]
- },
- {
- "file": "e2e/jest/tsconfig.json",
- "hash": "6d5abf84832009a8c70e7a910c49f332bf1f0612"
- },
- {
- "file": "e2e/jest/tsconfig.spec.json",
- "hash": "1a24bfb0a13536cd17717808ca5609e15def438f"
- }
- ]
- }
- },
- {
- "name": "e2e-next",
- "type": "app",
- "data": {
- "tags": [],
- "root": "e2e/next",
- "files": [
- {
- "file": "e2e/next/jest.config.ts",
- "hash": "b35c82f6e91fca2cac2bcecdaf7a5b187abd02ac"
- },
- {
- "file": "e2e/next/project.json",
- "hash": "ba2a3df7055797bb0eafca6035a11657e65e7568"
- },
- {
- "file": "e2e/next/src/next.test.ts",
- "hash": "c9946a5cd1adb28c3c63e2627e0ef677aa83ba2d",
- "deps": ["e2e-utils", "workspace", "npm:next", "npm:react"]
- },
- {
- "file": "e2e/next/tsconfig.json",
- "hash": "6d5abf84832009a8c70e7a910c49f332bf1f0612"
- },
- {
- "file": "e2e/next/tsconfig.spec.json",
- "hash": "1a24bfb0a13536cd17717808ca5609e15def438f"
- }
- ]
- }
- },
- {
- "name": "e2e-node",
- "type": "app",
- "data": {
- "tags": [],
- "root": "e2e/node",
- "files": [
- {
- "file": "e2e/node/jest.config.ts",
- "hash": "49f37c1c6b5a26042f26982c5e4cb4f50f6fa873"
- },
- {
- "file": "e2e/node/project.json",
- "hash": "8ef75e0c706145761af1017ab85b593ab9d7f6ef"
- },
- {
- "file": "e2e/node/src/node.test.ts",
- "hash": "60afad6fdfdf0f1d3b97f66c1fab3cc6ab8a2ac5",
- "deps": [
- "npm:@angular-devkit/core",
- "e2e-utils",
- "npm:@nestjs/common",
- "npm:@nestjs/swagger"
- ]
- },
- {
- "file": "e2e/node/tsconfig.json",
- "hash": "6d5abf84832009a8c70e7a910c49f332bf1f0612"
- },
- {
- "file": "e2e/node/tsconfig.spec.json",
- "hash": "1a24bfb0a13536cd17717808ca5609e15def438f"
- }
- ]
- }
- },
- {
- "name": "e2e-web",
- "type": "app",
- "data": {
- "tags": [],
- "root": "e2e/web",
- "files": [
- {
- "file": "e2e/web/jest.config.ts",
- "hash": "33faeec31638500cc6cb82802e50b2a423a19b8f"
- },
- {
- "file": "e2e/web/project.json",
- "hash": "b4fc5ccc702f7b4afba1cab5b274a9d3e1496dd3"
- },
- {
- "file": "e2e/web/src/file-server.test.ts",
- "hash": "51d042a1635d3fa7422cf4448934a5236bf975ef",
- "deps": ["e2e-utils"]
- },
- {
- "file": "e2e/web/src/web.test.ts",
- "hash": "93f987794d46a1bbb3efdb04bf1713c9cefa1c43",
- "deps": ["e2e-utils"]
- },
- {
- "file": "e2e/web/tsconfig.json",
- "hash": "6d5abf84832009a8c70e7a910c49f332bf1f0612"
- },
- {
- "file": "e2e/web/tsconfig.spec.json",
- "hash": "1a24bfb0a13536cd17717808ca5609e15def438f"
- }
- ]
- }
- },
- {
- "name": "e2e-js",
- "type": "app",
- "data": {
- "tags": [],
- "root": "e2e/js",
- "files": [
- {
- "file": "e2e/js/jest.config.ts",
- "hash": "4d5b53f0c6aa3f38368180aa1400f4953ceff37a"
- },
- {
- "file": "e2e/js/project.json",
- "hash": "77032b74bf129d8cbe17160b613483929aab230f"
- },
- {
- "file": "e2e/js/src/js.test.ts",
- "hash": "d7605f140d839925898a0f521a6fb1bedc59df5a",
- "deps": ["e2e-utils"]
- },
- {
- "file": "e2e/js/tsconfig.json",
- "hash": "6d5abf84832009a8c70e7a910c49f332bf1f0612"
- },
- {
- "file": "e2e/js/tsconfig.spec.json",
- "hash": "1a24bfb0a13536cd17717808ca5609e15def438f"
- }
- ]
- }
- },
- {
- "name": "docs",
- "type": "lib",
- "data": {
- "tags": ["scope:nx-dev"],
- "root": "docs",
- "files": [
- {
- "file": "docs/builders.json",
- "hash": "ee16974bd1152dcea95cd826aae29c1f52cb1bea"
- },
- {
- "file": "docs/generated/cli/affected-apps.md",
- "hash": "7eb31551d0a8c905e67a155b3d5834a5d3644b99"
- },
- {
- "file": "docs/generated/cli/affected-graph.md",
- "hash": "8f88cefe4af8af77862f8bd05a97e11df8188bf4"
- },
- {
- "file": "docs/generated/cli/affected-libs.md",
- "hash": "eebedae5ec5ccda277e4daa6b56d4f1d45fa1df2"
- },
- {
- "file": "docs/generated/cli/affected.md",
- "hash": "95ec8409f8f4cb9973a81e8c262beea6f4572177"
- },
- {
- "file": "docs/generated/cli/connect-to-nx-cloud.md",
- "hash": "dae1ad56c8334ea3f9a8c827e7b8e5a452208320"
- },
- {
- "file": "docs/generated/cli/create-nx-workspace.md",
- "hash": "c4b161ac6d1c573d450583720523683b777ff8fb"
- },
- {
- "file": "docs/generated/cli/daemon.md",
- "hash": "a76de20de82a61d938c3bbec69b5b795b7f3bb45"
- },
- {
- "file": "docs/generated/cli/format-check.md",
- "hash": "c995db6557c9968800c7828202cb08404e8d6570"
- },
- {
- "file": "docs/generated/cli/format-write.md",
- "hash": "a0493fc7c66425583c655b46fec603b458c0cacc"
- },
- {
- "file": "docs/generated/cli/generate.md",
- "hash": "b42b46bb64039bf0c337b65ab0eb4c427481b480"
- },
- {
- "file": "docs/generated/cli/graph.md",
- "hash": "4bae215d301fa0699729517992a70b1904091fd8"
- },
- {
- "file": "docs/generated/cli/init.md",
- "hash": "12ed02e70e9bb9cfbd5611239f2f30284a9b50fd"
- },
- {
- "file": "docs/generated/cli/list.md",
- "hash": "35e0323efef90becb5d0aaad37072bd0250042c3"
- },
- {
- "file": "docs/generated/cli/migrate.md",
- "hash": "ca9f5914f374c69c3cedc9de8657254382e0af6c"
- },
- {
- "file": "docs/generated/cli/print-affected.md",
- "hash": "2d0b4176f32c654ab9e2fbf92f0a211591aed570"
- },
- {
- "file": "docs/generated/cli/repair.md",
- "hash": "161646cf79c9f516039c07335123ac87fa781c2b"
- },
- {
- "file": "docs/generated/cli/report.md",
- "hash": "6f7451c245936b965ade2c42b0180fbfaecee361"
- },
- {
- "file": "docs/generated/cli/reset.md",
- "hash": "ab57a7329bbf9716f789e19ef5bfc2c4621c74d1"
- },
- {
- "file": "docs/generated/cli/run-many.md",
- "hash": "b0258ad64317e1954d91d3ca629291561f4d4c9f"
- },
- {
- "file": "docs/generated/cli/run.md",
- "hash": "077afa4f89f31e5f1755488790439112d1217b9a"
- },
- {
- "file": "docs/generated/cli/workspace-generator.md",
- "hash": "ff9dbfaba3f737d1192d1b2416df8790271fe254"
- },
- {
- "file": "docs/generated/cli/workspace-lint.md",
- "hash": "84e666608f344aae92c985aa87529b7351aaa3b6"
- },
- {
- "file": "docs/generated/devkit/index.md",
- "hash": "dee0a3035c4946833a1f928bb2c276fbce895b87"
- },
- {
- "file": "docs/generated/devkit/ngcli_adapter.md",
- "hash": "dd62a5fbc75c8579574437234fb56436bb3a8d57"
- },
- {
- "file": "docs/generated/packages/add-nx-to-monorepo.json",
- "hash": "7e9b8a37307774034db7cf43ff2c66628e779002"
- },
- {
- "file": "docs/generated/packages/angular.json",
- "hash": "907b42602aedd79139cb3355f2e73cc2d9da3167"
- },
- {
- "file": "docs/generated/packages/cra-to-nx.json",
- "hash": "dae3cb2ed684c20111990b13cadb6dad7bb7a16e"
- },
- {
- "file": "docs/generated/packages/create-nx-plugin.json",
- "hash": "21716cb30bde1066b136ac8f7ad84bbab7e4c8a3"
- },
- {
- "file": "docs/generated/packages/create-nx-workspace.json",
- "hash": "39bd472e25d2358962a51fafd7d2f42c48ac75d1"
- },
- {
- "file": "docs/generated/packages/cypress.json",
- "hash": "9ef0717afd71652733bdb47e79ed3857ce687b16"
- },
- {
- "file": "docs/generated/packages/detox.json",
- "hash": "51656758a7b9998a77530a45e6691d77b7f74145"
- },
- {
- "file": "docs/generated/packages/devkit.json",
- "hash": "8892baf3a90529776e7a27239ac3afb7a99fa429"
- },
- {
- "file": "docs/generated/packages/eslint-plugin-nx.json",
- "hash": "c8f8022109eb40853531adc202ef2025b9d9e919"
- },
- {
- "file": "docs/generated/packages/express.json",
- "hash": "ee2fb26427d3009652e10730d394f953925531d4"
- },
- {
- "file": "docs/generated/packages/jest.json",
- "hash": "61b5f03339d932fb57ba3be52ddd1d43b66f9f06"
- },
- {
- "file": "docs/generated/packages/js.json",
- "hash": "e184ac1c35df6381a7c42bf49cea732f2c582d0b"
- },
- {
- "file": "docs/generated/packages/linter.json",
- "hash": "4f92eece97b00736693aaa50d4cfbd4e99dbaeae"
- },
- {
- "file": "docs/generated/packages/make-angular-cli-faster.json",
- "hash": "289a5449a3f6eb1add54a0d41fb56f06b15d44fe"
- },
- {
- "file": "docs/generated/packages/nest.json",
- "hash": "477c2ddcc8cc819c258313c6a3d0e9543312a24e"
- },
- {
- "file": "docs/generated/packages/next.json",
- "hash": "71ea624133d22a8763a14ee2881981bc8eca06fb"
- },
- {
- "file": "docs/generated/packages/node.json",
- "hash": "5b098efb4e311ddb9bc1f2fafaddd9a25f04a416"
- },
- {
- "file": "docs/generated/packages/nx-plugin.json",
- "hash": "16579087476dc61ac3454391a25f3b32eabe888f"
- },
- {
- "file": "docs/generated/packages/nx.json",
- "hash": "0928f2e44192aa37f2182bcee82ba4152e3e8687"
- },
- {
- "file": "docs/generated/packages/react-native.json",
- "hash": "e3a359e387b13a8c06c390b39931ab5418f4485c"
- },
- {
- "file": "docs/generated/packages/react.json",
- "hash": "2186a9c9ffd674e0703b74febd0539d4785e8199"
- },
- {
- "file": "docs/generated/packages/storybook.json",
- "hash": "7f2db2b23b41b9b50e9c943b341defd7b2fe149a"
- },
- {
- "file": "docs/generated/packages/tao.json",
- "hash": "cc336fccc21692d3395da707cb9cd86ca2ead70a"
- },
- {
- "file": "docs/generated/packages/web.json",
- "hash": "b479b11b31d9b2c01bd6bef609c4c426ceec8f0e"
- },
- {
- "file": "docs/generated/packages/workspace.json",
- "hash": "a61a8e6ba93da7285aa56f281ca273e2569798bb"
- },
- {
- "file": "docs/map.json",
- "hash": "9c72c533683d9ef1736eef94322b65d9d9bacec1"
- },
- {
- "file": "docs/nx-cloud/account/access-tokens.md",
- "hash": "d8c4d38a30b608ad2d33912f3df40fad2e036d4d"
- },
- {
- "file": "docs/nx-cloud/account/billing.md",
- "hash": "d4d87e387f52201f3cce226539235eb13a647c46"
- },
- {
- "file": "docs/nx-cloud/account/encryption.md",
- "hash": "b228c279ca58faea439df3a5fe10273a47120a64"
- },
- {
- "file": "docs/nx-cloud/account/google_oauth.png",
- "hash": "570c77c042d475d62a1e0a5471e226c909ee6b02"
- },
- {
- "file": "docs/nx-cloud/account/google-auth.md",
- "hash": "f0207cb91a5c74b21102ca7fe4664c6baeb9b59a"
- },
- {
- "file": "docs/nx-cloud/account/require_google_signin.png",
- "hash": "b464a241c39706b25a920605517ffcedb849fcea"
- },
- {
- "file": "docs/nx-cloud/account/scenarios.md",
- "hash": "7e2856f0e9c4d51a63386a8654da941a3066e112"
- },
- {
- "file": "docs/nx-cloud/account/users.md",
- "hash": "1987e9a5df40caadec0c9f81b05644933b736f1b"
- },
- {
- "file": "docs/nx-cloud/intro/nx-cloud.md",
- "hash": "6807a70187871195a04f4701ded0f48b51783e81"
- },
- {
- "file": "docs/nx-cloud/private/advanced-config.md",
- "hash": "2887797716ab77fee29b7259e63937dae493479d"
- },
- {
- "file": "docs/nx-cloud/private/auth-bitbucket.md",
- "hash": "ad12dd0b4260ed37d289509c3b5d2f7b5b2ba259"
- },
- {
- "file": "docs/nx-cloud/private/auth-github.md",
- "hash": "fb09b4d43a4727a30cded0327c6c96a24421fadc"
- },
- {
- "file": "docs/nx-cloud/private/auth-gitlab.md",
- "hash": "19f4b955fa1011745a29304a062a80e126020a2c"
- },
- {
- "file": "docs/nx-cloud/private/auth-single-admin.md",
- "hash": "8623d9c10ab628f45f2e177ff3b2487a9b18940d"
- },
- {
- "file": "docs/nx-cloud/private/get-started.md",
- "hash": "1cbfe636f80a7634037bad6d811327ff7e480709"
- },
- {
- "file": "docs/nx-cloud/private/github.md",
- "hash": "2fe6ceb807628d7cbafb7edc964ab091cbb51f50"
- },
- {
- "file": "docs/nx-cloud/private/images/admin_hidden_login.png",
- "hash": "a2fbd4488b6b38f4c04101444b0a01cc33d27b33"
- },
- {
- "file": "docs/nx-cloud/private/images/bitbucket_1.png",
- "hash": "744c93850fe889fd0063041ea14920862efe1ef9"
- },
- {
- "file": "docs/nx-cloud/private/images/bitbucket_2.png",
- "hash": "febde873790a4701eea045bc921b2911ea4d9305"
- },
- {
- "file": "docs/nx-cloud/private/images/bitbucket_3.png",
- "hash": "c1628cebbd1cafa841a20679c36a431de119c507"
- },
- {
- "file": "docs/nx-cloud/private/images/bitbucket_4.png",
- "hash": "f6c7959083ef31dc93d0494df7b56fb1e506df8c"
- },
- {
- "file": "docs/nx-cloud/private/images/bitbucket_5.png",
- "hash": "ef04cc67127fb230aa6211a8bbb4ee01b28b8693"
- },
- {
- "file": "docs/nx-cloud/private/images/bitbucket_6.png",
- "hash": "5400b205c7eccfebaa571133cd57d3db8ca229a4"
- },
- {
- "file": "docs/nx-cloud/private/images/github_auth_step_1.png",
- "hash": "aab0b76bf8ff0f310212e9b48c677f58b214fb50"
- },
- {
- "file": "docs/nx-cloud/private/images/github_auth_step_2.png",
- "hash": "b692beb0af8fe62c9f24257da1d078c150168399"
- },
- {
- "file": "docs/nx-cloud/private/images/github_auth_step_3.png",
- "hash": "ed380e172e65e22fef748dc49eadac5f1822227d"
- },
- {
- "file": "docs/nx-cloud/private/images/github_auth_step_4.png",
- "hash": "a9e7efb684f638531859335d04015c1c2efb5f4c"
- },
- {
- "file": "docs/nx-cloud/private/images/github_auth_step_5.png",
- "hash": "1bdb10946021e179e93f7d644f4eed1af472e98c"
- },
- {
- "file": "docs/nx-cloud/private/images/github_auth_step_6.png",
- "hash": "b8e7912726397121efb1c7d7dbe4a351f722171f"
- },
- {
- "file": "docs/nx-cloud/private/images/github_auth_step_7.png",
- "hash": "017f221fa731020e901da4903e02e330412bf184"
- },
- {
- "file": "docs/nx-cloud/private/images/github-username.png",
- "hash": "8075d6b794e44784525a5a70d3f545c8e117c604"
- },
- {
- "file": "docs/nx-cloud/private/images/gitlab_step_1.png",
- "hash": "fef273c0dcc3ca6b26371cfcb85d3ba466bfb0e5"
- },
- {
- "file": "docs/nx-cloud/private/images/gitlab_step_2.png",
- "hash": "a1726555864bfbc70b22673e67b17cc99e5bc96a"
- },
- {
- "file": "docs/nx-cloud/private/images/gitlab_step_3.png",
- "hash": "308937ac1b03a1c290e7cf4093dcebe52f274ab4"
- },
- {
- "file": "docs/nx-cloud/private/images/gitlab_step_4.png",
- "hash": "adb4473c0316f99103dfe5e6b20f331f913e7701"
- },
- {
- "file": "docs/nx-cloud/private/images/gitlab_step_5.png",
- "hash": "5119326eec8e04bf93a0ec2e70970a9f6a1fbcbd"
- },
- {
- "file": "docs/nx-cloud/private/images/gitlab-username.png",
- "hash": "b264bf3f64e066efaf92875a935ce02248b08bef"
- },
- {
- "file": "docs/nx-cloud/private/images/invite_members.png",
- "hash": "2d38d859b8ff9f40f0dd8d3b943ccd139b5b37be"
- },
- {
- "file": "docs/nx-cloud/private/images/main_user_login.png",
- "hash": "7083d89f9687448db362542b850160bba0133eef"
- },
- {
- "file": "docs/nx-cloud/private/images/private-cloud-github-integration-add-webhook.png",
- "hash": "3c8d90333938bd4c52bf831eb8cb37b888356073"
- },
- {
- "file": "docs/nx-cloud/private/images/private-cloud-github-integration-generate-token.png",
- "hash": "f330e3fc735f60d5e1b314339c2acd09ff7c0b7c"
- },
- {
- "file": "docs/nx-cloud/private/images/webhook-trigger-events.png",
- "hash": "f84c6c92dd42f4a16eb8fd796ec7203ac3d9d7d9"
- },
- {
- "file": "docs/nx-cloud/private/images/webhook-trigger-pull-requests.png",
- "hash": "f917c7056c2b13fed490199a95f329d46fa3ae92"
- },
- {
- "file": "docs/nx-cloud/private/standalone.md",
- "hash": "b2a7e246b8749dba549eadf421508b3518e88cbb"
- },
- {
- "file": "docs/nx-cloud/reference/access-tokens.png",
- "hash": "f8fae20c54d5576e154ee55aa2d1386b038fb18c"
- },
- {
- "file": "docs/nx-cloud/reference/config.md",
- "hash": "4c8c2ca3ea797302d364e762b05df381a8921958"
- },
- {
- "file": "docs/nx-cloud/reference/env-vars.md",
- "hash": "8c6bb733bd5e24bf742440d0738c38c61e172cce"
- },
- {
- "file": "docs/nx-cloud/reference/release-notes.md",
- "hash": "9b4f36b8310713f13c889c2fb1a84b569df6e216"
- },
- {
- "file": "docs/nx-cloud/reference/server-api.md",
- "hash": "8f99fe2423c84e5a94d3aa2f6b549adae50ea0bd"
- },
- {
- "file": "docs/nx-cloud/reference/swagger-preview.png",
- "hash": "655a232f3700bfe354e25668e0ec69d6b1b4c467"
- },
- {
- "file": "docs/nx-cloud/set-up/github.md",
- "hash": "7e36076a7ae010af4cf0ecdf084d0c5e3480e593"
- },
- {
- "file": "docs/nx-cloud/set-up/record-commands.md",
- "hash": "adb824b680803582b29b8e1f6e0ee3449f9f2962"
- },
- {
- "file": "docs/nx-cloud/set-up/record-hello-world.png",
- "hash": "d7c715c9c89ba42295238a47c443129ef30be583"
- },
- {
- "file": "docs/nx-cloud/set-up/record-report.png",
- "hash": "53bc7135364d69e45ba9c9c03ae5dc369ff8770f"
- },
- {
- "file": "docs/nx-cloud/set-up/record-workspace-lint.png",
- "hash": "c5f64a0d41f8e206e0ba69f3aa256fd418dbb9c5"
- },
- {
- "file": "docs/nx-cloud/set-up/set-up-caching.md",
- "hash": "be3093cfb734830bc06548122c3a27ee0840ee2b"
- },
- {
- "file": "docs/nx-cloud/set-up/set-up-dte.md",
- "hash": "780da9fe65b88b900b6d8f1315a5de84435af3a3"
- },
- {
- "file": "docs/packages.json",
- "hash": "2edfb11eb0680c79060e0fe74aacf8623e9cf73a"
- },
- {
- "file": "docs/project.json",
- "hash": "4244a1c7206a7e123ea1d09d71f287b799e72fe0"
- },
- {
- "file": "docs/shared/affected.png",
- "hash": "d98750ceb6f2e678b0e9e08b543962688a19f525"
- },
- {
- "file": "docs/shared/all-cache-inputs.png",
- "hash": "e7e5bd839e7ccb4acc4221dce66952db6cad85e1"
- },
- {
- "file": "docs/shared/angular-logo.png",
- "hash": "c5102939182281314e8f79f1d7f7cd2145cd81f5"
- },
- {
- "file": "docs/shared/angular-nx-version-matrix.md",
- "hash": "85641618bef8b44020387ffce4d17619033f05ac"
- },
- {
- "file": "docs/shared/angular-plugin.md",
- "hash": "b3ce64b72046861dca69abd631ad350d81204c6a"
- },
- {
- "file": "docs/shared/angular-tutorial/01-create-application.md",
- "hash": "9a9204d57e470d522d1355d4dc4612046917b4d1"
- },
- {
- "file": "docs/shared/angular-tutorial/02-add-e2e-test.md",
- "hash": "a73423bdeb3db1bdca896d400948ac220c622880"
- },
- {
- "file": "docs/shared/angular-tutorial/03-display-todos.md",
- "hash": "124c57eac369dede9e0e7e2b50da8a4664775f67"
- },
- {
- "file": "docs/shared/angular-tutorial/04-connect-to-api.md",
- "hash": "cc790c654bc5a86a6e4cb3c0a0e3f8fd25cc8f9b"
- },
- {
- "file": "docs/shared/angular-tutorial/05-add-node-app.md",
- "hash": "9ef3062b96281ea28800b460c1a238c36b436373"
- },
- {
- "file": "docs/shared/angular-tutorial/06-proxy.md",
- "hash": "d858b7196eeac29936e670ed1afcb2deb771ab9e"
- },
- {
- "file": "docs/shared/angular-tutorial/07-share-code.md",
- "hash": "6abf26d645c808e0de1a38135efbeac71211b2ee"
- },
- {
- "file": "docs/shared/angular-tutorial/08-create-libs.md",
- "hash": "168e2b80e3d87d8c479fd166447d408bb3af0316"
- },
- {
- "file": "docs/shared/angular-tutorial/09-dep-graph.md",
- "hash": "13a6b48503708175798c78adf3010e0ed5a108a5"
- },
- {
- "file": "docs/shared/angular-tutorial/10-computation-caching.md",
- "hash": "3328ebc2d633979b0242e76493dffeaf0638cb8e"
- },
- {
- "file": "docs/shared/angular-tutorial/11-test-affected-projects.md",
- "hash": "c1be95cdfe3f6518b5296573bde0bdf8f1b71c2b"
- },
- {
- "file": "docs/shared/angular-tutorial/12-summary.md",
- "hash": "8c88c97c07ac6fcc5aaea6d2d3709692a2d12ece"
- },
- {
- "file": "docs/shared/api/angular.jpg",
- "hash": "f03bf78a3bd15e5bfeb925922ad94c41e5203009"
- },
- {
- "file": "docs/shared/api/cypress.jpg",
- "hash": "7727bf6d734549eeca678de9c870f3b4072698e5"
- },
- {
- "file": "docs/shared/api/express.jpg",
- "hash": "f55f7f0783d2ec9373b90e66be944eac48bb4bb8"
- },
- {
- "file": "docs/shared/api/jest.jpg",
- "hash": "d7ce915a2ad472df19f77de8437d7edc330d665c"
- },
- {
- "file": "docs/shared/api/nest.jpg",
- "hash": "9e02b1e3dde3433378881993c520c9d65688a9ea"
- },
- {
- "file": "docs/shared/api/node.jpg",
- "hash": "7003802217e825012068684547d7d5e30badd775"
- },
- {
- "file": "docs/shared/api/react.jpg",
- "hash": "e534bd5b242a8a5ed55c8d02851dd7c4d86ac3ba"
- },
- {
- "file": "docs/shared/api/web.jpg",
- "hash": "d92cea331c6bd8d4453e5311ca30b43c0a77fe0a"
- },
- {
- "file": "docs/shared/caching-example.png",
- "hash": "026252539a044e6b3312df9e6065d97c168f8f49"
- },
- {
- "file": "docs/shared/ci-graph-everything-affected.png",
- "hash": "95ea861c4ea747b8fad48d765b45384ce63f0223"
- },
- {
- "file": "docs/shared/ci-graph-one-affected.png",
- "hash": "1eb5a4c166942cd3b03be920b5b71959d2583359"
- },
- {
- "file": "docs/shared/ci-graph.png",
- "hash": "94138839eac7b5de9928acb243ab9c5c22f378c3"
- },
- {
- "file": "docs/shared/ci-overview.md",
- "hash": "170dad4304fbc587d8e41b2729c3b0516a0189d1"
- },
- {
- "file": "docs/shared/cli/generate.md",
- "hash": "b42b46bb64039bf0c337b65ab0eb4c427481b480"
- },
- {
- "file": "docs/shared/cli/run.md",
- "hash": "077afa4f89f31e5f1755488790439112d1217b9a"
- },
- {
- "file": "docs/shared/concepts/dte-guide.md",
- "hash": "2347b63778911f78d3ba687aeab69d99f41f8481"
- },
- {
- "file": "docs/shared/concepts/how-caching-works.md",
- "hash": "54d89986721a6165684abfee94efc3b9f75927fa"
- },
- {
- "file": "docs/shared/concepts/how-project-graph-is-built.md",
- "hash": "90dadd22624ed9f86797fd3135dbaca6926e32a0"
- },
- {
- "file": "docs/shared/concepts/more-concepts.md",
- "hash": "6cc913b38f51d38fbc32328a26d69489b5f9cd9d"
- },
- {
- "file": "docs/shared/concepts/task-pipeline-configuration.md",
- "hash": "90d4b272b7509d4d532a08ac4c74677580a723b5"
- },
- {
- "file": "docs/shared/continue-light.svg",
- "hash": "2563bfa114bef1fefe582096bfd1095f44a4f6c4"
- },
- {
- "file": "docs/shared/core-features/automate-updating-dependencies.md",
- "hash": "b9818bce9004ebb82ccef78799c320c43fb10b53"
- },
- {
- "file": "docs/shared/core-features/cache-task-results.md",
- "hash": "d3fd742aa1484a2ec48b4c7c7bcdaf3a6dd9fdad"
- },
- {
- "file": "docs/shared/core-features/distribute-task-execution.md",
- "hash": "58f07aefed39b9b0447274241a728128abd1abf0"
- },
- {
- "file": "docs/shared/core-features/enforce-project-boundaries.md",
- "hash": "6f0636f5e89d62a8c1649d861cc6d7f4c8fbd14e"
- },
- {
- "file": "docs/shared/core-features/explore-graph.md",
- "hash": "7b259512c4a044b592827a676a77b78e6ed6505b"
- },
- {
- "file": "docs/shared/core-features/integrate-with-editors.md",
- "hash": "80803bad57ce13bbca54f041ae145d8e1130af98"
- },
- {
- "file": "docs/shared/core-features/run-tasks.md",
- "hash": "7642b1a530ef68e733e13c7bdd8edf810d706098"
- },
- {
- "file": "docs/shared/core-tutorial/01-create-blog.md",
- "hash": "9776b93910ce61b702c84040a7206fc162a210c2"
- },
- {
- "file": "docs/shared/core-tutorial/02-create-cli.md",
- "hash": "63813ead71093b322b431bf0933dc9615403de95"
- },
- {
- "file": "docs/shared/core-tutorial/03-share-assets.md",
- "hash": "30fc8721b23271cc209df7ca6bf5bcbeff6c3b14"
- },
- {
- "file": "docs/shared/core-tutorial/04-build-affected-projects.md",
- "hash": "4f07d469339a23b867e98eb2a3c7379dc936abbc"
- },
- {
- "file": "docs/shared/core-tutorial/05-auto-detect-dependencies.md",
- "hash": "e3fa8af7843ddb05e179cfb65adafe28f31145ba"
- },
- {
- "file": "docs/shared/core-tutorial/06-summary.md",
- "hash": "ecb4f76cef34a661ede61836cdb2fc4e9c46822a"
- },
- {
- "file": "docs/shared/cypress-component-testing.md",
- "hash": "005e836cea7d1518a637d3807082807b3b54ccaf"
- },
- {
- "file": "docs/shared/cypress-logo.png",
- "hash": "6553e4a03ef1554df37beca19e24c10a10c2c71a"
- },
- {
- "file": "docs/shared/cypress-plugin.md",
- "hash": "99a3afbf2467478627b35cd02cc4bf2fcc99573e"
- },
- {
- "file": "docs/shared/daemon.md",
- "hash": "076ec915e994a4d9b354353312f25c640b404160"
- },
- {
- "file": "docs/shared/dependency-graph.png",
- "hash": "e55f1a92270868aec8e77db0925746e3d42f967c"
- },
- {
- "file": "docs/shared/detox-logo.png",
- "hash": "e09e2bf3c28973e911429168d7e11058c4bcb247"
- },
- {
- "file": "docs/shared/detox-plugin.md",
- "hash": "ec2ba5e4a9f5d5fa5df3930113825636d255748d"
- },
- {
- "file": "docs/shared/eslint-logo.png",
- "hash": "28545772e7fc8c0b488e9757b61012818d869b1b"
- },
- {
- "file": "docs/shared/eslint-plugin-nx.md",
- "hash": "d4ab500a07c13baa7db6b8377c69893dad64f134"
- },
- {
- "file": "docs/shared/eslint.md",
- "hash": "5fb71ae199df96f53555e9cc51d47a6639feeed6"
- },
- {
- "file": "docs/shared/examples/apollo-react.md",
- "hash": "a0c5eda2065f2ea52bcce52c67a4b74417676f06"
- },
- {
- "file": "docs/shared/examples/caching.md",
- "hash": "86a17084b11d22db317073b0355da555498e336c"
- },
- {
- "file": "docs/shared/examples/dte.md",
- "hash": "a1e2bba2922e6fb15a60f54a6c6fa4168973af5f"
- },
- {
- "file": "docs/shared/examples/nx-examples.md",
- "hash": "d4fab2c77f228d5180947a9cce63941da1083d3c"
- },
- {
- "file": "docs/shared/examples/react-nx.md",
- "hash": "80abc0cd34bdb0d781e9f77b7a464012ae9c43b1"
- },
- {
- "file": "docs/shared/express-logo.png",
- "hash": "19ef2ea19e29aa843c34c3c2ac00045b59868bd2"
- },
- {
- "file": "docs/shared/express-plugin.md",
- "hash": "95b27765ef9606e3c60266e1534c01440aacb2bf"
- },
- {
- "file": "docs/shared/extending-nx/project-graph-plugins.md",
- "hash": "6b7b605d0ffaca1d074d8df24e07f8d6d48cff00"
- },
- {
- "file": "docs/shared/extending-nx/project-inference-plugins.md",
- "hash": "371f6f6c3866a251bffad699d4f590da0e17e28a"
- },
- {
- "file": "docs/shared/folder-light.svg",
- "hash": "8daecdac6a358b5d789ed6e6f02dee0b4c7a48c3"
- },
- {
- "file": "docs/shared/generators/composing-generators.md",
- "hash": "d0ca6f99205665baf05428ecd50a04616f714fe4"
- },
- {
- "file": "docs/shared/generators/creating-files.md",
- "hash": "c18bfdde565560650c7bef529cfd89c8ece5078c"
- },
- {
- "file": "docs/shared/generators/generator-options.md",
- "hash": "1423116eb3fb613309627a9a1f2719542bfa4189"
- },
- {
- "file": "docs/shared/generators/modifying-files.md",
- "hash": "8a0d5fa44e5db279339d7f0a0a965cc28b4f1f1a"
- },
- {
- "file": "docs/shared/generators/workspace-generators.md",
- "hash": "e62f6e4316dd0c8342d2c8943d70a1621ad30b68"
- },
- {
- "file": "docs/shared/getting-started/intro.md",
- "hash": "fdb356fe047d83fdff96aa228b328d69355b4853"
- },
- {
- "file": "docs/shared/github.png",
- "hash": "d1a2a6374771be04e93755cd90e9bda17423f701"
- },
- {
- "file": "docs/shared/guides/adding-assets.md",
- "hash": "54a089eb8f7a280bcc0a9ae3e38458b1803b9606"
- },
- {
- "file": "docs/shared/guides/browser-support.md",
- "hash": "039aeac0bdcc7ae28cb9b8ed9b924a53cbdb247a"
- },
- {
- "file": "docs/shared/guides/customize-webpack.md",
- "hash": "c48659a87eed569f0debe04ca244ca8fb14cc6ed"
- },
- {
- "file": "docs/shared/guides/cypress/cypress-v10-migration.md",
- "hash": "f8784fd15281c900ff2676b5870c6ac210c56e05"
- },
- {
- "file": "docs/shared/guides/define-environment-variables.md",
- "hash": "78d1f6c3dd07c8eeea3dad86ca25c7be033ce287"
- },
- {
- "file": "docs/shared/guides/deploy-nextjs-to-vercel.md",
- "hash": "40dad598c5546c4e06a3fa6823d79d57763e5b9f"
- },
- {
- "file": "docs/shared/guides/integrated-repo-folder-structure.md",
- "hash": "0474093c03ffc6ac9ec57afd6a81513ceaffb877"
- },
- {
- "file": "docs/shared/guides/js-and-ts.md",
- "hash": "12e42ba8c64b4ece0e0a4fada6b4cc732562ee4a"
- },
- {
- "file": "docs/shared/guides/login-app.png",
- "hash": "b4d944d1cc62b20632f340e36800dfe8cfcdadc7"
- },
- {
- "file": "docs/shared/guides/misc-data-persistence.md",
- "hash": "5198a4e9ccb577b01677a41005ef14277cad32b7"
- },
- {
- "file": "docs/shared/guides/misc-ngrx.md",
- "hash": "09fca980d21154d3dab3c229d3550959f668cccf"
- },
- {
- "file": "docs/shared/guides/module-federation/dep-graph-2.png",
- "hash": "41a5abb7fb057dd60207992043c690eaeb6aa3e8"
- },
- {
- "file": "docs/shared/guides/module-federation/dynamic-mfe-angular.md",
- "hash": "f44e35371fa9d20939e574eb479d090af2129a52"
- },
- {
- "file": "docs/shared/guides/module-federation/faster-builds.md",
- "hash": "668ec454a5c52fea74aed70936cb33a40691e88a"
- },
- {
- "file": "docs/shared/guides/module-federation/mfe-dep-graph.png",
- "hash": "497b722bcc1421c9e00252aed7a9776ddc4d8d25"
- },
- {
- "file": "docs/shared/guides/module-federation/micro-frontend-architecture.md",
- "hash": "846d49a51bbb4e427844b3314397fe0299ced4ef"
- },
- {
- "file": "docs/shared/guides/module-federation/nx-cloud.png",
- "hash": "41fe732b1ce06a7abe33503b651e94e3fb4f211e"
- },
- {
- "file": "docs/shared/guides/module-federation/pull-request.png",
- "hash": "64adb8afe443528a46a7beb417604baf749ae496"
- },
- {
- "file": "docs/shared/guides/next-deploy-vercel-1.png",
- "hash": "4aba0a892a1cb63a964f9398be9bcca317a8cdac"
- },
- {
- "file": "docs/shared/guides/next-deploy-vercel-2.png",
- "hash": "c609cc7f1bf50ec1d72461996364a99803ab05bf"
- },
- {
- "file": "docs/shared/guides/next-deploy-vercel-3-2.png",
- "hash": "c18c1df0b2e6c0fdcfba883b0c128fa953c84816"
- },
- {
- "file": "docs/shared/guides/nx-and-angular-cli.md",
- "hash": "432b570ef8f43c54040c5d218ace2102a3f734ec"
- },
- {
- "file": "docs/shared/guides/nx-devkit-angular-devkit.md",
- "hash": "c6a224e6940da145f21218d2617721840b933175"
- },
- {
- "file": "docs/shared/guides/performance-profiling-devtools.png",
- "hash": "acc576969f89373ad3d2c0b7a1ba68a11be1a518"
- },
- {
- "file": "docs/shared/guides/performance-profiling.md",
- "hash": "7984ef79d794ccd573e0838f2f63cfc253aa9c72"
- },
- {
- "file": "docs/shared/guides/react-18.md",
- "hash": "1ed97855f2611992eec1011474fa782e11225a5d"
- },
- {
- "file": "docs/shared/guides/react-native.md",
- "hash": "60e6f0eec8e5c731758cceeddb76b4f5f3c80265"
- },
- {
- "file": "docs/shared/guides/setup-incremental-builds-angular.md",
- "hash": "93b60515ecebd560aa59fbc09344fc2d6a8e00ee"
- },
- {
- "file": "docs/shared/guides/storybook/extra-topics-for-angular-projects.md",
- "hash": "7c60496bb2b31c8606aa1118e9dbb065c2c0d3e2"
- },
- {
- "file": "docs/shared/guides/storybook/migrate-webpack-final-angular.md",
- "hash": "b040bb8dc3e908c6e070b2245b3df71f63885ed4"
- },
- {
- "file": "docs/shared/guides/storybook/migrate-webpack-final-react.md",
- "hash": "d2c834f410e1bc5f63832e3d4e6d95defdd61ba6"
- },
- {
- "file": "docs/shared/guides/storybook/plugin-angular.md",
- "hash": "6c8e1892dca596ffdf99e25ee815fb38bcbec051"
- },
- {
- "file": "docs/shared/guides/storybook/plugin-overview.md",
- "hash": "a4592a3638371297a2eb2c5968a6cf9d7c9f714f"
- },
- {
- "file": "docs/shared/guides/storybook/plugin-react.md",
- "hash": "54075a5e9dc8d25a9a0594f4f9a12864a81eda09"
- },
- {
- "file": "docs/shared/guides/storybook/storybook-composition-setup.md",
- "hash": "18325c9af0a96eba2addafeb4d2647047f1ef64a"
- },
- {
- "file": "docs/shared/guides/storybook/storybook-v6-angular.md",
- "hash": "c4fcc0f34ddac8dac359ebd675b9f51a7dbf5f23"
- },
- {
- "file": "docs/shared/guides/storybook/storybook-v6-react.md",
- "hash": "d5e89e7723026011a2329ce979295a1527a37bdd"
- },
- {
- "file": "docs/shared/guides/turbo-and-nx.md",
- "hash": "9ca6bb61ccf6d3fc8bbe729d6de00a8c7f2ea610"
- },
- {
- "file": "docs/shared/guides/use-environment-variables-in-angular.md",
- "hash": "4711f90de9a91016c8d4e01d20208060da207def"
- },
- {
- "file": "docs/shared/guides/use-environment-variables-in-react.md",
- "hash": "cf00ef306b900e1be901b9394ca508c283190991"
- },
- {
- "file": "docs/shared/guides/using-tailwind-css-in-react.md",
- "hash": "150f25e21160f92968064cb1b7c94cfd8ef2b85a"
- },
- {
- "file": "docs/shared/guides/using-tailwind-css-with-angular-projects.md",
- "hash": "f8ab5280dccccec007e6853dc8ba2467221ff376"
- },
- {
- "file": "docs/shared/guides/webpack-5.md",
- "hash": "55b2313f39a750928535d9859cbfac1577ef7677"
- },
- {
- "file": "docs/shared/guides/why-monorepos.md",
- "hash": "468aa15313f3521e12546bf727e9e06221420a58"
- },
- {
- "file": "docs/shared/images/caching/cache.png",
- "hash": "00fa5a6f5335afb90bba14427528f969c2124531"
- },
- {
- "file": "docs/shared/images/caching/nx-hashing.png",
- "hash": "2d7a6e922bd8d9a9d9dc7649cf5a7923eff25d3e"
- },
- {
- "file": "docs/shared/images/caching/task-graph-big.png",
- "hash": "8c90bcb252673c7f6a6c5fc40dfd008a03479d7e"
- },
- {
- "file": "docs/shared/images/dte/faster-builds.jpeg",
- "hash": "9aefd8978b4413ecb352d7dae8123279bb486586"
- },
- {
- "file": "docs/shared/images/dte/how-does-dte-work.jpeg",
- "hash": "8db7565c5e4e19dd0e4cc52f4d7db96e1207dc99"
- },
- {
- "file": "docs/shared/images/dte/nx-cloud-how-does-dte-work.png",
- "hash": "0e0bbf84e3ad68cc4c5d92fdee6d47f77a990a42"
- },
- {
- "file": "docs/shared/images/dte/schedule-tasks.jpeg",
- "hash": "a3d4ad9bd1fc45c6a0321d828372d25f5431322b"
- },
- {
- "file": "docs/shared/images/dte/task-dependencies.jpeg",
- "hash": "d5ab25aa8f365f8cc166508662e58414335a5e88"
- },
- {
- "file": "docs/shared/images/dte/use-agents.jpeg",
- "hash": "d5028fd81231314a137be2463d7505c4897e4f14"
- },
- {
- "file": "docs/shared/images/dte/whats-a-task.jpeg",
- "hash": "53272758acea53dfec190a04cd4fe1e7bf5b0116"
- },
- {
- "file": "docs/shared/images/getting-started/project-graph.png",
- "hash": "c4ee71478becd720d5dffb01ab83c0cacc2b7075"
- },
- {
- "file": "docs/shared/images/nx-console/nx-console-logo.png",
- "hash": "11d0c0758fd20321bdda24886f3fd573092fc5ac"
- },
- {
- "file": "docs/shared/images/project-graph.png",
- "hash": "2adc12e1ddbb9a0fcc2d571672d39114ab268e9e"
- },
- {
- "file": "docs/shared/images/running-tasks/mixing-targets.png",
- "hash": "5909320c4e623205ad469395e8b3dc074ac8c3a7"
- },
- {
- "file": "docs/shared/incremental-build-webpack-vs-incremental.png",
- "hash": "9d57530a94709215e6774bf89e28c9ff11e8c6d3"
- },
- {
- "file": "docs/shared/incremental-builds.md",
- "hash": "c0a5a08dece597829b930ae0420ba6bd98b59dab"
- },
- {
- "file": "docs/shared/jest-logo.png",
- "hash": "ac0c0f5e4429a5ce6b6f1c66bf62040b36e5794c"
- },
- {
- "file": "docs/shared/jest-plugin.md",
- "hash": "25083c82a1e2b5c906807cd2bc4dc25cd8aac354"
- },
- {
- "file": "docs/shared/js-plugin.md",
- "hash": "545e7c0d6da89fe49799e497d2c0870328b6dce4"
- },
- {
- "file": "docs/shared/linter-plugin.md",
- "hash": "e3c8dfe69c92f596308f38408ed95a797877971a"
- },
- {
- "file": "docs/shared/mental-model.md",
- "hash": "fcede282695d4eedc80dee916a68d99ac3c257a4"
- },
- {
- "file": "docs/shared/mental-model/affected.png",
- "hash": "33bc14b6d2a0e84f73aae66c3c5608efc481fb00"
- },
- {
- "file": "docs/shared/mental-model/cache.png",
- "hash": "09a64576e3809b24c02a7f1571f8645c515b803e"
- },
- {
- "file": "docs/shared/mental-model/computation-hashing-v2.png",
- "hash": "0cdd4d64c9b60c3212cf4bbd0722942aa7929b1b"
- },
- {
- "file": "docs/shared/mental-model/dte.png",
- "hash": "eec3627e7f6c21bd33cc9113024e18b17f5e7346"
- },
- {
- "file": "docs/shared/mental-model/metadata.png",
- "hash": "b1995506186b2e759a4ab2b1652c76c3cbcb0787"
- },
- {
- "file": "docs/shared/mental-model/project-graph-import.png",
- "hash": "9de9d73213ae28f9f37206000f78b80dc0626b98"
- },
- {
- "file": "docs/shared/mental-model/project-graph-updated.png",
- "hash": "e39968c6d7b5c1a5c6a4000080a557d33b22b74f"
- },
- {
- "file": "docs/shared/mental-model/project-graph.png",
- "hash": "8adccf0f8186b721f8f190c874499687c2c35e4d"
- },
- {
- "file": "docs/shared/mental-model/task-graph-big.png",
- "hash": "3faf9ca22bdf45cbfb554009870b8546dae3830b"
- },
- {
- "file": "docs/shared/mental-model/task-graph-creation.png",
- "hash": "47c344a63976a3b727bf836248bedf246edd0320"
- },
- {
- "file": "docs/shared/mental-model/task-graph-execution.png",
- "hash": "a2b768558e68238b85069aeae3bd5771564529fe"
- },
- {
- "file": "docs/shared/mental-model/task-graph-run.png",
- "hash": "bceb6ba649ce259ac88ec20e164f855813804165"
- },
- {
- "file": "docs/shared/mental-model/task-graph.png",
- "hash": "a25c5bfc6f5638c53d4abb8ab02210efd16ced96"
- },
- {
- "file": "docs/shared/migration/adding-to-monorepo.md",
- "hash": "0fce7c784e61e8bf62e8ff5978b16b18f73d5e2f"
- },
- {
- "file": "docs/shared/migration/lerna-and-nx.md",
- "hash": "09485315166e7a57105c25418ec0f72fce6b32ce"
- },
- {
- "file": "docs/shared/migration/manual.md",
- "hash": "23e436a176e5ede77a2b3c7b87e160862c89e95a"
- },
- {
- "file": "docs/shared/migration/migration-angular.md",
- "hash": "8326dfaae05388cbda59693f71246445fef1e32e"
- },
- {
- "file": "docs/shared/migration/migration-angularjs-unit-tests-passing.png",
- "hash": "53414ab08cb6659ac6e5506f9c351ad343075064"
- },
- {
- "file": "docs/shared/migration/migration-angularjs.md",
- "hash": "86520e5d4b39e22c6eecc704abaa7e3497b3add9"
- },
- {
- "file": "docs/shared/migration/migration-cra.md",
- "hash": "cd02113c546e67e5196b7502b0b63245354e8427"
- },
- {
- "file": "docs/shared/migration/preserving-git-histories.md",
- "hash": "bef6222dc87397ba1c5634d9e67a32140a63323b"
- },
- {
- "file": "docs/shared/monorepo-ci-azure.md",
- "hash": "3819677f32bd9e10d8b68f9a28fdec1c19de3a25"
- },
- {
- "file": "docs/shared/monorepo-ci-bitbucket-pipelines.md",
- "hash": "ebe93c1f23da07dcc3e715c0ee4b133a891166d9"
- },
- {
- "file": "docs/shared/monorepo-ci-circle-ci.md",
- "hash": "1a918d54df6bc17392eb0357648d7b7838f49998"
- },
- {
- "file": "docs/shared/monorepo-ci-github-actions.md",
- "hash": "fbe948090a539bf9a81218a5225b6b8c25e4cee3"
- },
- {
- "file": "docs/shared/monorepo-ci-gitlab.md",
- "hash": "64c1d2bb1e9bfb6e19ad3805afb4281a6e0cd874"
- },
- {
- "file": "docs/shared/monorepo-ci-jenkins.md",
- "hash": "1efdf947da79c439a9aa1f8433eec90b334a08d1"
- },
- {
- "file": "docs/shared/monorepo-nx-enterprise.md",
- "hash": "c135bd057f36756b9ddbd635493b7d3bd6cd4886"
- },
- {
- "file": "docs/shared/nest-logo.png",
- "hash": "f1e27035310756193211911a74cdf39d4c6376b5"
- },
- {
- "file": "docs/shared/nest-plugin.md",
- "hash": "0657bbe2fd5ed701abf8d79b6cbc52c126d13876"
- },
- {
- "file": "docs/shared/next-plugin.md",
- "hash": "1c58f47bc02aa47970e7359abf818a3fa189b6e9"
- },
- {
- "file": "docs/shared/nextjs-logo.png",
- "hash": "c1b216eee3890369436fe3eeba658c23800f026c"
- },
- {
- "file": "docs/shared/node-plugin.md",
- "hash": "464b48eba502dff3a7c06807e7f4e0a0b9505c0b"
- },
- {
- "file": "docs/shared/node-tutorial/01-create-application.md",
- "hash": "32fbc2ad5cb18c5c0ecc2b4e132c3123271e1ed6"
- },
- {
- "file": "docs/shared/node-tutorial/02-display-todos.md",
- "hash": "c4288f06c3fe5e08c4ae2efa2bdf65cae00ef0fd"
- },
- {
- "file": "docs/shared/node-tutorial/03-share-code.md",
- "hash": "27a9167cd72b959a00964ddd243d10c139bbf4a8"
- },
- {
- "file": "docs/shared/node-tutorial/04-create-libs.md",
- "hash": "a2fa1c84fe7ecee7463e480140664d8be00ba424"
- },
- {
- "file": "docs/shared/node-tutorial/05-dep-graph.md",
- "hash": "53d125ee278cb29334f5fed9972b8828ed4c6de9"
- },
- {
- "file": "docs/shared/node-tutorial/06-computation-caching.md",
- "hash": "dcea04838d99af620ded2926534b12456c242ea7"
- },
- {
- "file": "docs/shared/node-tutorial/07-test-affected-projects.md",
- "hash": "3e3a769ea1ff0f3a5393b83c6be0af501ca5ccfd"
- },
- {
- "file": "docs/shared/node-tutorial/08-summary.md",
- "hash": "01488a730a34b5e3d612ab394e4356008a508c7a"
- },
- {
- "file": "docs/shared/nx-cloud-logo-horizontal-white.svg",
- "hash": "9778d28f938c264fcae795853431a2ac4682e402"
- },
- {
- "file": "docs/shared/nx-cloud-logo.svg",
- "hash": "bdbbc8fb362ee55784df7d387beac25b8effe6eb"
- },
- {
- "file": "docs/shared/nx-compatibility-matrix.md",
- "hash": "6779f80969753177f93c194220fb0cc866084729"
- },
- {
- "file": "docs/shared/nx-console-logo.png",
- "hash": "11d0c0758fd20321bdda24886f3fd573092fc5ac"
- },
- {
- "file": "docs/shared/nx-console-screenshot.png",
- "hash": "f2710ee3751edf81345d41935db376832e3608d4"
- },
- {
- "file": "docs/shared/nx-plugin.md",
- "hash": "51f633802d2a5124fa987466e244eef3fd6660fa"
- },
- {
- "file": "docs/shared/plugin-features/create-your-own-plugin.md",
- "hash": "0c31e4a55b7f57fc2e98fd7e7663c256ac5e66ab"
- },
- {
- "file": "docs/shared/plugin-features/use-code-generators.md",
- "hash": "e89d22375c6aa9618c4fd85d06002eaedb310003"
- },
- {
- "file": "docs/shared/plugin-features/use-task-executors.md",
- "hash": "e0b19b43a6d3e5b22b9caf7d2839942c5f622de5"
- },
- {
- "file": "docs/shared/prettier-logo.png",
- "hash": "59bb947f29431ccf142c1ed2f520aa747c38541a"
- },
- {
- "file": "docs/shared/react-logo.png",
- "hash": "942a74c654f2e935e7d3e498e33acd20173f416f"
- },
- {
- "file": "docs/shared/react-native-plugin.md",
- "hash": "333f629a49b2f96be127e9e6e730916561257688"
- },
- {
- "file": "docs/shared/react-plugin.md",
- "hash": "fe9e1f5cb73f5ac070f8846ac3c4d2eb42a9adeb"
- },
- {
- "file": "docs/shared/react-tutorial/01-create-application.md",
- "hash": "1903dc5d67f0789bcefe42edf6c574bfc893e036"
- },
- {
- "file": "docs/shared/react-tutorial/02-add-e2e-test.md",
- "hash": "ec3879e350fdbd7aca1ed5c0c1640fc64612f59a"
- },
- {
- "file": "docs/shared/react-tutorial/03-display-todos.md",
- "hash": "79e3d302c243aa27a283e981dd0fd0a03fd29491"
- },
- {
- "file": "docs/shared/react-tutorial/04-connect-to-api.md",
- "hash": "ab59f56a9a570830b01a64acc590a6a56f1f554f"
- },
- {
- "file": "docs/shared/react-tutorial/05-add-node-app.md",
- "hash": "f775f72910833d7dd0c5259cac179a28290c483e"
- },
- {
- "file": "docs/shared/react-tutorial/06-proxy.md",
- "hash": "531587bb918ddaebd1dd8c956492f761a336cc55"
- },
- {
- "file": "docs/shared/react-tutorial/07-share-code.md",
- "hash": "527003874b1b6f96aa128066e3bfff2db12512ae"
- },
- {
- "file": "docs/shared/react-tutorial/08-create-libs.md",
- "hash": "e72ac0e06bcfc69782665b6ef695008d82c33b67"
- },
- {
- "file": "docs/shared/react-tutorial/09-dep-graph.md",
- "hash": "39ebd3c1a1ab71e2a03d523a01cac958909c8848"
- },
- {
- "file": "docs/shared/react-tutorial/10-computation-caching.md",
- "hash": "d067dd2c8d488fabc11273f2f896a4c9a1169651"
- },
- {
- "file": "docs/shared/react-tutorial/11-test-affected-projects.md",
- "hash": "fdb863d2d30ec91cf7c0acafcfd8a0c81b343943"
- },
- {
- "file": "docs/shared/react-tutorial/12-summary.md",
- "hash": "70f61505af4fbbf26060efa0c36248984e91c44d"
- },
- {
- "file": "docs/shared/recipes/adopt-nx.md",
- "hash": "999f8854b2cf195f8a0a7b3026320a0a125174be"
- },
- {
- "file": "docs/shared/recipes/other/advanced-update.md",
- "hash": "6ad45fbb024118d6b3e6dbba0f9a8b910141331c"
- },
- {
- "file": "docs/shared/recipes/other/ban-dependencies-with-tags.md",
- "hash": "c43e666d41fef0331bdc072f293a76d22eb9a607"
- },
- {
- "file": "docs/shared/recipes/other/ban-external-imports.md",
- "hash": "825cf907bf9aae69bbc97cc979b4b3edb5f71d9f"
- },
- {
- "file": "docs/shared/recipes/compose-executors.md",
- "hash": "2ca63b6c876ad2910757445a6cc50ce0e54628c5"
- },
- {
- "file": "docs/shared/recipes/console-generate-command.md",
- "hash": "402cd0b5245f9136111f1b10832c4243bc3c9ed6"
- },
- {
- "file": "docs/shared/recipes/console-project-pane.md",
- "hash": "48b94e08ad5f66f7599dd99b87216cc1e94d6a47"
- },
- {
- "file": "docs/shared/recipes/console-run-command.md",
- "hash": "266af32a76f96ecca8539608e3b01b8efabe9793"
- },
- {
- "file": "docs/shared/recipes/console-shortcuts.md",
- "hash": "bbf52e16d6a8c29fdc727ffbaca050ea8ab2fb20"
- },
- {
- "file": "docs/shared/recipes/export-project-graph.md",
- "hash": "e4c6def286e5ca7746f33e2f79010e1b9ceb4cf3"
- },
- {
- "file": "docs/shared/recipes/recipe-list.md",
- "hash": "dea8ac844c6221ebbc7b87454cc7a3060db7ba2b"
- },
- {
- "file": "docs/shared/recipes/resolve-circular-dependencies.md",
- "hash": "dee86b7ad6d2db6957b321119ed290cb657bddd3"
- },
- {
- "file": "docs/shared/recipes/set-up-a-new-workspace.md",
- "hash": "c2113b3d68dfcb234ee225afe382b83847f21440"
- },
- {
- "file": "docs/shared/recipes/other/tag-multiple-dimensions.md",
- "hash": "70f7256551db65ad586d1c49f0e554acad993d19"
- },
- {
- "file": "docs/shared/recipes/other/tags-allow-list.md",
- "hash": "39262d8ac3bdc913d62f327f8c68f494c5d2e146"
- },
- {
- "file": "docs/shared/recipes/use-executor-configurations.md",
- "hash": "06aa686beea9eb0adf29ba2d9beba81b705f9ba1"
- },
- {
- "file": "docs/shared/reference/commands.md",
- "hash": "09725931db43aec162ee0b5d6dec9e85ee0b7cb7"
- },
- {
- "file": "docs/shared/reference/environment-variables.md",
- "hash": "53a16b5f7aa1c64d011d0ae20af07c5c7d26846d"
- },
- {
- "file": "docs/shared/reference/nx-json.md",
- "hash": "21a5eab54f1a454564fc377a3d08cdcddc90479c"
- },
- {
- "file": "docs/shared/reference/nxignore.md",
- "hash": "0288ff21278e50bc58b8040b381097d1bc260ec0"
- },
- {
- "file": "docs/shared/reference/project-configuration.md",
- "hash": "5d4c538a31b0aac1f58b87cc5b75042d60b71868"
- },
- {
- "file": "docs/shared/refresh-light.svg",
- "hash": "e0345748192eeb97633b33feb5cd8997a98c9edc"
- },
- {
- "file": "docs/shared/running-custom-commands.md",
- "hash": "b4c151f52c767b01f3ed30f78edf1a00d6167c90"
- },
- {
- "file": "docs/shared/storybook-logo.png",
- "hash": "9201193134c0f94a842c4f929b9c23f62060e0d1"
- },
- {
- "file": "docs/shared/tools-workspace-builders.md",
- "hash": "978b3b10d9b5a5d387ce48b28703ca2f0d56a93f"
- },
- {
- "file": "docs/shared/turbo-nx-perf.gif",
- "hash": "fb7a23af633c33c1dfc3c11775253bd3b8c0cb49"
- },
- {
- "file": "docs/shared/turbo-nx-terminal.gif",
- "hash": "dffd235a737724f9e9d84479db813bd50c568a26"
- },
- {
- "file": "docs/shared/using-nx/affected.md",
- "hash": "b3d7213ac2be5966b3386cfd9f515f20c78afd54"
- },
- {
- "file": "docs/shared/using-nx/dte.png",
- "hash": "d5e9cd4eb6f9fe3e73fc574c6935cfbb89d06704"
- },
- {
- "file": "docs/shared/vscode-schematics-debug.png",
- "hash": "57efd4b6c15012e816df353cd1bc33c08a189116"
- },
- {
- "file": "docs/shared/web-plugin.md",
- "hash": "c67f52ca7a980ae132885f7f8a0259414fec063b"
- },
- {
- "file": "docs/shared/workspace-plugin.md",
- "hash": "a5722f778b8694fe790e1044b1e0f141cfd7d629"
- },
- {
- "file": "docs/shared/workspace/applications-and-libraries.md",
- "hash": "e82c00d7b4d66900d92f38bd9b3c5e3e588ea609"
- },
- {
- "file": "docs/shared/workspace/buildable-and-publishable-libraries.md",
- "hash": "1de51c427035b7e0d1fea7877b021fd62f9e98e8"
- },
- {
- "file": "docs/shared/workspace/creating-libraries.md",
- "hash": "a14217df9b3bdd1b42f57e281d8a0c68b7c80c46"
- },
- {
- "file": "docs/shared/workspace/grouping-libraries.md",
- "hash": "8a0c3a4cf76d3b6a7a7922d090bac25bfc8e4bbf"
- },
- {
- "file": "docs/shared/workspace/library-types.md",
- "hash": "c23316b38e9323c523f41b8d3137561b3518cf9a"
- }
- ]
- }
- }
- ],
- "dependencies": {
- "nx-dev-feature-package-schema-viewer": [
- {
- "source": "nx-dev-feature-package-schema-viewer",
- "target": "nx-dev-data-access-packages",
- "type": "static"
- },
- {
- "source": "nx-dev-feature-package-schema-viewer",
- "target": "nx-dev-models-package",
- "type": "static"
- },
- {
- "source": "nx-dev-feature-package-schema-viewer",
- "target": "nx-dev-ui-markdoc",
- "type": "static"
- },
- {
- "source": "nx-dev-feature-package-schema-viewer",
- "target": "nx-dev-ui-common",
- "type": "static"
- }
- ],
- "make-angular-cli-faster": [
- {
- "source": "make-angular-cli-faster",
- "target": "devkit",
- "type": "static"
- },
- {
- "source": "make-angular-cli-faster",
- "target": "workspace",
- "type": "static"
- },
- {
- "source": "make-angular-cli-faster",
- "target": "nx",
- "type": "static"
- }
- ],
- "create-nx-workspace": [
- {
- "source": "create-nx-workspace",
- "target": "workspace",
- "type": "implicit"
- }
- ],
- "nx-dev-data-access-documents": [
- {
- "source": "nx-dev-data-access-documents",
- "target": "nx-dev-models-document",
- "type": "static"
- },
- {
- "source": "nx-dev-data-access-documents",
- "target": "nx-dev-ui-markdoc",
- "type": "static"
- }
- ],
- "add-nx-to-monorepo": [
- {
- "source": "add-nx-to-monorepo",
- "target": "devkit",
- "type": "static"
- },
- {
- "source": "add-nx-to-monorepo",
- "target": "workspace",
- "type": "static"
- },
- {
- "source": "add-nx-to-monorepo",
- "target": "nx",
- "type": "static"
- }
- ],
- "e2e-make-angular-cli-faster": [
- {
- "source": "e2e-make-angular-cli-faster",
- "target": "make-angular-cli-faster",
- "type": "implicit"
- },
- {
- "source": "e2e-make-angular-cli-faster",
- "target": "e2e-utils",
- "type": "static"
- },
- {
- "source": "e2e-make-angular-cli-faster",
- "target": "nx",
- "type": "static"
- }
- ],
- "nx-dev-data-access-packages": [
- {
- "source": "nx-dev-data-access-packages",
- "target": "nx-dev-models-package",
- "type": "static"
- },
- {
- "source": "nx-dev-data-access-packages",
- "target": "nx-dev-models-document",
- "type": "static"
- }
- ],
- "create-nx-plugin": [
- {
- "source": "create-nx-plugin",
- "target": "nx-plugin",
- "type": "implicit"
- },
- {
- "source": "create-nx-plugin",
- "target": "devkit",
- "type": "static"
- },
- {
- "source": "create-nx-plugin",
- "target": "nx",
- "type": "static"
- }
- ],
- "eslint-plugin-nx": [
- {
- "source": "eslint-plugin-nx",
- "target": "devkit",
- "type": "static"
- },
- {
- "source": "eslint-plugin-nx",
- "target": "workspace",
- "type": "static"
- },
- {
- "source": "eslint-plugin-nx",
- "target": "nx",
- "type": "static"
- }
- ],
- "nx-dev-feature-doc-viewer": [
- {
- "source": "nx-dev-feature-doc-viewer",
- "target": "nx-dev-models-document",
- "type": "static"
- },
- {
- "source": "nx-dev-feature-doc-viewer",
- "target": "nx-dev-ui-markdoc",
- "type": "static"
- },
- {
- "source": "nx-dev-feature-doc-viewer",
- "target": "nx-dev-models-menu",
- "type": "static"
- },
- {
- "source": "nx-dev-feature-doc-viewer",
- "target": "nx-dev-ui-common",
- "type": "static"
- }
- ],
- "nx-dev-feature-analytics": [],
- "nx-dev-data-access-menu": [
- {
- "source": "nx-dev-data-access-menu",
- "target": "nx-dev-models-document",
- "type": "static"
- },
- {
- "source": "nx-dev-data-access-menu",
- "target": "nx-dev-models-menu",
- "type": "static"
- }
- ],
- "e2e-add-nx-to-monorepo": [
- {
- "source": "e2e-add-nx-to-monorepo",
- "target": "workspace",
- "type": "implicit"
- },
- {
- "source": "e2e-add-nx-to-monorepo",
- "target": "e2e-utils",
- "type": "static"
- },
- {
- "source": "e2e-add-nx-to-monorepo",
- "target": "nx",
- "type": "static"
- }
- ],
- "e2e-angular-extensions": [
- {
- "source": "e2e-angular-extensions",
- "target": "angular",
- "type": "implicit"
- },
- {
- "source": "e2e-angular-extensions",
- "target": "e2e-utils",
- "type": "static"
- },
- {
- "source": "e2e-angular-extensions",
- "target": "workspace",
- "type": "static"
- },
- {
- "source": "e2e-angular-extensions",
- "target": "cypress",
- "type": "static"
- }
- ],
- "nx-dev-models-document": [],
- "nx-dev-ui-sponsor-card": [],
- "e2e-storybook-angular": [
- {
- "source": "e2e-storybook-angular",
- "target": "storybook",
- "type": "implicit"
- },
- {
- "source": "e2e-storybook-angular",
- "target": "e2e-utils",
- "type": "static"
- }
- ],
- "nx-dev-feature-search": [],
- "nx-dev-models-package": [],
- "nx-dev-ui-member-card": [],
- "react-native": [
- {
- "source": "react-native",
- "target": "detox",
- "type": "static"
- },
- {
- "source": "react-native",
- "target": "devkit",
- "type": "static"
- },
- {
- "source": "react-native",
- "target": "jest",
- "type": "static"
- },
- {
- "source": "react-native",
- "target": "linter",
- "type": "static"
- },
- {
- "source": "react-native",
- "target": "react",
- "type": "static"
- },
- {
- "source": "react-native",
- "target": "storybook",
- "type": "static"
- },
- {
- "source": "react-native",
- "target": "workspace",
- "type": "static"
- },
- {
- "source": "react-native",
- "target": "nx",
- "type": "static"
- }
- ],
- "e2e-workspace-create": [
- {
- "source": "e2e-workspace-create",
- "target": "create-nx-workspace",
- "type": "implicit"
- },
- {
- "source": "e2e-workspace-create",
- "target": "e2e-utils",
- "type": "static"
- }
- ],
- "nx-dev-ui-conference": [
- {
- "source": "nx-dev-ui-conference",
- "target": "nx-dev-ui-member-card",
- "type": "static"
- },
- {
- "source": "nx-dev-ui-conference",
- "target": "nx-dev-ui-sponsor-card",
- "type": "static"
- }
- ],
- "nx-dev-ui-references": [
- {
- "source": "nx-dev-ui-references",
- "target": "nx-dev-models-menu",
- "type": "static"
- }
- ],
- "nx-dev-ui-community": [
- {
- "source": "nx-dev-ui-community",
- "target": "nx-dev-ui-common",
- "type": "static"
- }
- ],
- "cra-to-nx": [
- {
- "source": "cra-to-nx",
- "target": "devkit",
- "type": "static"
- },
- {
- "source": "cra-to-nx",
- "target": "workspace",
- "type": "static"
- },
- {
- "source": "cra-to-nx",
- "target": "nx",
- "type": "static"
- }
- ],
- "eslint-rules": [],
- "nx-dev-models-menu": [
- {
- "source": "nx-dev-models-menu",
- "target": "nx-dev-models-document",
- "type": "static"
- }
- ],
- "nx-dev-ui-commands": [],
- "nx-plugin": [
- {
- "source": "nx-plugin",
- "target": "devkit",
- "type": "static"
- },
- {
- "source": "nx-plugin",
- "target": "jest",
- "type": "static"
- },
- {
- "source": "nx-plugin",
- "target": "js",
- "type": "static"
- },
- {
- "source": "nx-plugin",
- "target": "linter",
- "type": "static"
- },
- {
- "source": "nx-plugin",
- "target": "workspace",
- "type": "static"
- },
- {
- "source": "nx-plugin",
- "target": "nx",
- "type": "static"
- }
- ],
- "storybook": [
- {
- "source": "storybook",
- "target": "cypress",
- "type": "static"
- },
- {
- "source": "storybook",
- "target": "devkit",
- "type": "static"
- },
- {
- "source": "storybook",
- "target": "linter",
- "type": "static"
- },
- {
- "source": "storybook",
- "target": "workspace",
- "type": "static"
- }
- ],
- "workspace": [
- {
- "source": "workspace",
- "target": "devkit",
- "type": "static"
- },
- {
- "source": "workspace",
- "target": "nx",
- "type": "static"
- }
- ],
- "nx-dev-e2e": [
- {
- "source": "nx-dev-e2e",
- "target": "nx-dev",
- "type": "implicit"
- }
- ],
- "nx-dev-ui-markdoc": [
- {
- "source": "nx-dev-ui-markdoc",
- "target": "nx-dev-models-document",
- "type": "static"
- }
- ],
- "angular": [
- {
- "source": "angular",
- "target": "workspace",
- "type": "implicit"
- },
- {
- "source": "angular",
- "target": "cypress",
- "type": "implicit"
- },
- {
- "source": "angular",
- "target": "jest",
- "type": "implicit"
- },
- {
- "source": "angular",
- "target": "devkit",
- "type": "static"
- },
- {
- "source": "angular",
- "target": "linter",
- "type": "static"
- },
- {
- "source": "angular",
- "target": "storybook",
- "type": "static"
- },
- {
- "source": "angular",
- "target": "web",
- "type": "static"
- },
- {
- "source": "angular",
- "target": "nx",
- "type": "static"
- }
- ],
- "cypress": [
- {
- "source": "cypress",
- "target": "devkit",
- "type": "static"
- },
- {
- "source": "cypress",
- "target": "linter",
- "type": "static"
- },
- {
- "source": "cypress",
- "target": "workspace",
- "type": "static"
- },
- {
- "source": "cypress",
- "target": "nx",
- "type": "static"
- }
- ],
- "e2e-angular-core": [
- {
- "source": "e2e-angular-core",
- "target": "angular",
- "type": "implicit"
- },
- {
- "source": "e2e-angular-core",
- "target": "e2e-utils",
- "type": "static"
- },
- {
- "source": "e2e-angular-core",
- "target": "nx",
- "type": "static"
- },
- {
- "source": "e2e-angular-core",
- "target": "devkit",
- "type": "static"
- }
- ],
- "e2e-graph-client": [
- {
- "source": "e2e-graph-client",
- "target": "graph-client",
- "type": "implicit"
- },
- {
- "source": "e2e-graph-client",
- "target": "cypress",
- "type": "static"
- }
- ],
- "e2e-react-native": [
- {
- "source": "e2e-react-native",
- "target": "react-native",
- "type": "implicit"
- },
- {
- "source": "e2e-react-native",
- "target": "e2e-utils",
- "type": "static"
- }
- ],
- "express": [
- {
- "source": "express",
- "target": "node",
- "type": "implicit"
- },
- {
- "source": "express",
- "target": "devkit",
- "type": "static"
- },
- {
- "source": "express",
- "target": "workspace",
- "type": "static"
- },
- {
- "source": "express",
- "target": "linter",
- "type": "static"
- }
- ],
- "nx-dev-ui-common": [
- {
- "source": "nx-dev-ui-common",
- "target": "nx-dev-feature-search",
- "type": "static"
- },
- {
- "source": "nx-dev-ui-common",
- "target": "nx-dev-models-menu",
- "type": "static"
- }
- ],
- "devkit": [
- {
- "source": "devkit",
- "target": "nx",
- "type": "static"
- }
- ],
- "linter": [
- {
- "source": "linter",
- "target": "eslint-plugin-nx",
- "type": "implicit"
- },
- {
- "source": "linter",
- "target": "devkit",
- "type": "static"
- },
- {
- "source": "linter",
- "target": "jest",
- "type": "static"
- },
- {
- "source": "linter",
- "target": "nx",
- "type": "static"
- },
- {
- "source": "linter",
- "target": "workspace",
- "type": "static"
- }
- ],
- "detox": [
- {
- "source": "detox",
- "target": "devkit",
- "type": "static"
- },
- {
- "source": "detox",
- "target": "jest",
- "type": "static"
- },
- {
- "source": "detox",
- "target": "linter",
- "type": "static"
- },
- {
- "source": "detox",
- "target": "react",
- "type": "static"
- },
- {
- "source": "detox",
- "target": "workspace",
- "type": "static"
- }
- ],
- "nx-dev-ui-home": [
- {
- "source": "nx-dev-ui-home",
- "target": "nx-dev-feature-analytics",
- "type": "static"
- },
- {
- "source": "nx-dev-ui-home",
- "target": "nx-dev-ui-commands",
- "type": "static"
- },
- {
- "source": "nx-dev-ui-home",
- "target": "nx-dev-ui-common",
- "type": "static"
- }
- ],
- "react": [
- {
- "source": "react",
- "target": "cypress",
- "type": "static"
- },
- {
- "source": "react",
- "target": "devkit",
- "type": "static"
- },
- {
- "source": "react",
- "target": "jest",
- "type": "static"
- },
- {
- "source": "react",
- "target": "js",
- "type": "static"
- },
- {
- "source": "react",
- "target": "linter",
- "type": "static"
- },
- {
- "source": "react",
- "target": "storybook",
- "type": "static"
- },
- {
- "source": "react",
- "target": "web",
- "type": "static"
- },
- {
- "source": "react",
- "target": "workspace",
- "type": "static"
- },
- {
- "source": "react",
- "target": "nx",
- "type": "static"
- }
- ],
- "e2e-nx-plugin": [
- {
- "source": "e2e-nx-plugin",
- "target": "create-nx-plugin",
- "type": "implicit"
- },
- {
- "source": "e2e-nx-plugin",
- "target": "devkit",
- "type": "static"
- },
- {
- "source": "e2e-nx-plugin",
- "target": "e2e-utils",
- "type": "static"
- }
- ],
- "e2e-storybook": [
- {
- "source": "e2e-storybook",
- "target": "storybook",
- "type": "implicit"
- },
- {
- "source": "e2e-storybook",
- "target": "e2e-utils",
- "type": "static"
- }
- ],
- "jest": [
- {
- "source": "jest",
- "target": "devkit",
- "type": "static"
- },
- {
- "source": "jest",
- "target": "workspace",
- "type": "static"
- },
- {
- "source": "jest",
- "target": "nx",
- "type": "static"
- }
- ],
- "nest": [
- {
- "source": "nest",
- "target": "node",
- "type": "implicit"
- },
- {
- "source": "nest",
- "target": "linter",
- "type": "implicit"
- },
- {
- "source": "nest",
- "target": "devkit",
- "type": "static"
- },
- {
- "source": "nest",
- "target": "jest",
- "type": "static"
- },
- {
- "source": "nest",
- "target": "js",
- "type": "static"
- },
- {
- "source": "nest",
- "target": "workspace",
- "type": "static"
- }
- ],
- "next": [
- {
- "source": "next",
- "target": "cypress",
- "type": "static"
- },
- {
- "source": "next",
- "target": "devkit",
- "type": "static"
- },
- {
- "source": "next",
- "target": "jest",
- "type": "static"
- },
- {
- "source": "next",
- "target": "linter",
- "type": "static"
- },
- {
- "source": "next",
- "target": "react",
- "type": "static"
- },
- {
- "source": "next",
- "target": "web",
- "type": "static"
- },
- {
- "source": "next",
- "target": "workspace",
- "type": "static"
- },
- {
- "source": "next",
- "target": "nx",
- "type": "static"
- }
- ],
- "node": [
- {
- "source": "node",
- "target": "devkit",
- "type": "static"
- },
- {
- "source": "node",
- "target": "jest",
- "type": "static"
- },
- {
- "source": "node",
- "target": "js",
- "type": "static"
- },
- {
- "source": "node",
- "target": "linter",
- "type": "static"
- },
- {
- "source": "node",
- "target": "workspace",
- "type": "static"
- },
- {
- "source": "node",
- "target": "nx",
- "type": "static"
- }
- ],
- "nx-dev": [
- {
- "source": "nx-dev",
- "target": "docs",
- "type": "implicit"
- },
- {
- "source": "nx-dev",
- "target": "jest",
- "type": "static"
- },
- {
- "source": "nx-dev",
- "target": "nx-dev-data-access-documents",
- "type": "static"
- },
- {
- "source": "nx-dev",
- "target": "nx-dev-data-access-menu",
- "type": "static"
- },
- {
- "source": "nx-dev",
- "target": "nx-dev-data-access-packages",
- "type": "static"
- },
- {
- "source": "nx-dev",
- "target": "nx-dev-models-document",
- "type": "static"
- },
- {
- "source": "nx-dev",
- "target": "nx-dev-feature-analytics",
- "type": "static"
- },
- {
- "source": "nx-dev",
- "target": "nx-dev-ui-common",
- "type": "static"
- },
- {
- "source": "nx-dev",
- "target": "nx-dev-feature-package-schema-viewer",
- "type": "static"
- },
- {
- "source": "nx-dev",
- "target": "nx-dev-feature-doc-viewer",
- "type": "static"
- },
- {
- "source": "nx-dev",
- "target": "nx-dev-models-menu",
- "type": "static"
- },
- {
- "source": "nx-dev",
- "target": "nx-dev-models-package",
- "type": "static"
- },
- {
- "source": "nx-dev",
- "target": "nx-dev-ui-community",
- "type": "static"
- },
- {
- "source": "nx-dev",
- "target": "nx-dev-ui-conference",
- "type": "static"
- },
- {
- "source": "nx-dev",
- "target": "nx-dev-ui-home",
- "type": "static"
- },
- {
- "source": "nx-dev",
- "target": "nx-dev-ui-references",
- "type": "static"
- }
- ],
- "typedoc-theme": [],
- "cli": [
- {
- "source": "cli",
- "target": "workspace",
- "type": "implicit"
- },
- {
- "source": "cli",
- "target": "nx",
- "type": "static"
- }
- ],
- "graph-client": [],
- "tao": [
- {
- "source": "tao",
- "target": "nx",
- "type": "static"
- }
- ],
- "web": [
- {
- "source": "web",
- "target": "cypress",
- "type": "static"
- },
- {
- "source": "web",
- "target": "devkit",
- "type": "static"
- },
- {
- "source": "web",
- "target": "jest",
- "type": "static"
- },
- {
- "source": "web",
- "target": "js",
- "type": "static"
- },
- {
- "source": "web",
- "target": "linter",
- "type": "static"
- },
- {
- "source": "web",
- "target": "workspace",
- "type": "static"
- },
- {
- "source": "web",
- "target": "nx",
- "type": "static"
- }
- ],
- "e2e-cypress": [
- {
- "source": "e2e-cypress",
- "target": "cypress",
- "type": "implicit"
- },
- {
- "source": "e2e-cypress",
- "target": "react",
- "type": "implicit"
- },
- {
- "source": "e2e-cypress",
- "target": "e2e-utils",
- "type": "static"
- }
- ],
- "e2e-nx-init": [
- {
- "source": "e2e-nx-init",
- "target": "nx",
- "type": "implicit"
- },
- {
- "source": "e2e-nx-init",
- "target": "e2e-utils",
- "type": "static"
- }
- ],
- "e2e-nx-misc": [
- {
- "source": "e2e-nx-misc",
- "target": "js",
- "type": "implicit"
- },
- {
- "source": "e2e-nx-misc",
- "target": "e2e-utils",
- "type": "static"
- },
- {
- "source": "e2e-nx-misc",
- "target": "devkit",
- "type": "static"
- },
- {
- "source": "e2e-nx-misc",
- "target": "nx",
- "type": "static"
- }
- ],
- "js": [
- {
- "source": "js",
- "target": "devkit",
- "type": "static"
- },
- {
- "source": "js",
- "target": "jest",
- "type": "static"
- },
- {
- "source": "js",
- "target": "linter",
- "type": "static"
- },
- {
- "source": "js",
- "target": "workspace",
- "type": "static"
- },
- {
- "source": "js",
- "target": "nx",
- "type": "static"
- }
- ],
- "nx": [
- {
- "source": "nx",
- "target": "graph-client",
- "type": "implicit"
- }
- ],
- "e2e-linter": [
- {
- "source": "e2e-linter",
- "target": "linter",
- "type": "implicit"
- },
- {
- "source": "e2e-linter",
- "target": "e2e-utils",
- "type": "static"
- }
- ],
- "e2e-nx-run": [
- {
- "source": "e2e-nx-run",
- "target": "js",
- "type": "implicit"
- },
- {
- "source": "e2e-nx-run",
- "target": "devkit",
- "type": "static"
- },
- {
- "source": "e2e-nx-run",
- "target": "e2e-utils",
- "type": "static"
- }
- ],
- "e2e-detox": [
- {
- "source": "e2e-detox",
- "target": "detox",
- "type": "implicit"
- },
- {
- "source": "e2e-detox",
- "target": "e2e-utils",
- "type": "static"
- }
- ],
- "e2e-react": [
- {
- "source": "e2e-react",
- "target": "react",
- "type": "implicit"
- },
- {
- "source": "e2e-react",
- "target": "e2e-utils",
- "type": "static"
- },
- {
- "source": "e2e-react",
- "target": "devkit",
- "type": "static"
- }
- ],
- "e2e-utils": [
- {
- "source": "e2e-utils",
- "target": "devkit",
- "type": "static"
- },
- {
- "source": "e2e-utils",
- "target": "workspace",
- "type": "static"
- },
- {
- "source": "e2e-utils",
- "target": "nx",
- "type": "static"
- }
- ],
- "e2e-jest": [
- {
- "source": "e2e-jest",
- "target": "jest",
- "type": "implicit"
- },
- {
- "source": "e2e-jest",
- "target": "e2e-utils",
- "type": "static"
- },
- {
- "source": "e2e-jest",
- "target": "nx",
- "type": "static"
- }
- ],
- "e2e-next": [
- {
- "source": "e2e-next",
- "target": "next",
- "type": "implicit"
- },
- {
- "source": "e2e-next",
- "target": "e2e-utils",
- "type": "static"
- },
- {
- "source": "e2e-next",
- "target": "workspace",
- "type": "static"
- }
- ],
- "e2e-node": [
- {
- "source": "e2e-node",
- "target": "node",
- "type": "implicit"
- },
- {
- "source": "e2e-node",
- "target": "nest",
- "type": "implicit"
- },
- {
- "source": "e2e-node",
- "target": "e2e-utils",
- "type": "static"
- }
- ],
- "e2e-web": [
- {
- "source": "e2e-web",
- "target": "web",
- "type": "implicit"
- },
- {
- "source": "e2e-web",
- "target": "e2e-utils",
- "type": "static"
- }
- ],
- "e2e-js": [
- {
- "source": "e2e-js",
- "target": "jest",
- "type": "implicit"
- },
- {
- "source": "e2e-js",
- "target": "e2e-utils",
- "type": "static"
- }
- ],
- "docs": []
- },
- "layout": {
- "appsDir": "",
- "libsDir": ""
- },
- "affected": [],
- "focus": null,
- "groupByFolder": false,
- "exclude": []
-}
diff --git a/graph/client/src/assets/graphs/ocean.json b/graph/client/src/assets/graphs/ocean.json
deleted file mode 100644
index 1b9047dcd1..0000000000
--- a/graph/client/src/assets/graphs/ocean.json
+++ /dev/null
@@ -1,2684 +0,0 @@
-{
- "hash": "2b07a7e3a85d36b3b567c3a8e11febc1e73f81d021a42221cba01217bca649e2",
- "projects": [
- {
- "name": "nx-cloud-private-cloud-feature-community-on-public-cloud",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/nx-cloud/private-cloud/feature-community-on-public-cloud",
- "files": []
- }
- },
- {
- "name": "nx-cloud-private-cloud-feature-installation",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/nx-cloud/private-cloud/feature-installation",
- "files": []
- }
- },
- {
- "name": "nx-cloud-reference-feature-workspace-setup",
- "type": "lib",
- "data": {
- "tags": ["nx-cloud", "type:feature"],
- "root": "libs/nx-cloud/reference/feature-workspace-setup",
- "files": []
- }
- },
- {
- "name": "nx-cloud-reference-feature-invite-members",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/nx-cloud/reference/feature-invite-members",
- "files": []
- }
- },
- {
- "name": "nx-cloud-data-access-workspace",
- "type": "lib",
- "data": {
- "tags": ["nx-cloud", "type:data-access"],
- "root": "libs/nx-cloud/reference/data-access-workspace",
- "files": []
- }
- },
- {
- "name": "nx-cloud-reference-feature-access-token",
- "type": "lib",
- "data": {
- "tags": ["type:feature"],
- "root": "libs/nx-cloud/reference/feature-access-token",
- "files": []
- }
- },
- {
- "name": "nx-cloud-private-cloud-feature-landing",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/nx-cloud/private-cloud/feature-landing",
- "files": []
- }
- },
- {
- "name": "nx-cloud-reference-util-org-membership",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/nx-cloud/reference/util-org-membership",
- "files": []
- }
- },
- {
- "name": "nrwlio-site-pages-feature-style-guide",
- "type": "lib",
- "data": {
- "tags": ["scope:nrwlio", "type:feature"],
- "root": "libs/nrwlio-site/pages/feature-style-guide",
- "files": []
- }
- },
- {
- "name": "nrwlio-site-pages-feature-contact-us",
- "type": "lib",
- "data": {
- "tags": ["scope:nrwlio", "type:feature"],
- "root": "libs/nrwlio-site/pages/feature-contact-us",
- "files": []
- }
- },
- {
- "name": "nx-cloud-reference-feature-workspace",
- "type": "lib",
- "data": {
- "tags": ["nx-cloud", "type:feature"],
- "root": "libs/nx-cloud/reference/feature-workspace",
- "files": []
- }
- },
- {
- "name": "nx-cloud-feature-make-ng-cli-faster",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/nx-cloud/feature-make-ng-cli-faster",
- "files": []
- }
- },
- {
- "name": "nx-cloud-private-cloud-feature-home",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/nx-cloud/private-cloud/feature-home",
- "files": []
- }
- },
- {
- "name": "nx-cloud-reference-feature-branches",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/nx-cloud/reference/feature-branches",
- "files": []
- }
- },
- {
- "name": "platform-data-access-nrwl-changelog",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/platform/data-access-nrwl-changelog",
- "files": []
- }
- },
- {
- "name": "nrwlio-site-pages-feature-about-us",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/nrwlio-site/pages/feature-about-us",
- "files": []
- }
- },
- {
- "name": "nrwlio-site-pages-feature-products",
- "type": "lib",
- "data": {
- "tags": ["scope:nrwlio", "type:feature"],
- "root": "libs/nrwlio-site/pages/feature-products",
- "files": []
- }
- },
- {
- "name": "nrwlio-site-pages-feature-services",
- "type": "lib",
- "data": {
- "tags": ["scope:nrwlio", "type:feature"],
- "root": "libs/nrwlio-site/pages/feature-services",
- "files": []
- }
- },
- {
- "name": "nx-cloud-feature-billing",
- "type": "lib",
- "data": {
- "tags": ["nx-cloud", "type:feature"],
- "root": "libs/nx-cloud/reference/feature-billing",
- "files": []
- }
- },
- {
- "name": "nrwlio-site-pages-feature-careers",
- "type": "lib",
- "data": {
- "tags": ["scope:nrwlio", "type:feature"],
- "root": "libs/nrwlio-site/pages/feature-careers",
- "files": []
- }
- },
- {
- "name": "nx-cloud-feature-terms-of-service",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/nx-cloud/feature-terms-of-service",
- "files": []
- }
- },
- {
- "name": "platform-data-access-live-events",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/platform/data-access-live-events",
- "files": []
- }
- },
- {
- "name": "nrwlio-site-data-access-graphql",
- "type": "lib",
- "data": {
- "tags": ["scope:nrwlio", "type:data-access"],
- "root": "libs/nrwlio-site/data-access-graphql",
- "files": []
- }
- },
- {
- "name": "nx-cloud-reference-feature-runs",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/nx-cloud/reference/feature-runs",
- "files": []
- }
- },
- {
- "name": "platform-feature-live-broadcast",
- "type": "lib",
- "data": {
- "tags": ["type:feature"],
- "root": "libs/platform/feature-live-broadcast",
- "files": []
- }
- },
- {
- "name": "platform-feature-nrwl-changelog",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/platform/feature-nrwl-changelog",
- "files": []
- }
- },
- {
- "name": "nrwlio-site-pages-feature-home",
- "type": "lib",
- "data": {
- "tags": ["scope:nrwlio", "type:feature"],
- "root": "libs/nrwlio-site/pages/feature-home",
- "files": []
- }
- },
- {
- "name": "nx-cloud-admin-feature-support",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/nx-cloud/admin/feature-support",
- "files": []
- }
- },
- {
- "name": "nx-cloud-reference-feature-org",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/nx-cloud/reference/feature-org",
- "files": []
- }
- },
- {
- "name": "platform-feature-live-workshop",
- "type": "lib",
- "data": {
- "tags": ["type:feature", "platform:client", "scope:live-workshop"],
- "root": "libs/platform/feature-live-workshop",
- "files": []
- }
- },
- {
- "name": "platform-feature-organizations",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/platform/feature-organizations",
- "files": []
- }
- },
- {
- "name": "platform-data-access-cookbook",
- "type": "lib",
- "data": {
- "tags": ["data-access"],
- "root": "libs/platform/data-access-cookbook",
- "files": []
- }
- },
- {
- "name": "platform-feature-landing-page",
- "type": "lib",
- "data": {
- "tags": ["type:feature"],
- "root": "libs/platform/feature-landing-page",
- "files": []
- }
- },
- {
- "name": "platform-feature-organization",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/platform/feature-organization",
- "files": []
- }
- },
- {
- "name": "nx-cloud-data-access-graphql",
- "type": "lib",
- "data": {
- "tags": ["nx-cloud", "type:data-access"],
- "root": "libs/nx-cloud/data-access-graphql",
- "files": []
- }
- },
- {
- "name": "platform-data-access-courses",
- "type": "lib",
- "data": {
- "tags": ["type:data-access"],
- "root": "libs/platform/data-access-courses",
- "files": []
- }
- },
- {
- "name": "platform-data-access-graphql",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/platform/data-access-graphql",
- "files": []
- }
- },
- {
- "name": "platform-feature-live-events",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/platform/feature-live-events",
- "files": []
- }
- },
- {
- "name": "nrwlio-site-ui-text-sliders",
- "type": "lib",
- "data": {
- "tags": ["scope:nrwlio", "type:ui"],
- "root": "libs/nrwlio-site/ui/text-sliders",
- "files": []
- }
- },
- {
- "name": "nx-cloud-feature-promotions",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/nx-cloud/feature-promotions",
- "files": []
- }
- },
- {
- "name": "platform-feature-expert-bio",
- "type": "lib",
- "data": {
- "tags": ["type:feature"],
- "root": "libs/platform/feature-expert-bio",
- "files": []
- }
- },
- {
- "name": "design-system-testimonials",
- "type": "lib",
- "data": {
- "tags": ["scope:design-system", "type:ui"],
- "root": "libs/design-system/testimonials",
- "files": []
- }
- },
- {
- "name": "nx-cloud-ui-breadcrumb-nav",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/nx-cloud/ui/breadcrumb-nav",
- "files": []
- }
- },
- {
- "name": "platform-data-access-blurb",
- "type": "lib",
- "data": {
- "tags": ["type:data-access"],
- "root": "libs/platform/data-access-blurb",
- "files": []
- }
- },
- {
- "name": "platform-feature-dashboard",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/platform/feature-dashboard",
- "files": []
- }
- },
- {
- "name": "nrwlio-site-feature-pages",
- "type": "lib",
- "data": {
- "tags": ["scope:nrwlio", "type:feature"],
- "root": "libs/nrwlio-site/feature-pages",
- "files": []
- }
- },
- {
- "name": "nx-cloud-feature-policies",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/nx-cloud/feature-policies",
- "files": []
- }
- },
- {
- "name": "platform-data-access-book",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/platform/data-access-book",
- "files": []
- }
- },
- {
- "name": "platform-feature-cookbook",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/platform/feature-cookbook",
- "files": []
- }
- },
- {
- "name": "platform-feature-policies",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/platform/feature-policies",
- "files": []
- }
- },
- {
- "name": "shared-utils-download-csv",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/shared/utils/download-csv",
- "files": []
- }
- },
- {
- "name": "nx-cloud-feature-landing",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/nx-cloud/feature-landing",
- "files": []
- }
- },
- {
- "name": "nx-cloud-feature-pricing",
- "type": "lib",
- "data": {
- "tags": ["nx-cloud", "type:feature"],
- "root": "libs/nx-cloud/feature-pricing",
- "files": []
- }
- },
- {
- "name": "platform-feature-courses",
- "type": "lib",
- "data": {
- "tags": ["type:feature"],
- "root": "libs/platform/feature-courses",
- "files": []
- }
- },
- {
- "name": "platform-feature-reports",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/platform/feature-reports",
- "files": []
- }
- },
- {
- "name": "platform-feature-topics",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "libs/platform/feature-topics",
- "files": []
- }
- },
- {
- "name": "shared-google-analytics",
- "type": "lib",
- "data": {
- "tags": ["scope:shared"],
- "root": "libs/shared/google-analytics",
- "files": []
- }
- },
- {
- "name": "design-system-contents",
- "type": "lib",
- "data": {
- "tags": ["scope:design-system", "type:ui"],
- "root": "libs/design-system/contents",
- "files": []
- }
- },
- {
- "name": "nrwlio-site-contentful",
- "type": "lib",
- "data": {
- "tags": ["scope:nrwlio"],
- "root": "libs/nrwlio-site/contentful",
- "files": []
- }
- },
- {
- "name": "platform-feature-about",
- "type": "lib",
- "data": {
- "tags": ["type:feature"],
- "root": "libs/platform/feature-about",
- "files": []
- }
- },
- {
- "name": "platform-feature-books",
- "type": "lib",
- "data": { "tags": [], "root": "libs/platform/feature-books", "files": [] }
- },
- {
- "name": "platform-feature-users",
- "type": "lib",
- "data": { "tags": [], "root": "libs/platform/feature-users", "files": [] }
- },
- {
- "name": "platform-ui-expert-bio",
- "type": "lib",
- "data": {
- "tags": ["type:ui"],
- "root": "libs/platform/ui-expert-bio",
- "files": []
- }
- },
- {
- "name": "nrwlio-site-ui-footer",
- "type": "lib",
- "data": {
- "tags": ["scope:nrwlio", "type:ui"],
- "root": "libs/nrwlio-site/ui/footer",
- "files": []
- }
- },
- {
- "name": "nrwlio-site-ui-header",
- "type": "lib",
- "data": {
- "tags": ["scope:nrwlio", "type:ui"],
- "root": "libs/nrwlio-site/ui/header",
- "files": []
- }
- },
- {
- "name": "nrwlio-site-ui-styles",
- "type": "lib",
- "data": {
- "tags": ["scope:nrwlio", "type:ui"],
- "root": "libs/nrwlio-site/ui/styles",
- "files": []
- }
- },
- {
- "name": "nx-cloud-feature-auth",
- "type": "lib",
- "data": {
- "tags": ["nx-cloud", "type:feature"],
- "root": "libs/nx-cloud/feature-auth",
- "files": []
- }
- },
- {
- "name": "nx-cloud-feature-docs",
- "type": "lib",
- "data": { "tags": [], "root": "libs/nx-cloud/feature-docs", "files": [] }
- },
- {
- "name": "nx-cloud-ui-sparkline",
- "type": "lib",
- "data": { "tags": [], "root": "libs/nx-cloud/ui/sparkline", "files": [] }
- },
- {
- "name": "platform-feature-auth",
- "type": "lib",
- "data": { "tags": [], "root": "libs/platform/feature-auth", "files": [] }
- },
- {
- "name": "design-system-heroes",
- "type": "lib",
- "data": {
- "tags": ["scope:design-system", "type:ui"],
- "root": "libs/design-system/heroes",
- "files": []
- }
- },
- {
- "name": "design-system-images",
- "type": "lib",
- "data": {
- "tags": ["scope:design-system", "type:ui"],
- "root": "libs/design-system/images",
- "files": []
- }
- },
- {
- "name": "design-system-styles",
- "type": "lib",
- "data": {
- "tags": ["scope:design-system", "type:ui"],
- "root": "libs/design-system/styles",
- "files": []
- }
- },
- {
- "name": "nrwlio-site-ui-heros",
- "type": "lib",
- "data": {
- "tags": ["scope:nrwlio", "type:ui"],
- "root": "libs/nrwlio-site/ui/heros",
- "files": []
- }
- },
- {
- "name": "nx-cloud-feature-faq",
- "type": "lib",
- "data": {
- "tags": ["nx-cloud", "type:feature"],
- "root": "libs/nx-cloud/feature-faq",
- "files": []
- }
- },
- {
- "name": "nx-cloud-ui-terminal",
- "type": "lib",
- "data": { "tags": [], "root": "libs/nx-cloud/ui/terminal", "files": [] }
- },
- {
- "name": "nx-packages-nx-cloud",
- "type": "lib",
- "data": { "tags": [], "root": "libs/nx-packages/nx-cloud", "files": [] }
- },
- {
- "name": "ui-article-container",
- "type": "lib",
- "data": { "tags": [], "root": "libs/ui/article-container", "files": [] }
- },
- {
- "name": "nrwlio-site-hubspot",
- "type": "lib",
- "data": {
- "tags": ["scope:nrwlio"],
- "root": "libs/nrwlio-site/hubspot",
- "files": []
- }
- },
- {
- "name": "platform-components",
- "type": "lib",
- "data": { "tags": [], "root": "libs/platform/components", "files": [] }
- },
- {
- "name": "platform-scss-utils",
- "type": "lib",
- "data": { "tags": [], "root": "libs/platform/scss-utils", "files": [] }
- },
- {
- "name": "platform-ui-courses",
- "type": "lib",
- "data": {
- "tags": ["type:ui"],
- "root": "libs/platform/ui-courses",
- "files": []
- }
- },
- {
- "name": "platform-ui-twitter",
- "type": "lib",
- "data": { "tags": [], "root": "libs/platform/ui-twitter", "files": [] }
- },
- {
- "name": "nrwl-api-reporting",
- "type": "lib",
- "data": { "tags": [], "root": "libs/nrwl-api/reporting", "files": [] }
- },
- {
- "name": "nrwlio-site-assets",
- "type": "lib",
- "data": {
- "tags": ["scope:nrwlio", "type:ui"],
- "root": "libs/nrwlio-site/assets",
- "files": []
- }
- },
- {
- "name": "nx-cloud-ui-alerts",
- "type": "lib",
- "data": { "tags": [], "root": "libs/nx-cloud/ui/alerts", "files": [] }
- },
- {
- "name": "nx-cloud-ui-footer",
- "type": "lib",
- "data": { "tags": [], "root": "libs/nx-cloud/ui/footer", "files": [] }
- },
- {
- "name": "nx-cloud-ui-header",
- "type": "lib",
- "data": { "tags": [], "root": "libs/nx-cloud/ui/header", "files": [] }
- },
- {
- "name": "nx-cloud-ui-styles",
- "type": "lib",
- "data": { "tags": [], "root": "libs/nx-cloud/ui/styles", "files": [] }
- },
- {
- "name": "shared-ui-markdown",
- "type": "lib",
- "data": { "tags": [], "root": "libs/shared/ui-markdown", "files": [] }
- },
- {
- "name": "design-system-e2e",
- "type": "e2e",
- "data": {
- "tags": ["scope:design-system", "type:ui"],
- "root": "apps/design-system-e2e",
- "files": []
- }
- },
- {
- "name": "private-nx-cloud",
- "type": "app",
- "data": { "tags": [], "root": "apps/private-nx-cloud/", "files": [] }
- },
- {
- "name": "nx-cloud-hubspot",
- "type": "lib",
- "data": {
- "tags": ["scope:nx-cloud", "type:util"],
- "root": "libs/nx-cloud/hubspot",
- "files": []
- }
- },
- {
- "name": "ui-article-media",
- "type": "lib",
- "data": { "tags": [], "root": "libs/ui/article-media", "files": [] }
- },
- {
- "name": "common-platform",
- "type": "lib",
- "data": {
- "tags": ["common:platform"],
- "root": "libs/common-platform",
- "files": []
- }
- },
- {
- "name": "nrwlio-site-pwa",
- "type": "lib",
- "data": {
- "tags": ["scope:nrwlio"],
- "root": "libs/nrwlio-site/pwa",
- "files": []
- }
- },
- {
- "name": "nx-cloud-assets",
- "type": "lib",
- "data": { "tags": [], "root": "libs/nx-cloud/assets", "files": [] }
- },
- {
- "name": "nx-packages-e2e",
- "type": "e2e",
- "data": { "tags": [], "root": "apps/nx-packages-e2e", "files": [] }
- },
- {
- "name": "ui-testimonials",
- "type": "lib",
- "data": { "tags": ["ui"], "root": "libs/ui/testimonials", "files": [] }
- },
- {
- "name": "nx-cloud-utils",
- "type": "lib",
- "data": {
- "tags": ["nx-cloud", "type:util"],
- "root": "libs/nx-cloud/utils",
- "files": []
- }
- },
- {
- "name": "platform-utils",
- "type": "lib",
- "data": { "tags": [], "root": "libs/platform/utils", "files": [] }
- },
- {
- "name": "design-system",
- "type": "app",
- "data": {
- "tags": ["scope:design-system", "type:ui"],
- "root": "apps/design-system",
- "files": []
- }
- },
- {
- "name": "nrwl-api-e2e",
- "type": "e2e",
- "data": { "tags": [], "root": "apps/nrwl-api-e2e", "files": [] }
- },
- {
- "name": "nx-cloud-e2e",
- "type": "e2e",
- "data": { "tags": [], "root": "apps/nx-cloud-e2e", "files": [] }
- },
- {
- "name": "platform-e2e",
- "type": "e2e",
- "data": { "tags": [], "root": "apps/platform-e2e", "files": [] }
- },
- {
- "name": "ui-downloads",
- "type": "lib",
- "data": { "tags": ["ui"], "root": "libs/ui/downloads", "files": [] }
- },
- {
- "name": "cloud-proxy",
- "type": "app",
- "data": { "tags": [], "root": "apps/cloud-proxy", "files": [] }
- },
- {
- "name": "common-site",
- "type": "lib",
- "data": {
- "tags": ["common:site"],
- "root": "libs/common-site",
- "files": []
- }
- },
- {
- "name": "file-server",
- "type": "app",
- "data": { "tags": [], "root": "apps/file-server", "files": [] }
- },
- {
- "name": "ui-articles",
- "type": "lib",
- "data": { "tags": ["ui"], "root": "libs/ui/articles", "files": [] }
- },
- {
- "name": "ui-callouts",
- "type": "lib",
- "data": { "tags": ["ui"], "root": "libs/ui/callouts", "files": [] }
- },
- {
- "name": "ui-contents",
- "type": "lib",
- "data": { "tags": ["type:ui"], "root": "libs/ui/contents", "files": [] }
- },
- {
- "name": "ui-features",
- "type": "lib",
- "data": { "tags": ["ui"], "root": "libs/ui/features", "files": [] }
- },
- {
- "name": "nrwlio-e2e",
- "type": "e2e",
- "data": {
- "tags": ["scope:nrwlio"],
- "root": "apps/nrwlio-e2e",
- "files": []
- }
- },
- {
- "name": "ui-banners",
- "type": "lib",
- "data": { "tags": ["ui"], "root": "libs/ui/banners", "files": [] }
- },
- {
- "name": "platform",
- "type": "app",
- "data": { "tags": [], "root": "apps/platform/", "files": [] }
- },
- {
- "name": "ui-images",
- "type": "lib",
- "data": { "tags": ["type:ui"], "root": "libs/ui/images", "files": [] }
- },
- {
- "name": "ui-styles",
- "type": "lib",
- "data": { "tags": ["type:ui"], "root": "libs/ui/styles", "files": [] }
- },
- {
- "name": "nrwl-api",
- "type": "app",
- "data": { "tags": [], "root": "apps/nrwl-api", "files": [] }
- },
- {
- "name": "nx-cloud",
- "type": "app",
- "data": { "tags": ["nx-cloud"], "root": "apps/nx-cloud", "files": [] }
- },
- {
- "name": "ui-heros",
- "type": "lib",
- "data": { "tags": ["ui"], "root": "libs/ui/heros", "files": [] }
- },
- {
- "name": "nx-api",
- "type": "app",
- "data": { "tags": [], "root": "apps/nx-api/", "files": [] }
- },
- {
- "name": "nrwlio",
- "type": "app",
- "data": { "tags": ["scope:nrwlio"], "root": "apps/nrwlio", "files": [] }
- },
- {
- "name": "ui-ads",
- "type": "lib",
- "data": { "tags": ["ui"], "root": "libs/ui/ads", "files": [] }
- }
- ],
- "dependencies": {
- "nx-cloud-private-cloud-feature-community-on-public-cloud": [
- {
- "source": "nx-cloud-private-cloud-feature-community-on-public-cloud",
- "target": "nx-cloud-feature-billing",
- "type": "static"
- },
- {
- "source": "nx-cloud-private-cloud-feature-community-on-public-cloud",
- "target": "nx-cloud-utils",
- "type": "static"
- },
- {
- "source": "nx-cloud-private-cloud-feature-community-on-public-cloud",
- "target": "nx-cloud-private-cloud-feature-landing",
- "type": "static"
- },
- {
- "source": "nx-cloud-private-cloud-feature-community-on-public-cloud",
- "target": "nx-cloud-data-access-workspace",
- "type": "static"
- }
- ],
- "nx-cloud-private-cloud-feature-installation": [],
- "nx-cloud-reference-feature-workspace-setup": [
- {
- "source": "nx-cloud-reference-feature-workspace-setup",
- "target": "nx-cloud-ui-terminal",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-workspace-setup",
- "target": "nx-cloud-ui-alerts",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-workspace-setup",
- "target": "nx-cloud-data-access-workspace",
- "type": "static"
- }
- ],
- "nx-cloud-reference-feature-invite-members": [
- {
- "source": "nx-cloud-reference-feature-invite-members",
- "target": "nx-cloud-feature-auth",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-invite-members",
- "target": "nx-cloud-utils",
- "type": "static"
- }
- ],
- "nx-cloud-data-access-workspace": [],
- "nx-cloud-reference-feature-access-token": [
- {
- "source": "nx-cloud-reference-feature-access-token",
- "target": "nx-cloud-utils",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-access-token",
- "target": "nx-cloud-ui-alerts",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-access-token",
- "target": "nx-cloud-reference-util-org-membership",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-access-token",
- "target": "nx-cloud-data-access-workspace",
- "type": "static"
- }
- ],
- "nx-cloud-private-cloud-feature-landing": [
- {
- "source": "nx-cloud-private-cloud-feature-landing",
- "target": "ui-images",
- "type": "static"
- }
- ],
- "nx-cloud-reference-util-org-membership": [],
- "nrwlio-site-pages-feature-style-guide": [
- {
- "source": "nrwlio-site-pages-feature-style-guide",
- "target": "ui-contents",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-style-guide",
- "target": "nrwlio-site-contentful",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-style-guide",
- "target": "ui-ads",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-style-guide",
- "target": "ui-articles",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-style-guide",
- "target": "ui-downloads",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-style-guide",
- "target": "ui-features",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-style-guide",
- "target": "ui-heros",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-style-guide",
- "target": "ui-images",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-style-guide",
- "target": "ui-testimonials",
- "type": "static"
- }
- ],
- "nrwlio-site-pages-feature-contact-us": [
- {
- "source": "nrwlio-site-pages-feature-contact-us",
- "target": "nrwlio-site-ui-footer",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-contact-us",
- "target": "nrwlio-site-ui-header",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-contact-us",
- "target": "shared-ui-markdown",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-contact-us",
- "target": "nrwlio-site-contentful",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-contact-us",
- "target": "nrwlio-site-feature-pages",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-contact-us",
- "target": "nrwlio-site-hubspot",
- "type": "static"
- }
- ],
- "nx-cloud-reference-feature-workspace": [
- {
- "source": "nx-cloud-reference-feature-workspace",
- "target": "nx-cloud-utils",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-workspace",
- "target": "nx-cloud-data-access-workspace",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-workspace",
- "target": "nx-cloud-reference-feature-access-token",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-workspace",
- "target": "nx-cloud-feature-billing",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-workspace",
- "target": "nx-cloud-reference-util-org-membership",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-workspace",
- "target": "nx-cloud-ui-alerts",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-workspace",
- "target": "nx-cloud-ui-breadcrumb-nav",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-workspace",
- "target": "nx-cloud-ui-terminal",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-workspace",
- "target": "nx-cloud-ui-sparkline",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-workspace",
- "target": "nx-cloud-reference-feature-workspace-setup",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-workspace",
- "target": "nx-cloud-data-access-graphql",
- "type": "static"
- }
- ],
- "nx-cloud-feature-make-ng-cli-faster": [
- {
- "source": "nx-cloud-feature-make-ng-cli-faster",
- "target": "common-site",
- "type": "static"
- },
- {
- "source": "nx-cloud-feature-make-ng-cli-faster",
- "target": "common-platform",
- "type": "static"
- },
- {
- "source": "nx-cloud-feature-make-ng-cli-faster",
- "target": "shared-ui-markdown",
- "type": "static"
- },
- {
- "source": "nx-cloud-feature-make-ng-cli-faster",
- "target": "ui-images",
- "type": "static"
- }
- ],
- "nx-cloud-private-cloud-feature-home": [
- {
- "source": "nx-cloud-private-cloud-feature-home",
- "target": "ui-images",
- "type": "static"
- }
- ],
- "nx-cloud-reference-feature-branches": [
- {
- "source": "nx-cloud-reference-feature-branches",
- "target": "nx-cloud-ui-breadcrumb-nav",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-branches",
- "target": "nx-cloud-utils",
- "type": "static"
- }
- ],
- "platform-data-access-nrwl-changelog": [],
- "nrwlio-site-pages-feature-about-us": [
- {
- "source": "nrwlio-site-pages-feature-about-us",
- "target": "nrwlio-site-contentful",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-about-us",
- "target": "nrwlio-site-ui-footer",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-about-us",
- "target": "nrwlio-site-ui-header",
- "type": "static"
- }
- ],
- "nrwlio-site-pages-feature-products": [
- {
- "source": "nrwlio-site-pages-feature-products",
- "target": "shared-ui-markdown",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-products",
- "target": "nrwlio-site-contentful",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-products",
- "target": "nrwlio-site-ui-header",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-products",
- "target": "nrwlio-site-ui-footer",
- "type": "static"
- }
- ],
- "nrwlio-site-pages-feature-services": [
- {
- "source": "nrwlio-site-pages-feature-services",
- "target": "shared-ui-markdown",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-services",
- "target": "nrwlio-site-ui-header",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-services",
- "target": "nrwlio-site-ui-footer",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-services",
- "target": "ui-images",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-services",
- "target": "ui-heros",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-services",
- "target": "ui-ads",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-services",
- "target": "nrwlio-site-feature-pages",
- "type": "static"
- }
- ],
- "nx-cloud-feature-billing": [
- {
- "source": "nx-cloud-feature-billing",
- "target": "nx-cloud-data-access-graphql",
- "type": "static"
- },
- {
- "source": "nx-cloud-feature-billing",
- "target": "nx-cloud-feature-auth",
- "type": "static"
- },
- {
- "source": "nx-cloud-feature-billing",
- "target": "nx-cloud-utils",
- "type": "static"
- },
- {
- "source": "nx-cloud-feature-billing",
- "target": "nx-cloud-data-access-workspace",
- "type": "static"
- },
- {
- "source": "nx-cloud-feature-billing",
- "target": "nx-cloud-ui-alerts",
- "type": "static"
- }
- ],
- "nrwlio-site-pages-feature-careers": [
- {
- "source": "nrwlio-site-pages-feature-careers",
- "target": "shared-ui-markdown",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-careers",
- "target": "shared-google-analytics",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-careers",
- "target": "nrwlio-site-ui-header",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-careers",
- "target": "nrwlio-site-ui-footer",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-careers",
- "target": "ui-contents",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-careers",
- "target": "ui-testimonials",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-careers",
- "target": "nrwlio-site-hubspot",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-careers",
- "target": "nrwlio-site-feature-pages",
- "type": "static"
- }
- ],
- "nx-cloud-feature-terms-of-service": [],
- "platform-data-access-live-events": [],
- "nrwlio-site-data-access-graphql": [],
- "nx-cloud-reference-feature-runs": [
- {
- "source": "nx-cloud-reference-feature-runs",
- "target": "nx-cloud-ui-alerts",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-runs",
- "target": "nx-cloud-ui-breadcrumb-nav",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-runs",
- "target": "nx-cloud-ui-terminal",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-runs",
- "target": "nx-cloud-utils",
- "type": "static"
- }
- ],
- "platform-feature-live-broadcast": [
- {
- "source": "platform-feature-live-broadcast",
- "target": "platform-utils",
- "type": "static"
- },
- {
- "source": "platform-feature-live-broadcast",
- "target": "platform-components",
- "type": "static"
- },
- {
- "source": "platform-feature-live-broadcast",
- "target": "shared-ui-markdown",
- "type": "static"
- },
- {
- "source": "platform-feature-live-broadcast",
- "target": "platform-feature-auth",
- "type": "static"
- }
- ],
- "platform-feature-nrwl-changelog": [
- {
- "source": "platform-feature-nrwl-changelog",
- "target": "platform-utils",
- "type": "static"
- },
- {
- "source": "platform-feature-nrwl-changelog",
- "target": "platform-data-access-nrwl-changelog",
- "type": "static"
- },
- {
- "source": "platform-feature-nrwl-changelog",
- "target": "platform-components",
- "type": "static"
- },
- {
- "source": "platform-feature-nrwl-changelog",
- "target": "platform-data-access-blurb",
- "type": "static"
- },
- {
- "source": "platform-feature-nrwl-changelog",
- "target": "shared-ui-markdown",
- "type": "static"
- }
- ],
- "nrwlio-site-pages-feature-home": [
- {
- "source": "nrwlio-site-pages-feature-home",
- "target": "shared-ui-markdown",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-home",
- "target": "nrwlio-site-ui-header",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-home",
- "target": "nrwlio-site-ui-footer",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-home",
- "target": "nrwlio-site-ui-heros",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-home",
- "target": "ui-images",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-home",
- "target": "ui-contents",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-home",
- "target": "ui-ads",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-home",
- "target": "ui-callouts",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-home",
- "target": "nrwlio-site-contentful",
- "type": "static"
- },
- {
- "source": "nrwlio-site-pages-feature-home",
- "target": "nrwlio-site-feature-pages",
- "type": "static"
- }
- ],
- "nx-cloud-admin-feature-support": [
- {
- "source": "nx-cloud-admin-feature-support",
- "target": "nx-cloud-data-access-graphql",
- "type": "static"
- },
- {
- "source": "nx-cloud-admin-feature-support",
- "target": "nx-cloud-utils",
- "type": "static"
- },
- {
- "source": "nx-cloud-admin-feature-support",
- "target": "nx-cloud-feature-auth",
- "type": "static"
- }
- ],
- "nx-cloud-reference-feature-org": [
- {
- "source": "nx-cloud-reference-feature-org",
- "target": "nx-cloud-feature-auth",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-org",
- "target": "nx-cloud-data-access-workspace",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-org",
- "target": "nx-cloud-reference-feature-workspace",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-org",
- "target": "ui-images",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-org",
- "target": "nx-cloud-reference-feature-invite-members",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-org",
- "target": "nx-cloud-reference-util-org-membership",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-org",
- "target": "nx-cloud-ui-alerts",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-org",
- "target": "nx-cloud-ui-breadcrumb-nav",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-org",
- "target": "nx-cloud-utils",
- "type": "static"
- },
- {
- "source": "nx-cloud-reference-feature-org",
- "target": "nx-cloud-data-access-graphql",
- "type": "static"
- }
- ],
- "platform-feature-live-workshop": [
- {
- "source": "platform-feature-live-workshop",
- "target": "platform-utils",
- "type": "static"
- },
- {
- "source": "platform-feature-live-workshop",
- "target": "platform-data-access-blurb",
- "type": "static"
- },
- {
- "source": "platform-feature-live-workshop",
- "target": "shared-ui-markdown",
- "type": "static"
- },
- {
- "source": "platform-feature-live-workshop",
- "target": "platform-components",
- "type": "static"
- },
- {
- "source": "platform-feature-live-workshop",
- "target": "platform-feature-auth",
- "type": "static"
- }
- ],
- "platform-feature-organizations": [
- {
- "source": "platform-feature-organizations",
- "target": "platform-data-access-graphql",
- "type": "static"
- },
- {
- "source": "platform-feature-organizations",
- "target": "platform-utils",
- "type": "static"
- }
- ],
- "platform-data-access-cookbook": [],
- "platform-feature-landing-page": [
- {
- "source": "platform-feature-landing-page",
- "target": "platform-utils",
- "type": "static"
- },
- {
- "source": "platform-feature-landing-page",
- "target": "shared-ui-markdown",
- "type": "static"
- }
- ],
- "platform-feature-organization": [
- {
- "source": "platform-feature-organization",
- "target": "platform-data-access-graphql",
- "type": "static"
- },
- {
- "source": "platform-feature-organization",
- "target": "platform-utils",
- "type": "static"
- }
- ],
- "nx-cloud-data-access-graphql": [],
- "platform-data-access-courses": [],
- "platform-data-access-graphql": [],
- "platform-feature-live-events": [
- {
- "source": "platform-feature-live-events",
- "target": "platform-data-access-live-events",
- "type": "static"
- },
- {
- "source": "platform-feature-live-events",
- "target": "platform-utils",
- "type": "static"
- },
- {
- "source": "platform-feature-live-events",
- "target": "platform-data-access-blurb",
- "type": "static"
- },
- {
- "source": "platform-feature-live-events",
- "target": "platform-feature-live-broadcast",
- "type": "static"
- },
- {
- "source": "platform-feature-live-events",
- "target": "platform-components",
- "type": "static"
- },
- {
- "source": "platform-feature-live-events",
- "target": "shared-ui-markdown",
- "type": "static"
- },
- {
- "source": "platform-feature-live-events",
- "target": "platform-ui-twitter",
- "type": "static"
- },
- {
- "source": "platform-feature-live-events",
- "target": "platform-feature-auth",
- "type": "static"
- }
- ],
- "nrwlio-site-ui-text-sliders": [],
- "nx-cloud-feature-promotions": [
- {
- "source": "nx-cloud-feature-promotions",
- "target": "nx-cloud-feature-auth",
- "type": "static"
- },
- {
- "source": "nx-cloud-feature-promotions",
- "target": "common-platform",
- "type": "static"
- },
- {
- "source": "nx-cloud-feature-promotions",
- "target": "common-site",
- "type": "static"
- }
- ],
- "platform-feature-expert-bio": [
- {
- "source": "platform-feature-expert-bio",
- "target": "platform-utils",
- "type": "static"
- },
- {
- "source": "platform-feature-expert-bio",
- "target": "platform-ui-expert-bio",
- "type": "static"
- }
- ],
- "design-system-testimonials": [
- {
- "source": "design-system-testimonials",
- "target": "design-system-styles",
- "type": "implicit"
- },
- {
- "source": "design-system-testimonials",
- "target": "design-system-images",
- "type": "static"
- },
- {
- "source": "design-system-testimonials",
- "target": "shared-ui-markdown",
- "type": "static"
- }
- ],
- "nx-cloud-ui-breadcrumb-nav": [],
- "platform-data-access-blurb": [],
- "platform-feature-dashboard": [
- {
- "source": "platform-feature-dashboard",
- "target": "shared-ui-markdown",
- "type": "static"
- },
- {
- "source": "platform-feature-dashboard",
- "target": "platform-data-access-courses",
- "type": "static"
- },
- {
- "source": "platform-feature-dashboard",
- "target": "platform-data-access-blurb",
- "type": "static"
- },
- {
- "source": "platform-feature-dashboard",
- "target": "platform-data-access-graphql",
- "type": "static"
- },
- {
- "source": "platform-feature-dashboard",
- "target": "platform-utils",
- "type": "static"
- },
- {
- "source": "platform-feature-dashboard",
- "target": "platform-data-access-book",
- "type": "static"
- },
- {
- "source": "platform-feature-dashboard",
- "target": "platform-data-access-nrwl-changelog",
- "type": "static"
- },
- {
- "source": "platform-feature-dashboard",
- "target": "platform-data-access-live-events",
- "type": "static"
- },
- {
- "source": "platform-feature-dashboard",
- "target": "platform-data-access-cookbook",
- "type": "static"
- }
- ],
- "nrwlio-site-feature-pages": [
- {
- "source": "nrwlio-site-feature-pages",
- "target": "shared-ui-markdown",
- "type": "static"
- },
- {
- "source": "nrwlio-site-feature-pages",
- "target": "nrwlio-site-ui-header",
- "type": "static"
- },
- {
- "source": "nrwlio-site-feature-pages",
- "target": "nrwlio-site-ui-footer",
- "type": "static"
- },
- {
- "source": "nrwlio-site-feature-pages",
- "target": "nrwlio-site-contentful",
- "type": "static"
- },
- {
- "source": "nrwlio-site-feature-pages",
- "target": "common-platform",
- "type": "static"
- }
- ],
- "nx-cloud-feature-policies": [],
- "platform-data-access-book": [],
- "platform-feature-cookbook": [
- {
- "source": "platform-feature-cookbook",
- "target": "platform-data-access-cookbook",
- "type": "static"
- },
- {
- "source": "platform-feature-cookbook",
- "target": "shared-ui-markdown",
- "type": "static"
- },
- {
- "source": "platform-feature-cookbook",
- "target": "platform-components",
- "type": "static"
- },
- {
- "source": "platform-feature-cookbook",
- "target": "platform-data-access-blurb",
- "type": "static"
- },
- {
- "source": "platform-feature-cookbook",
- "target": "platform-ui-twitter",
- "type": "static"
- },
- {
- "source": "platform-feature-cookbook",
- "target": "platform-feature-auth",
- "type": "static"
- },
- {
- "source": "platform-feature-cookbook",
- "target": "platform-utils",
- "type": "static"
- }
- ],
- "platform-feature-policies": [
- {
- "source": "platform-feature-policies",
- "target": "platform-utils",
- "type": "static"
- }
- ],
- "shared-utils-download-csv": [],
- "nx-cloud-feature-landing": [
- {
- "source": "nx-cloud-feature-landing",
- "target": "nx-cloud-feature-auth",
- "type": "static"
- },
- {
- "source": "nx-cloud-feature-landing",
- "target": "nx-cloud-ui-footer",
- "type": "static"
- },
- {
- "source": "nx-cloud-feature-landing",
- "target": "ui-heros",
- "type": "static"
- },
- {
- "source": "nx-cloud-feature-landing",
- "target": "ui-articles",
- "type": "static"
- },
- {
- "source": "nx-cloud-feature-landing",
- "target": "ui-ads",
- "type": "static"
- },
- {
- "source": "nx-cloud-feature-landing",
- "target": "ui-images",
- "type": "static"
- },
- {
- "source": "nx-cloud-feature-landing",
- "target": "ui-article-media",
- "type": "static"
- }
- ],
- "nx-cloud-feature-pricing": [
- {
- "source": "nx-cloud-feature-pricing",
- "target": "shared-ui-markdown",
- "type": "static"
- },
- {
- "source": "nx-cloud-feature-pricing",
- "target": "ui-images",
- "type": "static"
- },
- {
- "source": "nx-cloud-feature-pricing",
- "target": "nx-cloud-data-access-graphql",
- "type": "static"
- },
- {
- "source": "nx-cloud-feature-pricing",
- "target": "nx-cloud-hubspot",
- "type": "static"
- }
- ],
- "platform-feature-courses": [
- {
- "source": "platform-feature-courses",
- "target": "platform-components",
- "type": "static"
- },
- {
- "source": "platform-feature-courses",
- "target": "platform-data-access-blurb",
- "type": "static"
- },
- {
- "source": "platform-feature-courses",
- "target": "platform-data-access-courses",
- "type": "static"
- },
- {
- "source": "platform-feature-courses",
- "target": "platform-feature-auth",
- "type": "static"
- },
- {
- "source": "platform-feature-courses",
- "target": "platform-ui-courses",
- "type": "static"
- },
- {
- "source": "platform-feature-courses",
- "target": "platform-ui-twitter",
- "type": "static"
- },
- {
- "source": "platform-feature-courses",
- "target": "shared-ui-markdown",
- "type": "static"
- }
- ],
- "platform-feature-reports": [
- {
- "source": "platform-feature-reports",
- "target": "shared-utils-download-csv",
- "type": "static"
- }
- ],
- "platform-feature-topics": [
- {
- "source": "platform-feature-topics",
- "target": "platform-components",
- "type": "static"
- },
- {
- "source": "platform-feature-topics",
- "target": "platform-data-access-blurb",
- "type": "static"
- },
- {
- "source": "platform-feature-topics",
- "target": "shared-ui-markdown",
- "type": "static"
- },
- {
- "source": "platform-feature-topics",
- "target": "platform-ui-twitter",
- "type": "static"
- },
- {
- "source": "platform-feature-topics",
- "target": "platform-feature-auth",
- "type": "static"
- },
- {
- "source": "platform-feature-topics",
- "target": "platform-utils",
- "type": "static"
- }
- ],
- "shared-google-analytics": [],
- "design-system-contents": [
- {
- "source": "design-system-contents",
- "target": "design-system-styles",
- "type": "implicit"
- },
- {
- "source": "design-system-contents",
- "target": "design-system-images",
- "type": "static"
- },
- {
- "source": "design-system-contents",
- "target": "shared-ui-markdown",
- "type": "static"
- }
- ],
- "nrwlio-site-contentful": [
- {
- "source": "nrwlio-site-contentful",
- "target": "ui-ads",
- "type": "static"
- },
- {
- "source": "nrwlio-site-contentful",
- "target": "ui-articles",
- "type": "static"
- },
- {
- "source": "nrwlio-site-contentful",
- "target": "ui-contents",
- "type": "static"
- },
- {
- "source": "nrwlio-site-contentful",
- "target": "ui-downloads",
- "type": "static"
- },
- {
- "source": "nrwlio-site-contentful",
- "target": "ui-heros",
- "type": "static"
- },
- {
- "source": "nrwlio-site-contentful",
- "target": "ui-features",
- "type": "static"
- },
- {
- "source": "nrwlio-site-contentful",
- "target": "ui-testimonials",
- "type": "static"
- },
- {
- "source": "nrwlio-site-contentful",
- "target": "nrwlio-site-hubspot",
- "type": "static"
- },
- {
- "source": "nrwlio-site-contentful",
- "target": "common-platform",
- "type": "static"
- }
- ],
- "platform-feature-about": [
- {
- "source": "platform-feature-about",
- "target": "platform-utils",
- "type": "static"
- },
- {
- "source": "platform-feature-about",
- "target": "platform-data-access-blurb",
- "type": "static"
- },
- {
- "source": "platform-feature-about",
- "target": "shared-ui-markdown",
- "type": "static"
- }
- ],
- "platform-feature-books": [
- {
- "source": "platform-feature-books",
- "target": "platform-utils",
- "type": "static"
- },
- {
- "source": "platform-feature-books",
- "target": "platform-data-access-book",
- "type": "static"
- },
- {
- "source": "platform-feature-books",
- "target": "platform-data-access-blurb",
- "type": "static"
- },
- {
- "source": "platform-feature-books",
- "target": "platform-components",
- "type": "static"
- },
- {
- "source": "platform-feature-books",
- "target": "platform-ui-twitter",
- "type": "static"
- },
- {
- "source": "platform-feature-books",
- "target": "platform-feature-auth",
- "type": "static"
- },
- {
- "source": "platform-feature-books",
- "target": "shared-ui-markdown",
- "type": "static"
- }
- ],
- "platform-feature-users": [
- {
- "source": "platform-feature-users",
- "target": "platform-data-access-graphql",
- "type": "static"
- },
- {
- "source": "platform-feature-users",
- "target": "platform-utils",
- "type": "static"
- }
- ],
- "platform-ui-expert-bio": [
- {
- "source": "platform-ui-expert-bio",
- "target": "shared-ui-markdown",
- "type": "static"
- }
- ],
- "nrwlio-site-ui-footer": [
- {
- "source": "nrwlio-site-ui-footer",
- "target": "nrwlio-site-hubspot",
- "type": "static"
- },
- {
- "source": "nrwlio-site-ui-footer",
- "target": "shared-google-analytics",
- "type": "static"
- }
- ],
- "nrwlio-site-ui-header": [],
- "nrwlio-site-ui-styles": [],
- "nx-cloud-feature-auth": [
- {
- "source": "nx-cloud-feature-auth",
- "target": "nx-cloud-data-access-graphql",
- "type": "static"
- },
- {
- "source": "nx-cloud-feature-auth",
- "target": "nx-cloud-utils",
- "type": "static"
- },
- {
- "source": "nx-cloud-feature-auth",
- "target": "platform-data-access-graphql",
- "type": "static"
- }
- ],
- "nx-cloud-feature-docs": [
- {
- "source": "nx-cloud-feature-docs",
- "target": "nx-cloud-data-access-graphql",
- "type": "static"
- }
- ],
- "nx-cloud-ui-sparkline": [],
- "platform-feature-auth": [
- {
- "source": "platform-feature-auth",
- "target": "platform-utils",
- "type": "static"
- },
- {
- "source": "platform-feature-auth",
- "target": "platform-data-access-graphql",
- "type": "static"
- }
- ],
- "design-system-heroes": [
- {
- "source": "design-system-heroes",
- "target": "design-system-styles",
- "type": "implicit"
- },
- {
- "source": "design-system-heroes",
- "target": "design-system-images",
- "type": "static"
- },
- {
- "source": "design-system-heroes",
- "target": "shared-ui-markdown",
- "type": "static"
- }
- ],
- "design-system-images": [
- {
- "source": "design-system-images",
- "target": "design-system-styles",
- "type": "implicit"
- }
- ],
- "design-system-styles": [],
- "nrwlio-site-ui-heros": [
- {
- "source": "nrwlio-site-ui-heros",
- "target": "shared-ui-markdown",
- "type": "static"
- },
- {
- "source": "nrwlio-site-ui-heros",
- "target": "nrwlio-site-ui-text-sliders",
- "type": "static"
- },
- {
- "source": "nrwlio-site-ui-heros",
- "target": "ui-images",
- "type": "static"
- }
- ],
- "nx-cloud-feature-faq": [
- {
- "source": "nx-cloud-feature-faq",
- "target": "shared-ui-markdown",
- "type": "static"
- }
- ],
- "nx-cloud-ui-terminal": [
- {
- "source": "nx-cloud-ui-terminal",
- "target": "nx-cloud-utils",
- "type": "static"
- }
- ],
- "nx-packages-nx-cloud": [],
- "ui-article-container": [],
- "nrwlio-site-hubspot": [],
- "platform-components": [
- {
- "source": "platform-components",
- "target": "platform-data-access-graphql",
- "type": "static"
- },
- {
- "source": "platform-components",
- "target": "platform-utils",
- "type": "static"
- }
- ],
- "platform-scss-utils": [],
- "platform-ui-courses": [
- {
- "source": "platform-ui-courses",
- "target": "platform-data-access-courses",
- "type": "static"
- }
- ],
- "platform-ui-twitter": [],
- "nrwl-api-reporting": [],
- "nrwlio-site-assets": [],
- "nx-cloud-ui-alerts": [],
- "nx-cloud-ui-footer": [],
- "nx-cloud-ui-header": [
- {
- "source": "nx-cloud-ui-header",
- "target": "nx-cloud-data-access-graphql",
- "type": "static"
- },
- {
- "source": "nx-cloud-ui-header",
- "target": "nx-cloud-utils",
- "type": "static"
- },
- {
- "source": "nx-cloud-ui-header",
- "target": "nx-cloud-feature-billing",
- "type": "static"
- },
- {
- "source": "nx-cloud-ui-header",
- "target": "nx-cloud-admin-feature-support",
- "type": "static"
- },
- {
- "source": "nx-cloud-ui-header",
- "target": "nx-cloud-feature-auth",
- "type": "static"
- },
- {
- "source": "nx-cloud-ui-header",
- "target": "ui-images",
- "type": "static"
- }
- ],
- "nx-cloud-ui-styles": [],
- "shared-ui-markdown": [],
- "design-system-e2e": [
- {
- "source": "design-system-e2e",
- "target": "design-system",
- "type": "implicit"
- }
- ],
- "private-nx-cloud": [],
- "nx-cloud-hubspot": [],
- "ui-article-media": [
- {
- "source": "ui-article-media",
- "target": "shared-ui-markdown",
- "type": "static"
- },
- { "source": "ui-article-media", "target": "ui-images", "type": "static" }
- ],
- "common-platform": [],
- "nrwlio-site-pwa": [],
- "nx-cloud-assets": [],
- "nx-packages-e2e": [
- { "source": "nx-packages-e2e", "target": "nx-api", "type": "implicit" },
- {
- "source": "nx-packages-e2e",
- "target": "nx-packages-nx-cloud",
- "type": "implicit"
- }
- ],
- "ui-testimonials": [
- { "source": "ui-testimonials", "target": "ui-images", "type": "static" },
- {
- "source": "ui-testimonials",
- "target": "shared-ui-markdown",
- "type": "static"
- }
- ],
- "nx-cloud-utils": [
- {
- "source": "nx-cloud-utils",
- "target": "nx-cloud-data-access-graphql",
- "type": "static"
- }
- ],
- "platform-utils": [
- {
- "source": "platform-utils",
- "target": "platform-data-access-graphql",
- "type": "static"
- }
- ],
- "design-system": [
- {
- "source": "design-system",
- "target": "design-system-styles",
- "type": "implicit"
- },
- {
- "source": "design-system",
- "target": "design-system-heroes",
- "type": "implicit"
- },
- {
- "source": "design-system",
- "target": "design-system-images",
- "type": "implicit"
- },
- {
- "source": "design-system",
- "target": "design-system-contents",
- "type": "implicit"
- },
- {
- "source": "design-system",
- "target": "design-system-testimonials",
- "type": "implicit"
- }
- ],
- "nrwl-api-e2e": [
- { "source": "nrwl-api-e2e", "target": "nrwl-api", "type": "static" }
- ],
- "nx-cloud-e2e": [
- { "source": "nx-cloud-e2e", "target": "nrwl-api", "type": "implicit" }
- ],
- "platform-e2e": [],
- "ui-downloads": [
- {
- "source": "ui-downloads",
- "target": "shared-google-analytics",
- "type": "static"
- },
- {
- "source": "ui-downloads",
- "target": "shared-ui-markdown",
- "type": "static"
- },
- { "source": "ui-downloads", "target": "ui-images", "type": "static" }
- ],
- "cloud-proxy": [],
- "common-site": [
- { "source": "common-site", "target": "common-platform", "type": "static" }
- ],
- "file-server": [],
- "ui-articles": [
- {
- "source": "ui-articles",
- "target": "shared-ui-markdown",
- "type": "static"
- },
- { "source": "ui-articles", "target": "ui-images", "type": "static" }
- ],
- "ui-callouts": [],
- "ui-contents": [
- {
- "source": "ui-contents",
- "target": "shared-ui-markdown",
- "type": "static"
- },
- { "source": "ui-contents", "target": "ui-images", "type": "static" }
- ],
- "ui-features": [
- { "source": "ui-features", "target": "ui-images", "type": "static" },
- {
- "source": "ui-features",
- "target": "shared-ui-markdown",
- "type": "static"
- }
- ],
- "nrwlio-e2e": [],
- "ui-banners": [],
- "platform": [
- {
- "source": "platform",
- "target": "platform-data-access-graphql",
- "type": "static"
- },
- { "source": "platform", "target": "platform-utils", "type": "static" },
- {
- "source": "platform",
- "target": "platform-data-access-blurb",
- "type": "static"
- },
- {
- "source": "platform",
- "target": "platform-components",
- "type": "static"
- },
- {
- "source": "platform",
- "target": "platform-feature-auth",
- "type": "static"
- },
- {
- "source": "platform",
- "target": "platform-feature-landing-page",
- "type": "static"
- },
- {
- "source": "platform",
- "target": "platform-feature-dashboard",
- "type": "static"
- },
- {
- "source": "platform",
- "target": "platform-feature-books",
- "type": "static"
- },
- {
- "source": "platform",
- "target": "platform-feature-topics",
- "type": "static"
- },
- {
- "source": "platform",
- "target": "platform-feature-cookbook",
- "type": "static"
- },
- {
- "source": "platform",
- "target": "platform-feature-live-events",
- "type": "static"
- },
- {
- "source": "platform",
- "target": "platform-feature-nrwl-changelog",
- "type": "static"
- },
- {
- "source": "platform",
- "target": "platform-feature-users",
- "type": "static"
- },
- {
- "source": "platform",
- "target": "platform-feature-organizations",
- "type": "static"
- },
- {
- "source": "platform",
- "target": "platform-feature-organization",
- "type": "static"
- },
- {
- "source": "platform",
- "target": "platform-feature-courses",
- "type": "static"
- },
- {
- "source": "platform",
- "target": "platform-feature-expert-bio",
- "type": "static"
- },
- {
- "source": "platform",
- "target": "platform-feature-policies",
- "type": "static"
- },
- {
- "source": "platform",
- "target": "platform-feature-live-broadcast",
- "type": "static"
- },
- {
- "source": "platform",
- "target": "platform-feature-live-workshop",
- "type": "static"
- },
- {
- "source": "platform",
- "target": "platform-feature-reports",
- "type": "static"
- },
- {
- "source": "platform",
- "target": "platform-feature-about",
- "type": "static"
- }
- ],
- "ui-images": [],
- "ui-styles": [],
- "nrwl-api": [
- { "source": "nrwl-api", "target": "nrwl-api-reporting", "type": "static" }
- ],
- "nx-cloud": [
- { "source": "nx-cloud", "target": "nx-cloud-assets", "type": "implicit" },
- { "source": "nx-cloud", "target": "nx-cloud-utils", "type": "static" },
- {
- "source": "nx-cloud",
- "target": "nx-cloud-data-access-graphql",
- "type": "static"
- },
- {
- "source": "nx-cloud",
- "target": "nx-cloud-feature-auth",
- "type": "static"
- },
- {
- "source": "nx-cloud",
- "target": "nx-cloud-ui-footer",
- "type": "static"
- },
- {
- "source": "nx-cloud",
- "target": "nx-cloud-ui-header",
- "type": "static"
- },
- { "source": "nx-cloud", "target": "nx-cloud-hubspot", "type": "static" },
- {
- "source": "nx-cloud",
- "target": "nx-cloud-feature-docs",
- "type": "static"
- },
- {
- "source": "nx-cloud",
- "target": "nx-cloud-private-cloud-feature-home",
- "type": "static"
- },
- {
- "source": "nx-cloud",
- "target": "nx-cloud-feature-landing",
- "type": "static"
- },
- {
- "source": "nx-cloud",
- "target": "nx-cloud-reference-feature-org",
- "type": "static"
- },
- {
- "source": "nx-cloud",
- "target": "nx-cloud-reference-feature-invite-members",
- "type": "static"
- },
- {
- "source": "nx-cloud",
- "target": "nx-cloud-reference-feature-runs",
- "type": "static"
- },
- {
- "source": "nx-cloud",
- "target": "nx-cloud-reference-feature-branches",
- "type": "static"
- },
- {
- "source": "nx-cloud",
- "target": "nx-cloud-feature-promotions",
- "type": "static"
- },
- {
- "source": "nx-cloud",
- "target": "nx-cloud-feature-policies",
- "type": "static"
- },
- {
- "source": "nx-cloud",
- "target": "nx-cloud-feature-faq",
- "type": "static"
- },
- {
- "source": "nx-cloud",
- "target": "nx-cloud-feature-terms-of-service",
- "type": "static"
- },
- {
- "source": "nx-cloud",
- "target": "nx-cloud-feature-make-ng-cli-faster",
- "type": "static"
- },
- {
- "source": "nx-cloud",
- "target": "nx-cloud-feature-pricing",
- "type": "static"
- },
- {
- "source": "nx-cloud",
- "target": "nx-cloud-private-cloud-feature-community-on-public-cloud",
- "type": "static"
- },
- {
- "source": "nx-cloud",
- "target": "nx-cloud-private-cloud-feature-installation",
- "type": "static"
- }
- ],
- "ui-heros": [
- { "source": "ui-heros", "target": "ui-images", "type": "static" },
- { "source": "ui-heros", "target": "shared-ui-markdown", "type": "static" }
- ],
- "nx-api": [],
- "nrwlio": [
- {
- "source": "nrwlio",
- "target": "nrwlio-site-pages-feature-home",
- "type": "static"
- },
- {
- "source": "nrwlio",
- "target": "nrwlio-site-pages-feature-services",
- "type": "static"
- },
- {
- "source": "nrwlio",
- "target": "nrwlio-site-pages-feature-about-us",
- "type": "static"
- },
- {
- "source": "nrwlio",
- "target": "nrwlio-site-pages-feature-products",
- "type": "static"
- },
- {
- "source": "nrwlio",
- "target": "nrwlio-site-pages-feature-contact-us",
- "type": "static"
- },
- {
- "source": "nrwlio",
- "target": "nrwlio-site-pages-feature-careers",
- "type": "static"
- },
- {
- "source": "nrwlio",
- "target": "nrwlio-site-pages-feature-style-guide",
- "type": "static"
- },
- {
- "source": "nrwlio",
- "target": "nrwlio-site-data-access-graphql",
- "type": "static"
- },
- {
- "source": "nrwlio",
- "target": "nrwlio-site-contentful",
- "type": "static"
- },
- {
- "source": "nrwlio",
- "target": "nrwlio-site-feature-pages",
- "type": "static"
- },
- { "source": "nrwlio", "target": "nrwlio-site-hubspot", "type": "static" },
- { "source": "nrwlio", "target": "common-platform", "type": "static" }
- ],
- "ui-ads": [
- { "source": "ui-ads", "target": "shared-ui-markdown", "type": "static" },
- { "source": "ui-ads", "target": "ui-images", "type": "static" }
- ]
- },
- "layout": { "appsDir": "apps", "libsDir": "libs" },
- "changes": { "added": [] },
- "affected": [],
- "focus": null,
- "groupByFolder": false,
- "exclude": []
-}
diff --git a/graph/client/src/assets/graphs/storybook.json b/graph/client/src/assets/graphs/storybook.json
deleted file mode 100644
index efb135656a..0000000000
--- a/graph/client/src/assets/graphs/storybook.json
+++ /dev/null
@@ -1,2518 +0,0 @@
-{
- "hash": "c8e83d3404dae40dbf14d99157b763c2d0ad0c5fec363244d2ef84caa1152fef",
- "projects": [
- {
- "name": "@storybook/addon-storyshots-puppeteer",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "addons/storyshots/storyshots-puppeteer",
- "files": []
- }
- },
- {
- "name": "web-components-kitchen-sink",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "examples/web-components-kitchen-sink",
- "files": []
- }
- },
- {
- "name": "@storybook/addon-storyshots",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "addons/storyshots/storyshots-core",
- "files": []
- }
- },
- {
- "name": "cra-ts-kitchen-sink",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "examples/cra-ts-kitchen-sink",
- "files": []
- }
- },
- {
- "name": "preact-example",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "examples/preact-kitchen-sink",
- "files": []
- }
- },
- {
- "name": "server-kitchen-sink",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "examples/server-kitchen-sink",
- "files": []
- }
- },
- {
- "name": "svelte-example",
- "type": "lib",
- "data": {
- "tags": [],
- "root": "examples/svelte-kitchen-sink",
- "files": []
- }
- },
- {
- "name": "official-storybook",
- "type": "lib",
- "data": { "tags": [], "root": "examples/official-storybook", "files": [] }
- },
- {
- "name": "standalone-preview",
- "type": "lib",
- "data": { "tags": [], "root": "examples/standalone-preview", "files": [] }
- },
- {
- "name": "@storybook/example-react-ts-webpack4",
- "type": "lib",
- "data": { "tags": [], "root": "examples/react-ts-webpack4", "files": [] }
- },
- {
- "name": "cra-ts-essentials",
- "type": "lib",
- "data": { "tags": [], "root": "examples/cra-ts-essentials", "files": [] }
- },
- {
- "name": "html-kitchen-sink",
- "type": "lib",
- "data": { "tags": [], "root": "examples/html-kitchen-sink", "files": [] }
- },
- {
- "name": "cra-kitchen-sink",
- "type": "lib",
- "data": { "tags": [], "root": "examples/cra-kitchen-sink", "files": [] }
- },
- {
- "name": "vue-example",
- "type": "lib",
- "data": { "tags": [], "root": "examples/vue-kitchen-sink", "files": [] }
- },
- {
- "name": "@storybook/channel-postmessage",
- "type": "lib",
- "data": { "tags": [], "root": "lib/channel-postmessage", "files": [] }
- },
- {
- "name": "@storybook/channel-websocket",
- "type": "lib",
- "data": { "tags": [], "root": "lib/channel-websocket", "files": [] }
- },
- {
- "name": "@storybook/builder-webpack4",
- "type": "lib",
- "data": { "tags": [], "root": "lib/builder-webpack4", "files": [] }
- },
- {
- "name": "@storybook/builder-webpack5",
- "type": "lib",
- "data": { "tags": [], "root": "lib/builder-webpack5", "files": [] }
- },
- {
- "name": "@storybook/manager-webpack4",
- "type": "lib",
- "data": { "tags": [], "root": "lib/manager-webpack4", "files": [] }
- },
- {
- "name": "@storybook/manager-webpack5",
- "type": "lib",
- "data": { "tags": [], "root": "lib/manager-webpack5", "files": [] }
- },
- {
- "name": "angular-cli",
- "type": "lib",
- "data": { "tags": [], "root": "examples/angular-cli", "files": [] }
- },
- {
- "name": "cra-react15",
- "type": "lib",
- "data": { "tags": [], "root": "examples/cra-react15", "files": [] }
- },
- {
- "name": "@storybook/addon-backgrounds",
- "type": "lib",
- "data": { "tags": [], "root": "addons/backgrounds", "files": [] }
- },
- {
- "name": "@storybook/addon-storysource",
- "type": "lib",
- "data": { "tags": [], "root": "addons/storysource", "files": [] }
- },
- {
- "name": "@storybook/web-components",
- "type": "lib",
- "data": { "tags": [], "root": "app/web-components", "files": [] }
- },
- {
- "name": "ember-example",
- "type": "lib",
- "data": { "tags": [], "root": "examples/ember-cli", "files": [] }
- },
- {
- "name": "vue-3-cli-example",
- "type": "lib",
- "data": { "tags": [], "root": "examples/vue-3-cli", "files": [] }
- },
- {
- "name": "@storybook/addon-essentials",
- "type": "lib",
- "data": { "tags": [], "root": "addons/essentials", "files": [] }
- },
- {
- "name": "@storybook/client-logger",
- "type": "lib",
- "data": { "tags": [], "root": "lib/client-logger", "files": [] }
- },
- {
- "name": "@storybook/example-react-ts",
- "type": "lib",
- "data": { "tags": [], "root": "examples/react-ts", "files": [] }
- },
- {
- "name": "@storybook/source-loader",
- "type": "lib",
- "data": { "tags": [], "root": "lib/source-loader", "files": [] }
- },
- {
- "name": "storybook",
- "type": "lib",
- "data": { "tags": [], "root": "lib/cli-storybook", "files": [] }
- },
- {
- "name": "vue-cli-example",
- "type": "lib",
- "data": { "tags": [], "root": "examples/vue-cli", "files": [] }
- },
- {
- "name": "@storybook/addon-controls",
- "type": "lib",
- "data": { "tags": [], "root": "addons/controls", "files": [] }
- },
- {
- "name": "@storybook/addon-toolbars",
- "type": "lib",
- "data": { "tags": [], "root": "addons/toolbars", "files": [] }
- },
- {
- "name": "@storybook/addon-viewport",
- "type": "lib",
- "data": { "tags": [], "root": "addons/viewport", "files": [] }
- },
- {
- "name": "@storybook/core-client",
- "type": "lib",
- "data": { "tags": [], "root": "lib/core-client", "files": [] }
- },
- {
- "name": "@storybook/core-common",
- "type": "lib",
- "data": { "tags": [], "root": "lib/core-common", "files": [] }
- },
- {
- "name": "@storybook/core-events",
- "type": "lib",
- "data": { "tags": [], "root": "lib/core-events", "files": [] }
- },
- {
- "name": "@storybook/core-server",
- "type": "lib",
- "data": { "tags": [], "root": "lib/core-server", "files": [] }
- },
- {
- "name": "@storybook/node-logger",
- "type": "lib",
- "data": { "tags": [], "root": "lib/node-logger", "files": [] }
- },
- {
- "name": "@storybook/postinstall",
- "type": "lib",
- "data": { "tags": [], "root": "lib/postinstall", "files": [] }
- },
- {
- "name": "@storybook/addon-actions",
- "type": "lib",
- "data": { "tags": [], "root": "addons/actions", "files": [] }
- },
- {
- "name": "@storybook/addon-measure",
- "type": "lib",
- "data": { "tags": [], "root": "addons/measure", "files": [] }
- },
- {
- "name": "@storybook/addon-outline",
- "type": "lib",
- "data": { "tags": [], "root": "addons/outline", "files": [] }
- },
- {
- "name": "@storybook/client-api",
- "type": "lib",
- "data": { "tags": [], "root": "lib/client-api", "files": [] }
- },
- {
- "name": "@storybook/components",
- "type": "lib",
- "data": { "tags": [], "root": "lib/components", "files": [] }
- },
- {
- "name": "@storybook/csf-tools",
- "type": "lib",
- "data": { "tags": [], "root": "lib/csf-tools", "files": [] }
- },
- {
- "name": "@storybook/addon-links",
- "type": "lib",
- "data": { "tags": [], "root": "addons/links", "files": [] }
- },
- {
- "name": "@storybook/channels",
- "type": "lib",
- "data": { "tags": [], "root": "lib/channels", "files": [] }
- },
- {
- "name": "@storybook/addon-a11y",
- "type": "lib",
- "data": { "tags": [], "root": "addons/a11y", "files": [] }
- },
- {
- "name": "@storybook/addon-docs",
- "type": "lib",
- "data": { "tags": [], "root": "addons/docs", "files": [] }
- },
- {
- "name": "@storybook/addon-jest",
- "type": "lib",
- "data": { "tags": [], "root": "addons/jest", "files": [] }
- },
- {
- "name": "@storybook/angular",
- "type": "lib",
- "data": { "tags": [], "root": "app/angular", "files": [] }
- },
- {
- "name": "@storybook/codemod",
- "type": "lib",
- "data": { "tags": [], "root": "lib/codemod", "files": [] }
- },
- {
- "name": "@storybook/theming",
- "type": "lib",
- "data": { "tags": [], "root": "lib/theming", "files": [] }
- },
- {
- "name": "@storybook/addons",
- "type": "lib",
- "data": { "tags": [], "root": "lib/addons", "files": [] }
- },
- {
- "name": "@storybook/preact",
- "type": "lib",
- "data": { "tags": [], "root": "app/preact", "files": [] }
- },
- {
- "name": "@storybook/router",
- "type": "lib",
- "data": { "tags": [], "root": "lib/router", "files": [] }
- },
- {
- "name": "@storybook/server",
- "type": "lib",
- "data": { "tags": [], "root": "app/server", "files": [] }
- },
- {
- "name": "@storybook/svelte",
- "type": "lib",
- "data": { "tags": [], "root": "app/svelte", "files": [] }
- },
- {
- "name": "sb",
- "type": "lib",
- "data": { "tags": [], "root": "lib/cli-sb", "files": [] }
- },
- {
- "name": "@storybook/ember",
- "type": "lib",
- "data": { "tags": [], "root": "app/ember", "files": [] }
- },
- {
- "name": "@storybook/react",
- "type": "lib",
- "data": { "tags": [], "root": "app/react", "files": [] }
- },
- {
- "name": "@storybook/core",
- "type": "lib",
- "data": { "tags": [], "root": "lib/core", "files": [] }
- },
- {
- "name": "@storybook/html",
- "type": "lib",
- "data": { "tags": [], "root": "app/html", "files": [] }
- },
- {
- "name": "@storybook/vue3",
- "type": "lib",
- "data": { "tags": [], "root": "app/vue3", "files": [] }
- },
- {
- "name": "@storybook/api",
- "type": "lib",
- "data": { "tags": [], "root": "lib/api", "files": [] }
- },
- {
- "name": "@storybook/cli",
- "type": "lib",
- "data": { "tags": [], "root": "lib/cli", "files": [] }
- },
- {
- "name": "@storybook/vue",
- "type": "lib",
- "data": { "tags": [], "root": "app/vue", "files": [] }
- },
- {
- "name": "@storybook/ui",
- "type": "lib",
- "data": { "tags": [], "root": "lib/ui", "files": [] }
- }
- ],
- "dependencies": {
- "@storybook/addon-storyshots-puppeteer": [
- {
- "source": "@storybook/addon-storyshots-puppeteer",
- "target": "@storybook/node-logger",
- "type": "static"
- }
- ],
- "web-components-kitchen-sink": [
- {
- "source": "web-components-kitchen-sink",
- "target": "@storybook/addon-a11y",
- "type": "static"
- },
- {
- "source": "web-components-kitchen-sink",
- "target": "@storybook/addon-actions",
- "type": "static"
- },
- {
- "source": "web-components-kitchen-sink",
- "target": "@storybook/addon-backgrounds",
- "type": "static"
- },
- {
- "source": "web-components-kitchen-sink",
- "target": "@storybook/addon-controls",
- "type": "static"
- },
- {
- "source": "web-components-kitchen-sink",
- "target": "@storybook/addon-docs",
- "type": "static"
- },
- {
- "source": "web-components-kitchen-sink",
- "target": "@storybook/addon-jest",
- "type": "static"
- },
- {
- "source": "web-components-kitchen-sink",
- "target": "@storybook/addon-links",
- "type": "static"
- },
- {
- "source": "web-components-kitchen-sink",
- "target": "@storybook/addon-storyshots",
- "type": "static"
- },
- {
- "source": "web-components-kitchen-sink",
- "target": "@storybook/addon-storysource",
- "type": "static"
- },
- {
- "source": "web-components-kitchen-sink",
- "target": "@storybook/addon-viewport",
- "type": "static"
- },
- {
- "source": "web-components-kitchen-sink",
- "target": "@storybook/web-components",
- "type": "static"
- }
- ],
- "@storybook/addon-storyshots": [
- {
- "source": "@storybook/addon-storyshots",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/addon-storyshots",
- "target": "@storybook/client-api",
- "type": "static"
- },
- {
- "source": "@storybook/addon-storyshots",
- "target": "@storybook/core",
- "type": "static"
- },
- {
- "source": "@storybook/addon-storyshots",
- "target": "@storybook/core-common",
- "type": "static"
- },
- {
- "source": "@storybook/addon-storyshots",
- "target": "@storybook/addon-docs",
- "type": "static"
- },
- {
- "source": "@storybook/addon-storyshots",
- "target": "@storybook/angular",
- "type": "static"
- },
- {
- "source": "@storybook/addon-storyshots",
- "target": "@storybook/react",
- "type": "static"
- },
- {
- "source": "@storybook/addon-storyshots",
- "target": "@storybook/vue",
- "type": "static"
- },
- {
- "source": "@storybook/addon-storyshots",
- "target": "@storybook/vue3",
- "type": "static"
- }
- ],
- "cra-ts-kitchen-sink": [
- {
- "source": "cra-ts-kitchen-sink",
- "target": "@storybook/addon-a11y",
- "type": "static"
- },
- {
- "source": "cra-ts-kitchen-sink",
- "target": "@storybook/addon-actions",
- "type": "static"
- },
- {
- "source": "cra-ts-kitchen-sink",
- "target": "@storybook/addon-docs",
- "type": "static"
- },
- {
- "source": "cra-ts-kitchen-sink",
- "target": "@storybook/addon-links",
- "type": "static"
- },
- {
- "source": "cra-ts-kitchen-sink",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "cra-ts-kitchen-sink",
- "target": "@storybook/builder-webpack4",
- "type": "static"
- },
- {
- "source": "cra-ts-kitchen-sink",
- "target": "@storybook/react",
- "type": "static"
- }
- ],
- "preact-example": [
- {
- "source": "preact-example",
- "target": "@storybook/addon-a11y",
- "type": "static"
- },
- {
- "source": "preact-example",
- "target": "@storybook/addon-actions",
- "type": "static"
- },
- {
- "source": "preact-example",
- "target": "@storybook/addon-backgrounds",
- "type": "static"
- },
- {
- "source": "preact-example",
- "target": "@storybook/addon-links",
- "type": "static"
- },
- {
- "source": "preact-example",
- "target": "@storybook/addon-storyshots",
- "type": "static"
- },
- {
- "source": "preact-example",
- "target": "@storybook/addon-storysource",
- "type": "static"
- },
- {
- "source": "preact-example",
- "target": "@storybook/addon-viewport",
- "type": "static"
- },
- {
- "source": "preact-example",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "preact-example",
- "target": "@storybook/preact",
- "type": "static"
- },
- {
- "source": "preact-example",
- "target": "@storybook/source-loader",
- "type": "static"
- }
- ],
- "server-kitchen-sink": [
- {
- "source": "server-kitchen-sink",
- "target": "@storybook/addon-a11y",
- "type": "static"
- },
- {
- "source": "server-kitchen-sink",
- "target": "@storybook/addon-actions",
- "type": "static"
- },
- {
- "source": "server-kitchen-sink",
- "target": "@storybook/addon-backgrounds",
- "type": "static"
- },
- {
- "source": "server-kitchen-sink",
- "target": "@storybook/addon-controls",
- "type": "static"
- },
- {
- "source": "server-kitchen-sink",
- "target": "@storybook/addon-links",
- "type": "static"
- },
- {
- "source": "server-kitchen-sink",
- "target": "@storybook/node-logger",
- "type": "static"
- },
- {
- "source": "server-kitchen-sink",
- "target": "@storybook/server",
- "type": "static"
- }
- ],
- "svelte-example": [
- {
- "source": "svelte-example",
- "target": "@storybook/addon-a11y",
- "type": "static"
- },
- {
- "source": "svelte-example",
- "target": "@storybook/addon-actions",
- "type": "static"
- },
- {
- "source": "svelte-example",
- "target": "@storybook/addon-backgrounds",
- "type": "static"
- },
- {
- "source": "svelte-example",
- "target": "@storybook/addon-controls",
- "type": "static"
- },
- {
- "source": "svelte-example",
- "target": "@storybook/addon-docs",
- "type": "static"
- },
- {
- "source": "svelte-example",
- "target": "@storybook/addon-links",
- "type": "static"
- },
- {
- "source": "svelte-example",
- "target": "@storybook/addon-storyshots",
- "type": "static"
- },
- {
- "source": "svelte-example",
- "target": "@storybook/addon-storysource",
- "type": "static"
- },
- {
- "source": "svelte-example",
- "target": "@storybook/addon-viewport",
- "type": "static"
- },
- {
- "source": "svelte-example",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "svelte-example",
- "target": "@storybook/source-loader",
- "type": "static"
- },
- {
- "source": "svelte-example",
- "target": "@storybook/svelte",
- "type": "static"
- }
- ],
- "official-storybook": [
- {
- "source": "official-storybook",
- "target": "@storybook/addon-a11y",
- "type": "static"
- },
- {
- "source": "official-storybook",
- "target": "@storybook/addon-actions",
- "type": "static"
- },
- {
- "source": "official-storybook",
- "target": "@storybook/addon-backgrounds",
- "type": "static"
- },
- {
- "source": "official-storybook",
- "target": "@storybook/addon-controls",
- "type": "static"
- },
- {
- "source": "official-storybook",
- "target": "@storybook/addon-docs",
- "type": "static"
- },
- {
- "source": "official-storybook",
- "target": "@storybook/addon-jest",
- "type": "static"
- },
- {
- "source": "official-storybook",
- "target": "@storybook/addon-links",
- "type": "static"
- },
- {
- "source": "official-storybook",
- "target": "@storybook/addon-storyshots",
- "type": "static"
- },
- {
- "source": "official-storybook",
- "target": "@storybook/addon-storyshots-puppeteer",
- "type": "static"
- },
- {
- "source": "official-storybook",
- "target": "@storybook/addon-storysource",
- "type": "static"
- },
- {
- "source": "official-storybook",
- "target": "@storybook/addon-toolbars",
- "type": "static"
- },
- {
- "source": "official-storybook",
- "target": "@storybook/addon-viewport",
- "type": "static"
- },
- {
- "source": "official-storybook",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "official-storybook",
- "target": "@storybook/cli",
- "type": "static"
- },
- {
- "source": "official-storybook",
- "target": "@storybook/components",
- "type": "static"
- },
- {
- "source": "official-storybook",
- "target": "@storybook/core-events",
- "type": "static"
- },
- {
- "source": "official-storybook",
- "target": "@storybook/node-logger",
- "type": "static"
- },
- {
- "source": "official-storybook",
- "target": "@storybook/react",
- "type": "static"
- },
- {
- "source": "official-storybook",
- "target": "@storybook/source-loader",
- "type": "static"
- },
- {
- "source": "official-storybook",
- "target": "@storybook/theming",
- "type": "static"
- }
- ],
- "standalone-preview": [
- {
- "source": "standalone-preview",
- "target": "@storybook/addon-docs",
- "type": "static"
- },
- {
- "source": "standalone-preview",
- "target": "@storybook/react",
- "type": "static"
- }
- ],
- "@storybook/example-react-ts-webpack4": [
- {
- "source": "@storybook/example-react-ts-webpack4",
- "target": "@storybook/addon-controls",
- "type": "static"
- },
- {
- "source": "@storybook/example-react-ts-webpack4",
- "target": "@storybook/addon-essentials",
- "type": "static"
- },
- {
- "source": "@storybook/example-react-ts-webpack4",
- "target": "@storybook/builder-webpack4",
- "type": "static"
- },
- {
- "source": "@storybook/example-react-ts-webpack4",
- "target": "@storybook/react",
- "type": "static"
- }
- ],
- "cra-ts-essentials": [
- {
- "source": "cra-ts-essentials",
- "target": "@storybook/addon-essentials",
- "type": "static"
- },
- {
- "source": "cra-ts-essentials",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "cra-ts-essentials",
- "target": "@storybook/builder-webpack4",
- "type": "static"
- },
- {
- "source": "cra-ts-essentials",
- "target": "@storybook/react",
- "type": "static"
- }
- ],
- "html-kitchen-sink": [
- {
- "source": "html-kitchen-sink",
- "target": "@storybook/addon-a11y",
- "type": "static"
- },
- {
- "source": "html-kitchen-sink",
- "target": "@storybook/addon-actions",
- "type": "static"
- },
- {
- "source": "html-kitchen-sink",
- "target": "@storybook/addon-backgrounds",
- "type": "static"
- },
- {
- "source": "html-kitchen-sink",
- "target": "@storybook/addon-controls",
- "type": "static"
- },
- {
- "source": "html-kitchen-sink",
- "target": "@storybook/addon-docs",
- "type": "static"
- },
- {
- "source": "html-kitchen-sink",
- "target": "@storybook/addon-jest",
- "type": "static"
- },
- {
- "source": "html-kitchen-sink",
- "target": "@storybook/addon-links",
- "type": "static"
- },
- {
- "source": "html-kitchen-sink",
- "target": "@storybook/addon-storyshots",
- "type": "static"
- },
- {
- "source": "html-kitchen-sink",
- "target": "@storybook/addon-storysource",
- "type": "static"
- },
- {
- "source": "html-kitchen-sink",
- "target": "@storybook/addon-viewport",
- "type": "static"
- },
- {
- "source": "html-kitchen-sink",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "html-kitchen-sink",
- "target": "@storybook/client-api",
- "type": "static"
- },
- {
- "source": "html-kitchen-sink",
- "target": "@storybook/core",
- "type": "static"
- },
- {
- "source": "html-kitchen-sink",
- "target": "@storybook/core-events",
- "type": "static"
- },
- {
- "source": "html-kitchen-sink",
- "target": "@storybook/html",
- "type": "static"
- },
- {
- "source": "html-kitchen-sink",
- "target": "@storybook/source-loader",
- "type": "static"
- }
- ],
- "cra-kitchen-sink": [
- {
- "source": "cra-kitchen-sink",
- "target": "@storybook/client-logger",
- "type": "static"
- },
- {
- "source": "cra-kitchen-sink",
- "target": "@storybook/addon-a11y",
- "type": "static"
- },
- {
- "source": "cra-kitchen-sink",
- "target": "@storybook/addon-actions",
- "type": "static"
- },
- {
- "source": "cra-kitchen-sink",
- "target": "@storybook/addon-backgrounds",
- "type": "static"
- },
- {
- "source": "cra-kitchen-sink",
- "target": "@storybook/addon-docs",
- "type": "static"
- },
- {
- "source": "cra-kitchen-sink",
- "target": "@storybook/addon-jest",
- "type": "static"
- },
- {
- "source": "cra-kitchen-sink",
- "target": "@storybook/addon-links",
- "type": "static"
- },
- {
- "source": "cra-kitchen-sink",
- "target": "@storybook/addon-storyshots",
- "type": "static"
- },
- {
- "source": "cra-kitchen-sink",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "cra-kitchen-sink",
- "target": "@storybook/builder-webpack4",
- "type": "static"
- },
- {
- "source": "cra-kitchen-sink",
- "target": "@storybook/react",
- "type": "static"
- },
- {
- "source": "cra-kitchen-sink",
- "target": "@storybook/theming",
- "type": "static"
- }
- ],
- "vue-example": [
- {
- "source": "vue-example",
- "target": "@storybook/addon-a11y",
- "type": "static"
- },
- {
- "source": "vue-example",
- "target": "@storybook/addon-actions",
- "type": "static"
- },
- {
- "source": "vue-example",
- "target": "@storybook/addon-backgrounds",
- "type": "static"
- },
- {
- "source": "vue-example",
- "target": "@storybook/addon-controls",
- "type": "static"
- },
- {
- "source": "vue-example",
- "target": "@storybook/addon-docs",
- "type": "static"
- },
- {
- "source": "vue-example",
- "target": "@storybook/addon-links",
- "type": "static"
- },
- {
- "source": "vue-example",
- "target": "@storybook/addon-storyshots",
- "type": "static"
- },
- {
- "source": "vue-example",
- "target": "@storybook/addon-storysource",
- "type": "static"
- },
- {
- "source": "vue-example",
- "target": "@storybook/addon-viewport",
- "type": "static"
- },
- {
- "source": "vue-example",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "vue-example",
- "target": "@storybook/source-loader",
- "type": "static"
- },
- { "source": "vue-example", "target": "@storybook/vue", "type": "static" }
- ],
- "@storybook/channel-postmessage": [
- {
- "source": "@storybook/channel-postmessage",
- "target": "@storybook/channels",
- "type": "static"
- },
- {
- "source": "@storybook/channel-postmessage",
- "target": "@storybook/client-logger",
- "type": "static"
- },
- {
- "source": "@storybook/channel-postmessage",
- "target": "@storybook/core-events",
- "type": "static"
- }
- ],
- "@storybook/channel-websocket": [
- {
- "source": "@storybook/channel-websocket",
- "target": "@storybook/channels",
- "type": "static"
- }
- ],
- "@storybook/builder-webpack4": [
- {
- "source": "@storybook/builder-webpack4",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/builder-webpack4",
- "target": "@storybook/api",
- "type": "static"
- },
- {
- "source": "@storybook/builder-webpack4",
- "target": "@storybook/channel-postmessage",
- "type": "static"
- },
- {
- "source": "@storybook/builder-webpack4",
- "target": "@storybook/channels",
- "type": "static"
- },
- {
- "source": "@storybook/builder-webpack4",
- "target": "@storybook/client-api",
- "type": "static"
- },
- {
- "source": "@storybook/builder-webpack4",
- "target": "@storybook/client-logger",
- "type": "static"
- },
- {
- "source": "@storybook/builder-webpack4",
- "target": "@storybook/components",
- "type": "static"
- },
- {
- "source": "@storybook/builder-webpack4",
- "target": "@storybook/core-common",
- "type": "static"
- },
- {
- "source": "@storybook/builder-webpack4",
- "target": "@storybook/core-events",
- "type": "static"
- },
- {
- "source": "@storybook/builder-webpack4",
- "target": "@storybook/node-logger",
- "type": "static"
- },
- {
- "source": "@storybook/builder-webpack4",
- "target": "@storybook/router",
- "type": "static"
- },
- {
- "source": "@storybook/builder-webpack4",
- "target": "@storybook/theming",
- "type": "static"
- },
- {
- "source": "@storybook/builder-webpack4",
- "target": "@storybook/ui",
- "type": "static"
- }
- ],
- "@storybook/builder-webpack5": [
- {
- "source": "@storybook/builder-webpack5",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/builder-webpack5",
- "target": "@storybook/api",
- "type": "static"
- },
- {
- "source": "@storybook/builder-webpack5",
- "target": "@storybook/channel-postmessage",
- "type": "static"
- },
- {
- "source": "@storybook/builder-webpack5",
- "target": "@storybook/channels",
- "type": "static"
- },
- {
- "source": "@storybook/builder-webpack5",
- "target": "@storybook/client-api",
- "type": "static"
- },
- {
- "source": "@storybook/builder-webpack5",
- "target": "@storybook/client-logger",
- "type": "static"
- },
- {
- "source": "@storybook/builder-webpack5",
- "target": "@storybook/components",
- "type": "static"
- },
- {
- "source": "@storybook/builder-webpack5",
- "target": "@storybook/core-common",
- "type": "static"
- },
- {
- "source": "@storybook/builder-webpack5",
- "target": "@storybook/core-events",
- "type": "static"
- },
- {
- "source": "@storybook/builder-webpack5",
- "target": "@storybook/node-logger",
- "type": "static"
- },
- {
- "source": "@storybook/builder-webpack5",
- "target": "@storybook/router",
- "type": "static"
- },
- {
- "source": "@storybook/builder-webpack5",
- "target": "@storybook/theming",
- "type": "static"
- }
- ],
- "@storybook/manager-webpack4": [
- {
- "source": "@storybook/manager-webpack4",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/manager-webpack4",
- "target": "@storybook/core-client",
- "type": "static"
- },
- {
- "source": "@storybook/manager-webpack4",
- "target": "@storybook/core-common",
- "type": "static"
- },
- {
- "source": "@storybook/manager-webpack4",
- "target": "@storybook/node-logger",
- "type": "static"
- },
- {
- "source": "@storybook/manager-webpack4",
- "target": "@storybook/theming",
- "type": "static"
- },
- {
- "source": "@storybook/manager-webpack4",
- "target": "@storybook/ui",
- "type": "static"
- }
- ],
- "@storybook/manager-webpack5": [
- {
- "source": "@storybook/manager-webpack5",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/manager-webpack5",
- "target": "@storybook/core-client",
- "type": "static"
- },
- {
- "source": "@storybook/manager-webpack5",
- "target": "@storybook/core-common",
- "type": "static"
- },
- {
- "source": "@storybook/manager-webpack5",
- "target": "@storybook/node-logger",
- "type": "static"
- },
- {
- "source": "@storybook/manager-webpack5",
- "target": "@storybook/theming",
- "type": "static"
- },
- {
- "source": "@storybook/manager-webpack5",
- "target": "@storybook/ui",
- "type": "static"
- }
- ],
- "angular-cli": [
- {
- "source": "angular-cli",
- "target": "@storybook/addon-a11y",
- "type": "static"
- },
- {
- "source": "angular-cli",
- "target": "@storybook/addon-actions",
- "type": "static"
- },
- {
- "source": "angular-cli",
- "target": "@storybook/addon-backgrounds",
- "type": "static"
- },
- {
- "source": "angular-cli",
- "target": "@storybook/addon-controls",
- "type": "static"
- },
- {
- "source": "angular-cli",
- "target": "@storybook/addon-docs",
- "type": "static"
- },
- {
- "source": "angular-cli",
- "target": "@storybook/addon-jest",
- "type": "static"
- },
- {
- "source": "angular-cli",
- "target": "@storybook/addon-links",
- "type": "static"
- },
- {
- "source": "angular-cli",
- "target": "@storybook/addon-storyshots",
- "type": "static"
- },
- {
- "source": "angular-cli",
- "target": "@storybook/addon-storysource",
- "type": "static"
- },
- {
- "source": "angular-cli",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "angular-cli",
- "target": "@storybook/angular",
- "type": "static"
- },
- {
- "source": "angular-cli",
- "target": "@storybook/source-loader",
- "type": "static"
- }
- ],
- "cra-react15": [
- {
- "source": "cra-react15",
- "target": "@storybook/addon-actions",
- "type": "static"
- },
- {
- "source": "cra-react15",
- "target": "@storybook/addon-links",
- "type": "static"
- },
- {
- "source": "cra-react15",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "cra-react15",
- "target": "@storybook/builder-webpack4",
- "type": "static"
- },
- {
- "source": "cra-react15",
- "target": "@storybook/react",
- "type": "static"
- },
- {
- "source": "cra-react15",
- "target": "@storybook/theming",
- "type": "static"
- }
- ],
- "@storybook/addon-backgrounds": [
- {
- "source": "@storybook/addon-backgrounds",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/addon-backgrounds",
- "target": "@storybook/api",
- "type": "static"
- },
- {
- "source": "@storybook/addon-backgrounds",
- "target": "@storybook/client-logger",
- "type": "static"
- },
- {
- "source": "@storybook/addon-backgrounds",
- "target": "@storybook/components",
- "type": "static"
- },
- {
- "source": "@storybook/addon-backgrounds",
- "target": "@storybook/core-events",
- "type": "static"
- },
- {
- "source": "@storybook/addon-backgrounds",
- "target": "@storybook/theming",
- "type": "static"
- }
- ],
- "@storybook/addon-storysource": [
- {
- "source": "@storybook/addon-storysource",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/addon-storysource",
- "target": "@storybook/api",
- "type": "static"
- },
- {
- "source": "@storybook/addon-storysource",
- "target": "@storybook/client-logger",
- "type": "static"
- },
- {
- "source": "@storybook/addon-storysource",
- "target": "@storybook/components",
- "type": "static"
- },
- {
- "source": "@storybook/addon-storysource",
- "target": "@storybook/router",
- "type": "static"
- },
- {
- "source": "@storybook/addon-storysource",
- "target": "@storybook/source-loader",
- "type": "static"
- },
- {
- "source": "@storybook/addon-storysource",
- "target": "@storybook/theming",
- "type": "static"
- }
- ],
- "@storybook/web-components": [
- {
- "source": "@storybook/web-components",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/web-components",
- "target": "@storybook/client-api",
- "type": "static"
- },
- {
- "source": "@storybook/web-components",
- "target": "@storybook/core",
- "type": "static"
- },
- {
- "source": "@storybook/web-components",
- "target": "@storybook/core-common",
- "type": "static"
- }
- ],
- "ember-example": [
- {
- "source": "ember-example",
- "target": "@storybook/addon-a11y",
- "type": "static"
- },
- {
- "source": "ember-example",
- "target": "@storybook/addon-actions",
- "type": "static"
- },
- {
- "source": "ember-example",
- "target": "@storybook/addon-backgrounds",
- "type": "static"
- },
- {
- "source": "ember-example",
- "target": "@storybook/addon-controls",
- "type": "static"
- },
- {
- "source": "ember-example",
- "target": "@storybook/addon-docs",
- "type": "static"
- },
- {
- "source": "ember-example",
- "target": "@storybook/addon-links",
- "type": "static"
- },
- {
- "source": "ember-example",
- "target": "@storybook/addon-storysource",
- "type": "static"
- },
- {
- "source": "ember-example",
- "target": "@storybook/addon-viewport",
- "type": "static"
- },
- {
- "source": "ember-example",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "ember-example",
- "target": "@storybook/ember",
- "type": "static"
- },
- {
- "source": "ember-example",
- "target": "@storybook/source-loader",
- "type": "static"
- }
- ],
- "vue-3-cli-example": [
- {
- "source": "vue-3-cli-example",
- "target": "@storybook/vue3",
- "type": "static"
- },
- {
- "source": "vue-3-cli-example",
- "target": "@storybook/addon-actions",
- "type": "static"
- },
- {
- "source": "vue-3-cli-example",
- "target": "@storybook/addon-essentials",
- "type": "static"
- },
- {
- "source": "vue-3-cli-example",
- "target": "@storybook/addon-links",
- "type": "static"
- },
- {
- "source": "vue-3-cli-example",
- "target": "@storybook/addon-storyshots",
- "type": "static"
- }
- ],
- "@storybook/addon-essentials": [
- {
- "source": "@storybook/addon-essentials",
- "target": "@storybook/addon-actions",
- "type": "static"
- },
- {
- "source": "@storybook/addon-essentials",
- "target": "@storybook/addon-backgrounds",
- "type": "static"
- },
- {
- "source": "@storybook/addon-essentials",
- "target": "@storybook/addon-controls",
- "type": "static"
- },
- {
- "source": "@storybook/addon-essentials",
- "target": "@storybook/addon-docs",
- "type": "static"
- },
- {
- "source": "@storybook/addon-essentials",
- "target": "@storybook/addon-measure",
- "type": "static"
- },
- {
- "source": "@storybook/addon-essentials",
- "target": "@storybook/addon-outline",
- "type": "static"
- },
- {
- "source": "@storybook/addon-essentials",
- "target": "@storybook/addon-toolbars",
- "type": "static"
- },
- {
- "source": "@storybook/addon-essentials",
- "target": "@storybook/addon-viewport",
- "type": "static"
- },
- {
- "source": "@storybook/addon-essentials",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/addon-essentials",
- "target": "@storybook/api",
- "type": "static"
- },
- {
- "source": "@storybook/addon-essentials",
- "target": "@storybook/node-logger",
- "type": "static"
- },
- {
- "source": "@storybook/addon-essentials",
- "target": "@storybook/vue",
- "type": "static"
- }
- ],
- "@storybook/client-logger": [],
- "@storybook/example-react-ts": [
- {
- "source": "@storybook/example-react-ts",
- "target": "@storybook/addon-essentials",
- "type": "static"
- },
- {
- "source": "@storybook/example-react-ts",
- "target": "@storybook/addon-storyshots",
- "type": "static"
- },
- {
- "source": "@storybook/example-react-ts",
- "target": "@storybook/addon-storysource",
- "type": "static"
- },
- {
- "source": "@storybook/example-react-ts",
- "target": "@storybook/components",
- "type": "static"
- },
- {
- "source": "@storybook/example-react-ts",
- "target": "@storybook/react",
- "type": "static"
- },
- {
- "source": "@storybook/example-react-ts",
- "target": "@storybook/theming",
- "type": "static"
- }
- ],
- "@storybook/source-loader": [
- {
- "source": "@storybook/source-loader",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/source-loader",
- "target": "@storybook/client-logger",
- "type": "static"
- }
- ],
- "storybook": [
- { "source": "storybook", "target": "@storybook/cli", "type": "static" }
- ],
- "vue-cli-example": [
- {
- "source": "vue-cli-example",
- "target": "@storybook/addon-controls",
- "type": "static"
- },
- {
- "source": "vue-cli-example",
- "target": "@storybook/addon-essentials",
- "type": "static"
- },
- {
- "source": "vue-cli-example",
- "target": "@storybook/source-loader",
- "type": "static"
- },
- {
- "source": "vue-cli-example",
- "target": "@storybook/vue",
- "type": "static"
- }
- ],
- "@storybook/addon-controls": [
- {
- "source": "@storybook/addon-controls",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/addon-controls",
- "target": "@storybook/api",
- "type": "static"
- },
- {
- "source": "@storybook/addon-controls",
- "target": "@storybook/client-api",
- "type": "static"
- },
- {
- "source": "@storybook/addon-controls",
- "target": "@storybook/components",
- "type": "static"
- },
- {
- "source": "@storybook/addon-controls",
- "target": "@storybook/node-logger",
- "type": "static"
- },
- {
- "source": "@storybook/addon-controls",
- "target": "@storybook/theming",
- "type": "static"
- }
- ],
- "@storybook/addon-toolbars": [
- {
- "source": "@storybook/addon-toolbars",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/addon-toolbars",
- "target": "@storybook/api",
- "type": "static"
- },
- {
- "source": "@storybook/addon-toolbars",
- "target": "@storybook/client-api",
- "type": "static"
- },
- {
- "source": "@storybook/addon-toolbars",
- "target": "@storybook/components",
- "type": "static"
- },
- {
- "source": "@storybook/addon-toolbars",
- "target": "@storybook/theming",
- "type": "static"
- }
- ],
- "@storybook/addon-viewport": [
- {
- "source": "@storybook/addon-viewport",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/addon-viewport",
- "target": "@storybook/api",
- "type": "static"
- },
- {
- "source": "@storybook/addon-viewport",
- "target": "@storybook/client-logger",
- "type": "static"
- },
- {
- "source": "@storybook/addon-viewport",
- "target": "@storybook/components",
- "type": "static"
- },
- {
- "source": "@storybook/addon-viewport",
- "target": "@storybook/core-events",
- "type": "static"
- },
- {
- "source": "@storybook/addon-viewport",
- "target": "@storybook/theming",
- "type": "static"
- }
- ],
- "@storybook/core-client": [
- {
- "source": "@storybook/core-client",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/core-client",
- "target": "@storybook/channel-postmessage",
- "type": "static"
- },
- {
- "source": "@storybook/core-client",
- "target": "@storybook/client-api",
- "type": "static"
- },
- {
- "source": "@storybook/core-client",
- "target": "@storybook/client-logger",
- "type": "static"
- },
- {
- "source": "@storybook/core-client",
- "target": "@storybook/core-events",
- "type": "static"
- },
- {
- "source": "@storybook/core-client",
- "target": "@storybook/ui",
- "type": "static"
- },
- {
- "source": "@storybook/core-client",
- "target": "@storybook/core-common",
- "type": "static"
- }
- ],
- "@storybook/core-common": [
- {
- "source": "@storybook/core-common",
- "target": "@storybook/node-logger",
- "type": "static"
- }
- ],
- "@storybook/core-events": [],
- "@storybook/core-server": [
- {
- "source": "@storybook/core-server",
- "target": "@storybook/builder-webpack4",
- "type": "static"
- },
- {
- "source": "@storybook/core-server",
- "target": "@storybook/core-client",
- "type": "static"
- },
- {
- "source": "@storybook/core-server",
- "target": "@storybook/core-common",
- "type": "static"
- },
- {
- "source": "@storybook/core-server",
- "target": "@storybook/csf-tools",
- "type": "static"
- },
- {
- "source": "@storybook/core-server",
- "target": "@storybook/manager-webpack4",
- "type": "static"
- },
- {
- "source": "@storybook/core-server",
- "target": "@storybook/node-logger",
- "type": "static"
- },
- {
- "source": "@storybook/core-server",
- "target": "@storybook/builder-webpack5",
- "type": "static"
- }
- ],
- "@storybook/node-logger": [],
- "@storybook/postinstall": [],
- "@storybook/addon-actions": [
- {
- "source": "@storybook/addon-actions",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/addon-actions",
- "target": "@storybook/api",
- "type": "static"
- },
- {
- "source": "@storybook/addon-actions",
- "target": "@storybook/client-api",
- "type": "static"
- },
- {
- "source": "@storybook/addon-actions",
- "target": "@storybook/components",
- "type": "static"
- },
- {
- "source": "@storybook/addon-actions",
- "target": "@storybook/core-events",
- "type": "static"
- },
- {
- "source": "@storybook/addon-actions",
- "target": "@storybook/theming",
- "type": "static"
- }
- ],
- "@storybook/addon-measure": [
- {
- "source": "@storybook/addon-measure",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/addon-measure",
- "target": "@storybook/api",
- "type": "static"
- },
- {
- "source": "@storybook/addon-measure",
- "target": "@storybook/client-logger",
- "type": "static"
- },
- {
- "source": "@storybook/addon-measure",
- "target": "@storybook/components",
- "type": "static"
- },
- {
- "source": "@storybook/addon-measure",
- "target": "@storybook/core-events",
- "type": "static"
- }
- ],
- "@storybook/addon-outline": [
- {
- "source": "@storybook/addon-outline",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/addon-outline",
- "target": "@storybook/api",
- "type": "static"
- },
- {
- "source": "@storybook/addon-outline",
- "target": "@storybook/client-logger",
- "type": "static"
- },
- {
- "source": "@storybook/addon-outline",
- "target": "@storybook/components",
- "type": "static"
- },
- {
- "source": "@storybook/addon-outline",
- "target": "@storybook/core-events",
- "type": "static"
- }
- ],
- "@storybook/client-api": [
- {
- "source": "@storybook/client-api",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/client-api",
- "target": "@storybook/channel-postmessage",
- "type": "static"
- },
- {
- "source": "@storybook/client-api",
- "target": "@storybook/channels",
- "type": "static"
- },
- {
- "source": "@storybook/client-api",
- "target": "@storybook/client-logger",
- "type": "static"
- },
- {
- "source": "@storybook/client-api",
- "target": "@storybook/core-events",
- "type": "static"
- }
- ],
- "@storybook/components": [
- {
- "source": "@storybook/components",
- "target": "@storybook/client-logger",
- "type": "static"
- },
- {
- "source": "@storybook/components",
- "target": "@storybook/theming",
- "type": "static"
- }
- ],
- "@storybook/csf-tools": [],
- "@storybook/addon-links": [
- {
- "source": "@storybook/addon-links",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/addon-links",
- "target": "@storybook/client-logger",
- "type": "static"
- },
- {
- "source": "@storybook/addon-links",
- "target": "@storybook/core-events",
- "type": "static"
- },
- {
- "source": "@storybook/addon-links",
- "target": "@storybook/router",
- "type": "static"
- }
- ],
- "@storybook/channels": [],
- "@storybook/addon-a11y": [
- {
- "source": "@storybook/addon-a11y",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/addon-a11y",
- "target": "@storybook/api",
- "type": "static"
- },
- {
- "source": "@storybook/addon-a11y",
- "target": "@storybook/channels",
- "type": "static"
- },
- {
- "source": "@storybook/addon-a11y",
- "target": "@storybook/client-api",
- "type": "static"
- },
- {
- "source": "@storybook/addon-a11y",
- "target": "@storybook/client-logger",
- "type": "static"
- },
- {
- "source": "@storybook/addon-a11y",
- "target": "@storybook/components",
- "type": "static"
- },
- {
- "source": "@storybook/addon-a11y",
- "target": "@storybook/core-events",
- "type": "static"
- },
- {
- "source": "@storybook/addon-a11y",
- "target": "@storybook/theming",
- "type": "static"
- }
- ],
- "@storybook/addon-docs": [
- {
- "source": "@storybook/addon-docs",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/addon-docs",
- "target": "@storybook/api",
- "type": "static"
- },
- {
- "source": "@storybook/addon-docs",
- "target": "@storybook/builder-webpack4",
- "type": "static"
- },
- {
- "source": "@storybook/addon-docs",
- "target": "@storybook/client-api",
- "type": "static"
- },
- {
- "source": "@storybook/addon-docs",
- "target": "@storybook/client-logger",
- "type": "static"
- },
- {
- "source": "@storybook/addon-docs",
- "target": "@storybook/components",
- "type": "static"
- },
- {
- "source": "@storybook/addon-docs",
- "target": "@storybook/core",
- "type": "static"
- },
- {
- "source": "@storybook/addon-docs",
- "target": "@storybook/core-events",
- "type": "static"
- },
- {
- "source": "@storybook/addon-docs",
- "target": "@storybook/csf-tools",
- "type": "static"
- },
- {
- "source": "@storybook/addon-docs",
- "target": "@storybook/node-logger",
- "type": "static"
- },
- {
- "source": "@storybook/addon-docs",
- "target": "@storybook/postinstall",
- "type": "static"
- },
- {
- "source": "@storybook/addon-docs",
- "target": "@storybook/source-loader",
- "type": "static"
- },
- {
- "source": "@storybook/addon-docs",
- "target": "@storybook/theming",
- "type": "static"
- },
- {
- "source": "@storybook/addon-docs",
- "target": "@storybook/angular",
- "type": "static"
- },
- {
- "source": "@storybook/addon-docs",
- "target": "@storybook/react",
- "type": "static"
- },
- {
- "source": "@storybook/addon-docs",
- "target": "@storybook/vue",
- "type": "static"
- },
- {
- "source": "@storybook/addon-docs",
- "target": "@storybook/web-components",
- "type": "static"
- },
- {
- "source": "@storybook/addon-docs",
- "target": "@storybook/core-common",
- "type": "static"
- },
- {
- "source": "@storybook/addon-docs",
- "target": "@storybook/vue3",
- "type": "static"
- }
- ],
- "@storybook/addon-jest": [
- {
- "source": "@storybook/addon-jest",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/addon-jest",
- "target": "@storybook/api",
- "type": "static"
- },
- {
- "source": "@storybook/addon-jest",
- "target": "@storybook/components",
- "type": "static"
- },
- {
- "source": "@storybook/addon-jest",
- "target": "@storybook/core-events",
- "type": "static"
- },
- {
- "source": "@storybook/addon-jest",
- "target": "@storybook/theming",
- "type": "static"
- }
- ],
- "@storybook/angular": [
- {
- "source": "@storybook/angular",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/angular",
- "target": "@storybook/api",
- "type": "static"
- },
- {
- "source": "@storybook/angular",
- "target": "@storybook/core",
- "type": "static"
- },
- {
- "source": "@storybook/angular",
- "target": "@storybook/core-common",
- "type": "static"
- },
- {
- "source": "@storybook/angular",
- "target": "@storybook/core-events",
- "type": "static"
- },
- {
- "source": "@storybook/angular",
- "target": "@storybook/node-logger",
- "type": "static"
- }
- ],
- "@storybook/codemod": [
- {
- "source": "@storybook/codemod",
- "target": "@storybook/csf-tools",
- "type": "static"
- },
- {
- "source": "@storybook/codemod",
- "target": "@storybook/node-logger",
- "type": "static"
- }
- ],
- "@storybook/theming": [
- {
- "source": "@storybook/theming",
- "target": "@storybook/client-logger",
- "type": "static"
- }
- ],
- "@storybook/addons": [
- {
- "source": "@storybook/addons",
- "target": "@storybook/api",
- "type": "static"
- },
- {
- "source": "@storybook/addons",
- "target": "@storybook/channels",
- "type": "static"
- },
- {
- "source": "@storybook/addons",
- "target": "@storybook/client-logger",
- "type": "static"
- },
- {
- "source": "@storybook/addons",
- "target": "@storybook/core-events",
- "type": "static"
- },
- {
- "source": "@storybook/addons",
- "target": "@storybook/router",
- "type": "static"
- },
- {
- "source": "@storybook/addons",
- "target": "@storybook/theming",
- "type": "static"
- }
- ],
- "@storybook/preact": [
- {
- "source": "@storybook/preact",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/preact",
- "target": "@storybook/core",
- "type": "static"
- },
- {
- "source": "@storybook/preact",
- "target": "@storybook/core-common",
- "type": "static"
- }
- ],
- "@storybook/router": [
- {
- "source": "@storybook/router",
- "target": "@storybook/client-logger",
- "type": "static"
- }
- ],
- "@storybook/server": [
- {
- "source": "@storybook/server",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/server",
- "target": "@storybook/api",
- "type": "static"
- },
- {
- "source": "@storybook/server",
- "target": "@storybook/client-api",
- "type": "static"
- },
- {
- "source": "@storybook/server",
- "target": "@storybook/core",
- "type": "static"
- },
- {
- "source": "@storybook/server",
- "target": "@storybook/core-common",
- "type": "static"
- },
- {
- "source": "@storybook/server",
- "target": "@storybook/node-logger",
- "type": "static"
- }
- ],
- "@storybook/svelte": [
- {
- "source": "@storybook/svelte",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/svelte",
- "target": "@storybook/core",
- "type": "static"
- },
- {
- "source": "@storybook/svelte",
- "target": "@storybook/core-common",
- "type": "static"
- }
- ],
- "sb": [{ "source": "sb", "target": "@storybook/cli", "type": "static" }],
- "@storybook/ember": [
- {
- "source": "@storybook/ember",
- "target": "@storybook/core",
- "type": "static"
- },
- {
- "source": "@storybook/ember",
- "target": "@storybook/core-common",
- "type": "static"
- }
- ],
- "@storybook/react": [
- {
- "source": "@storybook/react",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/react",
- "target": "@storybook/core",
- "type": "static"
- },
- {
- "source": "@storybook/react",
- "target": "@storybook/core-common",
- "type": "static"
- },
- {
- "source": "@storybook/react",
- "target": "@storybook/node-logger",
- "type": "static"
- },
- {
- "source": "@storybook/react",
- "target": "@storybook/client-api",
- "type": "static"
- }
- ],
- "@storybook/core": [
- {
- "source": "@storybook/core",
- "target": "@storybook/core-client",
- "type": "static"
- },
- {
- "source": "@storybook/core",
- "target": "@storybook/core-server",
- "type": "static"
- }
- ],
- "@storybook/html": [
- {
- "source": "@storybook/html",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/html",
- "target": "@storybook/client-api",
- "type": "static"
- },
- {
- "source": "@storybook/html",
- "target": "@storybook/core",
- "type": "static"
- },
- {
- "source": "@storybook/html",
- "target": "@storybook/core-common",
- "type": "static"
- }
- ],
- "@storybook/vue3": [
- {
- "source": "@storybook/vue3",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/vue3",
- "target": "@storybook/core",
- "type": "static"
- },
- {
- "source": "@storybook/vue3",
- "target": "@storybook/core-common",
- "type": "static"
- }
- ],
- "@storybook/api": [
- {
- "source": "@storybook/api",
- "target": "@storybook/channels",
- "type": "static"
- },
- {
- "source": "@storybook/api",
- "target": "@storybook/client-logger",
- "type": "static"
- },
- {
- "source": "@storybook/api",
- "target": "@storybook/core-events",
- "type": "static"
- },
- {
- "source": "@storybook/api",
- "target": "@storybook/router",
- "type": "static"
- },
- {
- "source": "@storybook/api",
- "target": "@storybook/theming",
- "type": "static"
- }
- ],
- "@storybook/cli": [
- {
- "source": "@storybook/cli",
- "target": "@storybook/codemod",
- "type": "static"
- },
- {
- "source": "@storybook/cli",
- "target": "@storybook/core-common",
- "type": "static"
- },
- {
- "source": "@storybook/cli",
- "target": "@storybook/node-logger",
- "type": "static"
- },
- {
- "source": "@storybook/cli",
- "target": "@storybook/client-api",
- "type": "static"
- }
- ],
- "@storybook/vue": [
- {
- "source": "@storybook/vue",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/vue",
- "target": "@storybook/core",
- "type": "static"
- },
- {
- "source": "@storybook/vue",
- "target": "@storybook/core-common",
- "type": "static"
- }
- ],
- "@storybook/ui": [
- {
- "source": "@storybook/ui",
- "target": "@storybook/addons",
- "type": "static"
- },
- {
- "source": "@storybook/ui",
- "target": "@storybook/api",
- "type": "static"
- },
- {
- "source": "@storybook/ui",
- "target": "@storybook/channels",
- "type": "static"
- },
- {
- "source": "@storybook/ui",
- "target": "@storybook/client-logger",
- "type": "static"
- },
- {
- "source": "@storybook/ui",
- "target": "@storybook/components",
- "type": "static"
- },
- {
- "source": "@storybook/ui",
- "target": "@storybook/core-events",
- "type": "static"
- },
- {
- "source": "@storybook/ui",
- "target": "@storybook/router",
- "type": "static"
- },
- {
- "source": "@storybook/ui",
- "target": "@storybook/theming",
- "type": "static"
- }
- ]
- },
- "layout": { "appsDir": "apps", "libsDir": "libs" },
- "changes": { "added": [] },
- "affected": [],
- "focus": null,
- "groupByFolder": false,
- "exclude": []
-}
diff --git a/graph/client/src/assets/nx-console/environment.js b/graph/client/src/assets/nx-console/environment.js
index 652af724c0..462e504c69 100644
--- a/graph/client/src/assets/nx-console/environment.js
+++ b/graph/client/src/assets/nx-console/environment.js
@@ -10,7 +10,7 @@ window.appConfig = {
{
id: 'local',
label: 'local',
- url: 'assets/graphs/nx-examples.json',
+ url: 'assets/graphs/e2e.json',
},
],
defaultProjectGraph: 'local',
diff --git a/graph/client/src/assets/release-static/environment.js b/graph/client/src/assets/release-static/environment.js
index ad3486796f..e88d6ec6b5 100644
--- a/graph/client/src/assets/release-static/environment.js
+++ b/graph/client/src/assets/release-static/environment.js
@@ -11,7 +11,7 @@ window.appConfig = {
{
id: 'local',
label: 'local',
- url: 'assets/graphs/nx-examples.json',
+ url: 'assets/graphs/e2e.json',
},
],
defaultProjectGraph: 'local',
diff --git a/graph/client/src/assets/release/environment.js b/graph/client/src/assets/release/environment.js
index 68584fcb88..7f4a553c6a 100644
--- a/graph/client/src/assets/release/environment.js
+++ b/graph/client/src/assets/release/environment.js
@@ -10,7 +10,7 @@ window.appConfig = {
{
id: 'local',
label: 'local',
- url: 'assets/graphs/nx-examples.json',
+ url: 'assets/graphs/e2e.json',
},
],
defaultProjectGraph: 'local',
diff --git a/graph/client/src/main.tsx b/graph/client/src/main.tsx
index 5da159f5c1..c7759dc21c 100644
--- a/graph/client/src/main.tsx
+++ b/graph/client/src/main.tsx
@@ -13,9 +13,19 @@ if (window.useXstateInspect === true) {
window.externalApi = new ExternalApi();
-ReactDOM.render(
-
+ No environment could be found. Please run{' '} +
npx nx run graph-client:generate-dev-environment-js. + , + document.getElementById('app') + ); +} else { + ReactDOM.render( +