@@ -24,8 +24,6 @@ import {writeHuskyConfig} from "../husky/write";
2424import { writeCommitlintConfig } from "../commitlint/write" ;
2525import type { YarnSetVersionFailureReason } from "../yarn/set-version-stable" ;
2626import { yarnSetVersionStable } from "../yarn/set-version-stable" ;
27- import type { YarnPluginImportFailureReason } from "../yarn/plugin-import-typescript" ;
28- import { yarnPluginImportTypeScript } from "../yarn/plugin-import-typescript" ;
2927import type { SetYarnLinkerFailureReason } from "../yarn/set-linker-to-node-modules" ;
3028import { setYarnLinkerToNodeModules } from "../yarn/set-linker-to-node-modules" ;
3129import type { Project } from "./project" ;
@@ -36,7 +34,6 @@ export type InitFailureReason =
3634 | CommitFailureReason
3735 | GitInitFailureReason
3836 | YarnSetVersionFailureReason
39- | YarnPluginImportFailureReason
4037 | SetYarnLinkerFailureReason
4138 | YarnInstallFailureReason
4239 | YarnFixFailureReason ;
@@ -65,7 +62,6 @@ export default async function init(project: Project): Promise<InitResult> {
6562 . then ( async fsStage => commit ( project . path , fsStage ) )
6663 . then ( bindAsyncResultFn < InitFailureReason > ( async ( ) => gitInit ( project ) ) )
6764 . then ( bindAsyncResultFn < InitFailureReason > ( async ( ) => yarnSetVersionStable ( project ) ) )
68- . then ( bindAsyncResultFn < InitFailureReason > ( async ( ) => yarnPluginImportTypeScript ( project ) ) )
6965 . then ( bindAsyncResultFn < InitFailureReason > ( async ( ) => setYarnLinkerToNodeModules ( project ) ) )
7066 . then ( bindAsyncResultFn < InitFailureReason > ( async ( ) => yarnInstall ( project ) ) )
7167 . then ( bindAsyncResultFn < InitFailureReason > ( async ( ) => yarnFix ( project ) ) ) ;
0 commit comments