Skip to content

Commit

Permalink
chore: after migration adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
Bielik20 committed Feb 8, 2024
1 parent 9f34b0f commit debbc60
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 16 deletions.
2 changes: 1 addition & 1 deletion packages/nx-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"generators": "./generators.json",
"executors": "./executors.json",
"dependencies": {
"@nx/devkit": "17.2.5",
"@nx/devkit": "18.0.3",
"colorette": "^2.0.20",
"flat": "^5.0.2",
"tslib": "^2.4.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function createTestProject() {
});

execSync(
`npx --yes create-nx-workspace@latest ${projectName} --preset apps --no-nxCloud --no-interactive`,
`npx --yes create-nx-workspace@latest ${projectName} --preset apps --nxCloud skip --no-interactive`,
{
cwd: dirname(projectDirectory),
stdio: 'inherit',
Expand Down
6 changes: 3 additions & 3 deletions packages/nx-jest-playwright/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
"dependencies": {
"@jest/types": "29.6.3",
"@ns3/nx-core": "*",
"@nx/devkit": "17.2.5",
"@nx/devkit": "18.0.3",
"jest": "29.4.3",
"dotenv": "16.0.3",
"@nx/jest": "17.2.5",
"@nx/jest": "18.0.3",
"tslib": "^2.4.0",
"@nx/eslint": "17.2.5"
"@nx/eslint": "18.0.3"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default async function jestPlaywrightInitGenerator(
return json;
});

const jestTask = await jestInitGenerator(host, { babelJest: false });
const jestTask = await jestInitGenerator(host, {});

const installTask = addDependenciesToPackageJson(
host,
Expand Down
2 changes: 1 addition & 1 deletion packages/nx-npm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"executors": "./executors.json",
"dependencies": {
"@ns3/nx-core": "*",
"@nx/devkit": "17.2.5",
"@nx/devkit": "18.0.3",
"fs-extra": "^11.1.1",
"tslib": "^2.4.0"
}
Expand Down
6 changes: 3 additions & 3 deletions packages/nx-playwright/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
"dependencies": {
"@ns3/nx-core": "*",
"execa": "^5.0.0",
"@nx/devkit": "17.2.5",
"@nx/js": "17.2.5",
"@nx/devkit": "18.0.3",
"@nx/js": "18.0.3",
"tslib": "^2.4.0",
"dotenv": "16.0.3",
"@nx/eslint": "17.2.5"
"@nx/eslint": "18.0.3"
}
}
8 changes: 4 additions & 4 deletions packages/nx-serverless/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@
"bestzip": "^2.2.1",
"glob": "^10.3.4",
"execa": "^5.0.0",
"@nx/devkit": "17.2.5",
"@nx/jest": "17.2.5",
"@nx/devkit": "18.0.3",
"@nx/jest": "18.0.3",
"tslib": "^2.4.0",
"dotenv": "16.0.3",
"@nx/webpack": "17.2.5",
"@nx/webpack": "18.0.3",
"webpack": "5.89.0",
"@nx/eslint": "17.2.5"
"@nx/eslint": "18.0.3"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ describe('serverless generator', () => {
},
lint: {
executor: '@nx/eslint:lint',
outputs: ['{options.outputFile}'],
options: {
lintFilePatterns: ['apps/sample/src/**/*.{ts,tsx,js,jsx}'],
},
Expand Down Expand Up @@ -173,7 +172,6 @@ describe('serverless generator', () => {
},
lint: {
executor: '@nx/eslint:lint',
outputs: ['{options.outputFile}'],
options: {
lintFilePatterns: ['apps/sample/src/**/*.{ts,tsx,js,jsx}'],
},
Expand Down

0 comments on commit debbc60

Please sign in to comment.