File tree Expand file tree Collapse file tree
libraries/rush-lib/src/cli/actions Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33
44import type { IRequiredCommandLineStringParameter } from '@rushstack/ts-command-line' ;
55import path from 'path' ;
6+
67import { HotlinkManager } from '../../utilities/HotlinkManager' ;
78import { BaseRushAction , type IBaseRushActionOptions } from './BaseRushAction' ;
89
Original file line number Diff line number Diff line change 11// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
22// See LICENSE in the project root for license information.
33
4+ import { Async } from '@rushstack/node-core-library' ;
5+ import type { CommandLineStringListParameter } from '@rushstack/ts-command-line' ;
6+
47import type { RushCommandLineParser } from '../RushCommandLineParser' ;
58import type { RushConfigurationProject } from '../../api/RushConfigurationProject' ;
69import { BaseHotlinkPackageAction } from './BaseHotlinkPackageAction' ;
710import type { HotlinkManager } from '../../utilities/HotlinkManager' ;
811import { BRIDGE_PACKAGE_ACTION_NAME , LINK_PACKAGE_ACTION_NAME } from '../../utilities/actionNameConstants' ;
9- import type { CommandLineStringListParameter } from '@rushstack/ts-command-line' ;
1012import { RushConstants } from '../../logic/RushConstants' ;
11- import { Async } from '@rushstack/node-core-library' ;
1213
1314export class LinkPackageAction extends BaseHotlinkPackageAction {
1415 protected readonly _projectListParameter : CommandLineStringListParameter ;
You can’t perform that action at this time.
0 commit comments