From 7efd6b2751c2047cf23cd1db7ec0e7198d015dfe Mon Sep 17 00:00:00 2001 From: Colum Ferry Date: Thu, 16 Jan 2025 21:15:16 +0000 Subject: [PATCH] chore(testing): utils package depends on typescript --- packages/rsbuild-plugin-angular/CHANGELOG.md | 2 +- testing/utils/package.json | 29 ++++++++++---------- 2 files changed, 16 insertions(+), 15 deletions(-) diff --git a/packages/rsbuild-plugin-angular/CHANGELOG.md b/packages/rsbuild-plugin-angular/CHANGELOG.md index 5c340b0..5f936f1 100644 --- a/packages/rsbuild-plugin-angular/CHANGELOG.md +++ b/packages/rsbuild-plugin-angular/CHANGELOG.md @@ -162,4 +162,4 @@ This was a version bump only for rsbuild-plugin-angular to align it with other p ### ❤️ Thank You -- Colum Ferry @Coly010 \ No newline at end of file +- Colum Ferry @Coly010 diff --git a/testing/utils/package.json b/testing/utils/package.json index 4bcd40d..0370ce9 100644 --- a/testing/utils/package.json +++ b/testing/utils/package.json @@ -1,20 +1,11 @@ { "name": "@ng-rspack/testing-utils", "version": "0.0.1", - "dependencies": { - "ts-morph": "^24.0.0" - }, - "devDependencies": { - "vite-plugin-dts": "^4.5.0" - }, + "private": true, "main": "./dist/index.js", + "module": "./dist/index.js", + "types": "./dist/index.d.ts", "typings": "./dist/index.d.ts", - "private": true, - "nx": { - "sourceRoot": "testing/utils/src", - "projectType": "library", - "name": "testing-utils" - }, "exports": { "./package.json": "./package.json", ".": { @@ -22,6 +13,16 @@ "import": "./dist/index.js" } }, - "types": "./dist/index.d.ts", - "module": "./dist/index.js" + "dependencies": { + "ts-morph": "^24.0.0", + "typescript": "5.6.3" + }, + "devDependencies": { + "vite-plugin-dts": "^4.5.0" + }, + "nx": { + "sourceRoot": "testing/utils/src", + "projectType": "library", + "name": "testing-utils" + } }