chore(repo): fix e2e tests

This commit is contained in:
Victor Savkin 2022-09-12 08:59:00 -04:00
parent 42479565e9
commit a914f78701
7 changed files with 141 additions and 143 deletions

View File

@ -502,9 +502,7 @@ describe('convert Angular CLI workspace to an Nx workspace', () => {
);
output = runCLI(`lint ${project}`);
expect(output).toContain(
`> nx run ${project}:lint [existing outputs match the cache, left as is]`
);
expect(output).toContain(`> nx run ${project}:lint [local cache]`);
expect(output).toContain('All files pass linting.');
expect(output).toContain(
`Successfully ran target lint for project ${project}`
@ -540,7 +538,7 @@ describe('convert Angular CLI workspace to an Nx workspace', () => {
output = runCLI(`build ${lib1}`);
expect(output).toContain(
`> nx run ${lib1}:build:production [existing outputs match the cache, left as is]`
`> nx run ${lib1}:build:production [local cache]`
);
expect(output).toContain(
`Successfully ran target build for project ${lib1}`
@ -556,7 +554,7 @@ describe('convert Angular CLI workspace to an Nx workspace', () => {
output = runCLI(`build ${lib2}`);
expect(output).toContain(
`> nx run ${lib2}:build:production [existing outputs match the cache, left as is]`
`> nx run ${lib2}:build:production [local cache]`
);
expect(output).toContain(
`Successfully ran target build for project ${lib2}`
@ -591,7 +589,7 @@ describe('convert Angular CLI workspace to an Nx workspace', () => {
output = runCLI(`build ${project} --outputHashing none`);
expect(output).toContain(
`> nx run ${project}:build:production --outputHashing=none [existing outputs match the cache, left as is]`
`> nx run ${project}:build:production --outputHashing=none [local cache]`
);
expect(output).toContain(
`Successfully ran target build for project ${project}`
@ -609,7 +607,7 @@ describe('convert Angular CLI workspace to an Nx workspace', () => {
output = runCLI(`build ${app1} --outputHashing none`);
expect(output).toContain(
`> nx run ${app1}:build:production --outputHashing=none [existing outputs match the cache, left as is]`
`> nx run ${app1}:build:production --outputHashing=none [local cache]`
);
expect(output).toContain(
`Successfully ran target build for project ${app1}`
@ -648,7 +646,7 @@ describe('convert Angular CLI workspace to an Nx workspace', () => {
output = runCLI(`build ${project} --outputHashing none`);
expect(output).toContain(
`> nx run ${project}:build:production --outputHashing=none [existing outputs match the cache, left as is]`
`> nx run ${project}:build:production --outputHashing=none [local cache]`
);
expect(output).toContain(
`Successfully ran target build for project ${project}`
@ -661,9 +659,7 @@ describe('convert Angular CLI workspace to an Nx workspace', () => {
checkFilesExist('dist/lib1/package.json');
output = runCLI('build lib1');
expect(output).toContain(
'> nx run lib1:build:production [existing outputs match the cache, left as is]'
);
expect(output).toContain('> nx run lib1:build:production [local cache]');
expect(output).toContain('Successfully ran target build for project lib1');
});
});

View File

@ -29,7 +29,9 @@ describe('js e2e', () => {
expect(libPackageJson.scripts.test).toBeDefined();
expect(libPackageJson.scripts.build).toBeDefined();
expect(runCLI(`test ${npmScriptsLib}`)).toContain('implement test');
expect(runCLI(`test ${npmScriptsLib}`)).toContain('match the cache');
expect(runCLI(`test ${npmScriptsLib}`)).toContain(
'existing outputs match the cache, left as is'
);
const tsconfig = readJson(`tsconfig.base.json`);
expect(tsconfig.compilerOptions.paths).toEqual({
@ -46,7 +48,7 @@ describe('js e2e', () => {
'Ran all test suites'
);
expect((await runCLIAsync(`test ${lib}`)).combinedOutput).toContain(
'match the cache'
'local cache'
);
const packageJson = readJson('package.json');
@ -114,7 +116,7 @@ describe('js e2e', () => {
'Ran all test suites'
);
expect((await runCLIAsync(`test ${parentLib}`)).combinedOutput).toContain(
'match the cache'
'local cache'
);
expect(runCLI(`build ${parentLib}`)).toContain(
@ -180,7 +182,7 @@ describe('js e2e', () => {
'Ran all test suites'
);
expect((await runCLIAsync(`test ${lib}`)).combinedOutput).toContain(
'match the cache'
'local cache'
);
expect(runCLI(`build ${lib}`)).toContain(
@ -204,7 +206,7 @@ describe('js e2e', () => {
'Ran all test suites'
);
expect((await runCLIAsync(`test ${parentLib}`)).combinedOutput).toContain(
'match the cache'
'local cache'
);
expect(runCLI(`build ${parentLib}`)).toContain(

View File

@ -76,17 +76,13 @@ describe('cache', () => {
// build individual project with caching
const individualBuildWithCache = runCLI(`build ${myapp1}`);
expect(individualBuildWithCache).toContain(
'existing outputs match the cache'
);
expect(individualBuildWithCache).toContain('local cache');
// skip caching when building individual projects
const individualBuildWithSkippedCache = runCLI(
`build ${myapp1} --skip-nx-cache`
);
expect(individualBuildWithSkippedCache).not.toContain(
'existing outputs match the cache'
);
expect(individualBuildWithSkippedCache).not.toContain('local cache');
// run lint with caching
// --------------------------------------------
@ -194,9 +190,7 @@ describe('cache', () => {
// Rerun without touching anything
const rerunWithUntouchedOutputs = runCLI(`build ${mylib}`);
expect(rerunWithUntouchedOutputs).toContain(
'existing outputs match the cache'
);
expect(rerunWithUntouchedOutputs).toContain('local cache');
const outputsWithUntouchedOutputs = listFiles('dist');
expect(outputsWithUntouchedOutputs).toContain('a.txt');
expect(outputsWithUntouchedOutputs).toContain('b.txt');
@ -210,9 +204,7 @@ describe('cache', () => {
// Rerun
const rerunWithNewUnrelatedFile = runCLI(`build ${mylib}`);
expect(rerunWithNewUnrelatedFile).toContain(
'existing outputs match the cache'
);
expect(rerunWithNewUnrelatedFile).toContain('local cache');
const outputsAfterAddingUntouchedFileAndRerunning = listFiles('dist');
expect(outputsAfterAddingUntouchedFileAndRerunning).toContain('a.txt');
expect(outputsAfterAddingUntouchedFileAndRerunning).toContain('b.txt');
@ -320,7 +312,7 @@ describe('cache', () => {
expectProjectMatchTaskCacheStatus(
actualOutput,
expectedMatchedOutputProjects,
'existing outputs match the cache'
'local cache'
);
}

View File

@ -193,6 +193,12 @@ describe('Nx Running Tests', () => {
});
expect(buildWithDaemon).toContain('Successfully ran target build');
const buildAgain = runCLI(`build ${myapp}`, {
env: { ...process.env, NX_DAEMON: 'true' },
});
expect(buildAgain).toContain('local cache');
}, 10000);
it('should build the project when within the project root', () => {

View File

@ -182,7 +182,7 @@ export function runCreateWorkspace(
cwd: e2eCwd,
// stdio: [0, 1, 2],
stdio: ['pipe', 'pipe', 'pipe'],
env: process.env,
env: { CI: 'true', ...process.env },
encoding: 'utf-8',
});
return create ? create.toString() : '';
@ -414,6 +414,7 @@ export function runCommandAsync(
{
cwd: tmpProjPath(),
env: {
CI: 'true',
...(opts.env || process.env),
FORCE_COLOR: 'false',
},
@ -441,6 +442,7 @@ export function runCommandUntil(
const p = exec(`${pm.runNx} ${command}`, {
cwd: tmpProjPath(),
env: {
CI: 'true',
...process.env,
FORCE_COLOR: 'false',
},
@ -533,7 +535,7 @@ export function runCLI(
let r = stripConsoleColors(
execSync(`${pm.runNx} ${command}`, {
cwd: opts.cwd || tmpProjPath(),
env: { ...(opts.env || process.env) },
env: { CI: 'true', ...(opts.env || process.env) },
encoding: 'utf-8',
maxBuffer: 50 * 1024 * 1024,
})

View File

@ -60,16 +60,16 @@
"@ngrx/schematics": "~14.0.0",
"@ngrx/store": "~14.0.0",
"@ngrx/store-devtools": "~14.0.0",
"@nrwl/cypress": "14.7.0-beta.1",
"@nrwl/devkit": "14.7.0-beta.1",
"@nrwl/eslint-plugin-nx": "14.7.0-beta.1",
"@nrwl/jest": "14.7.0-beta.1",
"@nrwl/js": "14.7.0-beta.1",
"@nrwl/linter": "14.7.0-beta.1",
"@nrwl/next": "14.7.0-beta.1",
"@nrwl/cypress": "14.7.4",
"@nrwl/devkit": "14.7.4",
"@nrwl/eslint-plugin-nx": "14.7.4",
"@nrwl/jest": "14.7.4",
"@nrwl/js": "14.7.4",
"@nrwl/linter": "14.7.4",
"@nrwl/next": "14.7.4",
"@nrwl/nx-cloud": "14.6.1",
"@nrwl/react": "14.7.0-beta.1",
"@nrwl/web": "14.7.0-beta.1",
"@nrwl/react": "14.7.4",
"@nrwl/web": "14.7.4",
"@parcel/watcher": "2.0.4",
"@phenomnomnominal/tsquery": "4.1.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
@ -200,7 +200,7 @@
"ng-packagr": "~14.2.0",
"ngrx-store-freeze": "0.2.4",
"node-fetch": "^2.6.7",
"nx": "14.7.0-beta.1",
"nx": "14.7.4",
"open": "^8.4.0",
"parse-markdown-links": "^1.0.4",
"parse5": "4.0.0",

204
yarn.lock
View File

@ -3634,24 +3634,24 @@
read-package-json-fast "^2.0.3"
which "^2.0.2"
"@nrwl/cli@14.7.0-beta.1":
version "14.7.0-beta.1"
resolved "https://registry.yarnpkg.com/@nrwl/cli/-/cli-14.7.0-beta.1.tgz#a36c2d66d83f9b6c4b8c566a6ceb7805879c3496"
integrity sha512-3u4O31awd7mCaRI/hmIEBPKU76fvSSVvnZPqTaZoEMiwirALC1zsBkEv9O9+ksBtpDPJK0FgOdAYpTgJ8g2DHg==
"@nrwl/cli@14.7.4":
version "14.7.4"
resolved "https://registry.yarnpkg.com/@nrwl/cli/-/cli-14.7.4.tgz#9bb3207f69cbfbb356da64eb06fb1648a1839994"
integrity sha512-MPNat54T2GvIV44QrvZDMhmyVdgnfNGfKg0kuQ0bNrlz59AwI/m2BjSo4SKQZd+sl3rFyZBr9V2DywmG58+aJQ==
dependencies:
nx "14.7.0-beta.1"
nx "14.7.4"
"@nrwl/cypress@14.7.0-beta.1":
version "14.7.0-beta.1"
resolved "https://registry.yarnpkg.com/@nrwl/cypress/-/cypress-14.7.0-beta.1.tgz#121234bc65c1f93543eb478287a05efcb6f4d4cb"
integrity sha512-xx9RsLQK98cD7Pl8FV7YrU4m9bLp/uyNUqCfP5qFveFYBh+A/KWVJ5JI2DMHkwTIMtAC8OXdwdtbWwu1S15CMA==
"@nrwl/cypress@14.7.4":
version "14.7.4"
resolved "https://registry.yarnpkg.com/@nrwl/cypress/-/cypress-14.7.4.tgz#43ac7dee617593974756d70f1c1154204121ac25"
integrity sha512-gZUhX44EudNjhof1GzD7aPM/YY9Ah14nvcVl/2B8HzsDgd1ONeR0b27guQMEOF76Nn3JRLNWGubogW4S8PD2tg==
dependencies:
"@babel/core" "^7.0.1"
"@babel/preset-env" "^7.0.0"
"@cypress/webpack-preprocessor" "^5.12.0"
"@nrwl/devkit" "14.7.0-beta.1"
"@nrwl/linter" "14.7.0-beta.1"
"@nrwl/workspace" "14.7.0-beta.1"
"@nrwl/devkit" "14.7.4"
"@nrwl/linter" "14.7.4"
"@nrwl/workspace" "14.7.4"
"@phenomnomnominal/tsquery" "4.1.1"
babel-loader "^8.0.2"
chalk "4.1.0"
@ -3666,10 +3666,10 @@
webpack "^4 || ^5"
webpack-node-externals "^3.0.0"
"@nrwl/devkit@14.7.0-beta.1":
version "14.7.0-beta.1"
resolved "https://registry.yarnpkg.com/@nrwl/devkit/-/devkit-14.7.0-beta.1.tgz#8f9a61d5d7b9df085e4d68ab8e196f1064f9a5d5"
integrity sha512-RmOJHENc5/SW+C622BNxvU+tTdu9dKqwZwFXwZrLGAq7aR3Uo9pC17vcWR/iCxsNs+5mN0ZFS9FSBrho5YtM9g==
"@nrwl/devkit@14.7.4":
version "14.7.4"
resolved "https://registry.yarnpkg.com/@nrwl/devkit/-/devkit-14.7.4.tgz#ceb98205efbfe2fa0dae4911d98f6e2baf32ec45"
integrity sha512-YtQNcx13U24VRBVGz0YhmGwjTzCizK7BimBbsJdujOrwUwGaYFELkDXTXgrSvDtqqrLHOzR70vzZJURgKcvAbA==
dependencies:
"@phenomnomnominal/tsquery" "4.1.1"
ejs "^3.1.7"
@ -3677,26 +3677,26 @@
semver "7.3.4"
tslib "^2.3.0"
"@nrwl/eslint-plugin-nx@14.7.0-beta.1":
version "14.7.0-beta.1"
resolved "https://registry.yarnpkg.com/@nrwl/eslint-plugin-nx/-/eslint-plugin-nx-14.7.0-beta.1.tgz#9f4535129984b9eacc80a59f16c322c9b46fe34f"
integrity sha512-6GBs8UlRPz0GpXk4+gpAhxFnFcaUmX1TK3Hd27ZyygJjcxa+63Jj98XPXEA3mVUBD+uYfKwGU1qOHUta02hhlQ==
"@nrwl/eslint-plugin-nx@14.7.4":
version "14.7.4"
resolved "https://registry.yarnpkg.com/@nrwl/eslint-plugin-nx/-/eslint-plugin-nx-14.7.4.tgz#76b0b1cec021548b2bc52e6c3aeb1d6ece2f2fab"
integrity sha512-9P1VNL1bDNtBfFQtVq84WkJaslAZxuvdog9TY87X1srmCTaW2sFqrXPWJvLSTD5XiISXrscmvbpP4lWrtcSglw==
dependencies:
"@nrwl/devkit" "14.7.0-beta.1"
"@nrwl/workspace" "14.7.0-beta.1"
"@nrwl/devkit" "14.7.4"
"@nrwl/workspace" "14.7.4"
"@typescript-eslint/utils" "~5.33.1"
chalk "4.1.0"
confusing-browser-globals "^1.0.9"
semver "7.3.4"
"@nrwl/jest@14.7.0-beta.1":
version "14.7.0-beta.1"
resolved "https://registry.yarnpkg.com/@nrwl/jest/-/jest-14.7.0-beta.1.tgz#68e1d82ce19041f4365cf510b43ea63fc6b74059"
integrity sha512-4fTfTYjR9tjcBwepbjLMqY4LnYVP91mDurGEyqntD/rBQrv60n2DooayqB2b/KkM/x3yCMZ4Yn75f29FyhcB3w==
"@nrwl/jest@14.7.4":
version "14.7.4"
resolved "https://registry.yarnpkg.com/@nrwl/jest/-/jest-14.7.4.tgz#3d9d469d959d3c1d368e0991ae7ee7788b7437f0"
integrity sha512-0chIy4EVvYARJaFYAisoxP4kvnV6OTh8aOwsmcQcEAiq1UjxGOgaUicNVUqeWXwF4Dx20dG/f17H5yASv5vFbw==
dependencies:
"@jest/reporters" "28.1.1"
"@jest/test-result" "28.1.1"
"@nrwl/devkit" "14.7.0-beta.1"
"@nrwl/devkit" "14.7.4"
"@phenomnomnominal/tsquery" "4.1.1"
chalk "4.1.0"
dotenv "~10.0.0"
@ -3708,15 +3708,15 @@
rxjs "^6.5.4"
tslib "^2.3.0"
"@nrwl/js@14.7.0-beta.1":
version "14.7.0-beta.1"
resolved "https://registry.yarnpkg.com/@nrwl/js/-/js-14.7.0-beta.1.tgz#784aefb25273907f525f50f76ac6c4d5e22a15f3"
integrity sha512-JpJlXco5B416sGoqP2ephyAfvp5JZChHfiSjrCykVK7yoYC1BFn4Z6MV6THgPNFL6rDeP/wY+ncBPBaXK4e9fQ==
"@nrwl/js@14.7.4":
version "14.7.4"
resolved "https://registry.yarnpkg.com/@nrwl/js/-/js-14.7.4.tgz#e47264ef53bf573c21cd243ebf983d5d05a03d16"
integrity sha512-CrRiLaxFRPwhA6YWBiJmpJOHkoVlXkm5Qcxau+oxMP79dmuMk06pQE93T012EyU1exeZM/N5hRgI7lznTzbYNQ==
dependencies:
"@nrwl/devkit" "14.7.0-beta.1"
"@nrwl/jest" "14.7.0-beta.1"
"@nrwl/linter" "14.7.0-beta.1"
"@nrwl/workspace" "14.7.0-beta.1"
"@nrwl/devkit" "14.7.4"
"@nrwl/jest" "14.7.4"
"@nrwl/linter" "14.7.4"
"@nrwl/workspace" "14.7.4"
"@parcel/watcher" "2.0.4"
chalk "4.1.0"
fast-glob "3.2.7"
@ -3727,31 +3727,31 @@
source-map-support "0.5.19"
tree-kill "1.2.2"
"@nrwl/linter@14.7.0-beta.1":
version "14.7.0-beta.1"
resolved "https://registry.yarnpkg.com/@nrwl/linter/-/linter-14.7.0-beta.1.tgz#5a81bd07d5395b18ac3d388aa51184a39f02b72e"
integrity sha512-OGlnQUADjMIxrWuCR9EF7pu9yQt87PW+/NWg6wGDpfQDVrxxpRSa0PXLUNYYD9BnL7qkBmMskPAayxpETZ3yfg==
"@nrwl/linter@14.7.4":
version "14.7.4"
resolved "https://registry.yarnpkg.com/@nrwl/linter/-/linter-14.7.4.tgz#c61f2147fc5cf636d7298c58654425320110afaf"
integrity sha512-jCQJr17W18djaLuiNoUX7sCHgDzw/UjoJbHF/dCyMWpJYAe/BdK34rG3PZBA50sRlhImmdA9W4yKhIwk4S/6ww==
dependencies:
"@nrwl/devkit" "14.7.0-beta.1"
"@nrwl/jest" "14.7.0-beta.1"
"@nrwl/devkit" "14.7.4"
"@nrwl/jest" "14.7.4"
"@phenomnomnominal/tsquery" "4.1.1"
nx "14.7.0-beta.1"
nx "14.7.4"
tmp "~0.2.1"
tslib "^2.3.0"
"@nrwl/next@14.7.0-beta.1":
version "14.7.0-beta.1"
resolved "https://registry.yarnpkg.com/@nrwl/next/-/next-14.7.0-beta.1.tgz#6bc3d74786cbb8bbb37d72498f80ef91391bdb9e"
integrity sha512-B3J3xxQUfXTric6owKtnF1as40eBMGchwryIzK0j4VEtcaTWkFjrrUG2fobAE/7c3IVwMigjXiP/q5vKo5hsqw==
"@nrwl/next@14.7.4":
version "14.7.4"
resolved "https://registry.yarnpkg.com/@nrwl/next/-/next-14.7.4.tgz#53539f148052ac26848d810332b454764d5ceb40"
integrity sha512-VjBzHwTdfhOeRoEhmkC/3b+LwzSqikwKNFGV268HpdipbbkXRBBBUSKPjZXIE2GiwyMdHVJlVZwK2NxVXyu2Xw==
dependencies:
"@babel/plugin-proposal-decorators" "^7.14.5"
"@nrwl/cypress" "14.7.0-beta.1"
"@nrwl/devkit" "14.7.0-beta.1"
"@nrwl/jest" "14.7.0-beta.1"
"@nrwl/linter" "14.7.0-beta.1"
"@nrwl/react" "14.7.0-beta.1"
"@nrwl/web" "14.7.0-beta.1"
"@nrwl/workspace" "14.7.0-beta.1"
"@nrwl/cypress" "14.7.4"
"@nrwl/devkit" "14.7.4"
"@nrwl/jest" "14.7.4"
"@nrwl/linter" "14.7.4"
"@nrwl/react" "14.7.4"
"@nrwl/web" "14.7.4"
"@nrwl/workspace" "14.7.4"
"@svgr/webpack" "^6.1.2"
chalk "4.1.0"
dotenv "~10.0.0"
@ -3777,21 +3777,21 @@
tar "6.1.11"
yargs-parser ">=21.0.1"
"@nrwl/react@14.7.0-beta.1":
version "14.7.0-beta.1"
resolved "https://registry.yarnpkg.com/@nrwl/react/-/react-14.7.0-beta.1.tgz#26c5048e6c85da104934dd4ae4cfebbd37e3116b"
integrity sha512-pzHXxLj8v7PwTn+ZtX8OuVIZRAGQOMYerb0cCfiRvio8jaGYrUVSYzNBzu12ljQCYuu9ApStfaLYQ6JEoHBfKg==
"@nrwl/react@14.7.4":
version "14.7.4"
resolved "https://registry.yarnpkg.com/@nrwl/react/-/react-14.7.4.tgz#f0566cf55ee617774d9ddd5095ad59ea0c0a8441"
integrity sha512-7afF9b2DmMiXENZ65lPVxgYgCA2CTXgG3ZfA2er5bLTD74WVb1+ft0qDsXvoJGgAzMHc+q/rlobATluR6VhgeA==
dependencies:
"@babel/core" "^7.15.0"
"@babel/preset-react" "^7.14.5"
"@nrwl/cypress" "14.7.0-beta.1"
"@nrwl/devkit" "14.7.0-beta.1"
"@nrwl/jest" "14.7.0-beta.1"
"@nrwl/js" "14.7.0-beta.1"
"@nrwl/linter" "14.7.0-beta.1"
"@nrwl/storybook" "14.7.0-beta.1"
"@nrwl/web" "14.7.0-beta.1"
"@nrwl/workspace" "14.7.0-beta.1"
"@nrwl/cypress" "14.7.4"
"@nrwl/devkit" "14.7.4"
"@nrwl/jest" "14.7.4"
"@nrwl/js" "14.7.4"
"@nrwl/linter" "14.7.4"
"@nrwl/storybook" "14.7.4"
"@nrwl/web" "14.7.4"
"@nrwl/workspace" "14.7.4"
"@pmmmwh/react-refresh-webpack-plugin" "^0.5.7"
"@svgr/webpack" "^6.1.2"
chalk "4.1.0"
@ -3806,32 +3806,32 @@
webpack "^5.58.1"
webpack-merge "^5.8.0"
"@nrwl/storybook@14.7.0-beta.1":
version "14.7.0-beta.1"
resolved "https://registry.yarnpkg.com/@nrwl/storybook/-/storybook-14.7.0-beta.1.tgz#34361171a03a600a3d7131dbe2a40737b57ff5fe"
integrity sha512-3ha2xy8Jhh4Ob8uFJ9FgJgiz/73hjmrdsN+D3o19wYroEt+g5DorpHcLRntZGfwjYYDwfG97Sx31MwQ9K5uNcQ==
"@nrwl/storybook@14.7.4":
version "14.7.4"
resolved "https://registry.yarnpkg.com/@nrwl/storybook/-/storybook-14.7.4.tgz#06415ee6b055e45ef104862be287a92e1ba3dad5"
integrity sha512-gUtkAjiAkJfL4mT9tcnlb0d04sVbgmtkaAD0rZ5slfegZ7uzLp+e2k3FEnJMym76l7RdSWIhICQjgBm6zT1fIQ==
dependencies:
"@nrwl/cypress" "14.7.0-beta.1"
"@nrwl/devkit" "14.7.0-beta.1"
"@nrwl/linter" "14.7.0-beta.1"
"@nrwl/workspace" "14.7.0-beta.1"
"@nrwl/cypress" "14.7.4"
"@nrwl/devkit" "14.7.4"
"@nrwl/linter" "14.7.4"
"@nrwl/workspace" "14.7.4"
core-js "^3.6.5"
dotenv "~10.0.0"
semver "7.3.4"
ts-loader "^9.3.1"
tsconfig-paths-webpack-plugin "3.5.2"
"@nrwl/tao@14.7.0-beta.1":
version "14.7.0-beta.1"
resolved "https://registry.yarnpkg.com/@nrwl/tao/-/tao-14.7.0-beta.1.tgz#fa27553d952852dfff612b3b4d64e10239c684d7"
integrity sha512-V9mxtmGMNQmJYkpdncMuiAZYJxAWFPQu8eY1tf9IUVvUZ/59uhjxr3sWX/9CoAwWe3qvctwZUXf9Uk/6NtoiGw==
"@nrwl/tao@14.7.4":
version "14.7.4"
resolved "https://registry.yarnpkg.com/@nrwl/tao/-/tao-14.7.4.tgz#fcf004a8e0174df3c6161a389c6c0aa2f8b9745f"
integrity sha512-ZprEakBsS+SaVagER59xeC7Z1Q5WAx3vN65BJxsqKjs99T4v0fd2BSlAKyhRD4BcLryRykL+gU42EkvoC5YrEw==
dependencies:
nx "14.7.0-beta.1"
nx "14.7.4"
"@nrwl/web@14.7.0-beta.1":
version "14.7.0-beta.1"
resolved "https://registry.yarnpkg.com/@nrwl/web/-/web-14.7.0-beta.1.tgz#569fbf60ef7a2231693b6742d2bf6c5a64fcf959"
integrity sha512-yVWWTsCqceNMIhqnpQ0LvtmOb3SSP3+8EZyNecbC5QRLJfChblqB49WRnb04JMuz2mSkvJIT/rTcM7n0BVydTg==
"@nrwl/web@14.7.4":
version "14.7.4"
resolved "https://registry.yarnpkg.com/@nrwl/web/-/web-14.7.4.tgz#b47ea3198945f086ed0b6e9ce7ff1c0afc1f9dcb"
integrity sha512-P5vuMHv0w+TKbW5Ue8jWB1izLh+6pcldW7o8PsAfo2qOOjvV36zbaih8w3QIpwsAq5wKJMY7K3QOHvBFKVPC+A==
dependencies:
"@babel/core" "^7.15.0"
"@babel/plugin-proposal-class-properties" "^7.14.5"
@ -3841,12 +3841,12 @@
"@babel/preset-env" "^7.15.0"
"@babel/preset-typescript" "^7.15.0"
"@babel/runtime" "^7.14.8"
"@nrwl/cypress" "14.7.0-beta.1"
"@nrwl/devkit" "14.7.0-beta.1"
"@nrwl/jest" "14.7.0-beta.1"
"@nrwl/js" "14.7.0-beta.1"
"@nrwl/linter" "14.7.0-beta.1"
"@nrwl/workspace" "14.7.0-beta.1"
"@nrwl/cypress" "14.7.4"
"@nrwl/devkit" "14.7.4"
"@nrwl/jest" "14.7.4"
"@nrwl/js" "14.7.4"
"@nrwl/linter" "14.7.4"
"@nrwl/workspace" "14.7.4"
"@pmmmwh/react-refresh-webpack-plugin" "^0.5.7"
"@rollup/plugin-babel" "^5.3.0"
"@rollup/plugin-commonjs" "^20.0.0"
@ -3913,14 +3913,14 @@
webpack-sources "^3.2.3"
webpack-subresource-integrity "^5.1.0"
"@nrwl/workspace@14.7.0-beta.1":
version "14.7.0-beta.1"
resolved "https://registry.yarnpkg.com/@nrwl/workspace/-/workspace-14.7.0-beta.1.tgz#5bc737e606a8c7a23a934bf15e5a3b3c04f71ee2"
integrity sha512-1HXXJfognwQhJjtu7DRBqj6jpevstMl2MxihBt1d9IWlV4V7p/GQx6i/bmUCKlb0tGCgknOMAzSpV3KskZKSzg==
"@nrwl/workspace@14.7.4":
version "14.7.4"
resolved "https://registry.yarnpkg.com/@nrwl/workspace/-/workspace-14.7.4.tgz#13bcc37f1916147a85fd69399eb3fe28333bbb44"
integrity sha512-VvcRZrAUbNE3Ub/W+oFYD2mW9enqCt3YVaMQnygqoH5gnMGoZTthKrlU4K+hA+GP8ffBDTk2LXseLch9caifOg==
dependencies:
"@nrwl/devkit" "14.7.0-beta.1"
"@nrwl/jest" "14.7.0-beta.1"
"@nrwl/linter" "14.7.0-beta.1"
"@nrwl/devkit" "14.7.4"
"@nrwl/jest" "14.7.4"
"@nrwl/linter" "14.7.4"
"@parcel/watcher" "2.0.4"
chalk "4.1.0"
chokidar "^3.5.1"
@ -3935,7 +3935,7 @@
ignore "^5.0.4"
minimatch "3.0.5"
npm-run-path "^4.0.1"
nx "14.7.0-beta.1"
nx "14.7.4"
open "^8.4.0"
rxjs "^6.5.4"
semver "7.3.4"
@ -17362,13 +17362,13 @@ nwsapi@^2.2.0:
resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.1.tgz#10a9f268fbf4c461249ebcfe38e359aa36e2577c"
integrity sha512-JYOWTeFoS0Z93587vRJgASD5Ut11fYl5NyihP3KrYBvMe1FRRs6RN7m20SA/16GM4P6hTnZjT+UmDOt38UeXNg==
nx@14.7.0-beta.1:
version "14.7.0-beta.1"
resolved "https://registry.yarnpkg.com/nx/-/nx-14.7.0-beta.1.tgz#bdaf9808147e56021fb14326feb6b6d0794c8a7d"
integrity sha512-w38pFX9gh7zSLMMfr3DmfphkCaQDFsMpcbG3NEzEF+6TkYtKHkiyHlqawNtRjPBbnvMOA/ttslzXY7MMQjYXeg==
nx@14.7.4:
version "14.7.4"
resolved "https://registry.yarnpkg.com/nx/-/nx-14.7.4.tgz#198be0ae60f504c57b1b4cab0513e2e282acc72c"
integrity sha512-GG6qOw+Td34jd0ItKWmVtOQRKUPOsagGXXFfa1VSUt3iz1V7BXS1ovViQDlSnOyZ3GEWuKxtDU+1C0hIE6UCsA==
dependencies:
"@nrwl/cli" "14.7.0-beta.1"
"@nrwl/tao" "14.7.0-beta.1"
"@nrwl/cli" "14.7.4"
"@nrwl/tao" "14.7.4"
"@parcel/watcher" "2.0.4"
chalk "4.1.0"
chokidar "^3.5.1"