Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(testing-utils): setup testing utils project #3

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ jobs:
# - run: npx nx-cloud record -- echo Hello World
# Nx Affected runs only tasks affected by the changes in this PR/commit. Learn more: https://nx.dev/ci/features/affected
- run: pnpm nx-cloud record -- pnpm check-commit
- run: pnpm exec nx affected -t lint test build e2e-ci
- run: pnpm exec nx affected -t lint test build unit-test e2e-ci
6 changes: 3 additions & 3 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@
{
"plugin": "@nx/vite/plugin",
"options": {
"testTargetName": "integration"
"testTargetName": "unit-test"
},
"include": ["integration-testing/**"]
"include": ["packages/**", "testing/**"]
},
{
"plugin": "@nx/playwright/plugin",
Expand All @@ -96,7 +96,7 @@
},
{
"plugin": "@nx/js/typescript",
"include": ["packages/**"],
"include": ["packages/**", "testing/*"],
"options": {
"typecheck": {
"targetName": "typecheck"
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@
"typescript-eslint": "^8.13.0",
"verdaccio": "^5.0.4",
"vite": "^5.0.0",
"vite-plugin-dts": "^4.5.0",
"vitest": "^1.3.1",
"webpack-merge": "^6.0.1"
},
Expand Down
6 changes: 1 addition & 5 deletions packages/build/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,14 @@
"sass-embedded": "^1.79.3",
"express": "4.21.1",
"http-proxy-middleware": "3.0.3",
"ts-morph": "^24.0.0",
"tslib": "^2.3.0",
"typescript": "5.6.3"
"tslib": "^2.3.0"
},
"devDependencies": {
"@types/express": "^4.17.21"
},
"peerDependencies": {
"@angular/compiler-cli": ">=19.0.0 <20.0.0",
"@angular-devkit/build-angular": ">=19.0.0 <20.0.0",
"@rspack/core": ">=1.0.5 <2.0.0",
"@rsbuild/core": ">=1.0.5 <2.0.0",
"@angular/build": ">=18.0.0 <20.0.0",
"sass": "^1.79.3",
"@module-federation/enhanced": "^0.8.5",
Expand Down
1 change: 0 additions & 1 deletion packages/build/src/lib/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
export * as rspack from './rspack';
export * as rsbuild from './rsbuild';
1 change: 0 additions & 1 deletion packages/build/src/lib/rsbuild/index.d.ts

This file was deleted.

1 change: 0 additions & 1 deletion packages/build/src/lib/rsbuild/index.ts

This file was deleted.

44 changes: 0 additions & 44 deletions packages/build/src/lib/rsbuild/plugin/compilation/augments.d.ts

This file was deleted.

136 changes: 0 additions & 136 deletions packages/build/src/lib/rsbuild/plugin/compilation/augments.ts

This file was deleted.

This file was deleted.

Loading
Loading