diff --git a/scripts/tasks/sandbox-parts.ts b/scripts/tasks/sandbox-parts.ts index 1adb524aa12a..4f8dd85ecc46 100644 --- a/scripts/tasks/sandbox-parts.ts +++ b/scripts/tasks/sandbox-parts.ts @@ -109,9 +109,6 @@ export const install: Task['run'] = async ({ sandboxDir, key }, { link, dryRun, 'svelte-vite/default-ts', 'vue3-vite/default-js', 'vue3-vite/default-ts', - 'angular-cli/15-ts', - 'angular-cli/default-ts', - 'angular-cli/prerelease', ]; if (sandboxesNeedingWorkarounds.includes(key)) { await addWorkaroundResolutions({ cwd, dryRun, debug }); diff --git a/scripts/utils/yarn.ts b/scripts/utils/yarn.ts index 9e14f6ad9dce..6272134a755e 100644 --- a/scripts/utils/yarn.ts +++ b/scripts/utils/yarn.ts @@ -84,8 +84,6 @@ export const addWorkaroundResolutions = async ({ cwd, dryRun }: YarnOptions) => '@testing-library/dom': '^9.3.4', '@testing-library/jest-dom': '^6.5.0', '@testing-library/user-event': '^14.5.2', - // TODO: Remove this once this issue is fixed https://github.com/thednp/position-observer/issues/1 - '@thednp/shorty': '2.0.7', }; await writeJSON(packageJsonPath, packageJson, { spaces: 2 }); };