mirror of
https://github.com/azure/login.git
synced 2026-03-15 09:20:56 -04:00
added paths in tsconfig.json
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
import * as core from '@actions/core';
|
||||
|
||||
import Utils from './Utilities/Utils';
|
||||
import PowerShellToolRunner from './Utilities/PowerShellToolRunner';
|
||||
import ScriptBuilder from './Utilities/ScriptBuilder';
|
||||
import Constants from './Constants';
|
||||
import Utils from 'PowerShell/Utilities/Utils';
|
||||
import PowerShellToolRunner from 'PowerShell/Utilities/PowerShellToolRunner';
|
||||
import ScriptBuilder from 'PowerShell/Utilities/ScriptBuilder';
|
||||
import Constants from 'PowerShell/Constants';
|
||||
|
||||
export class ServicePrincipalLogin implements IAzurePowerShellSession {
|
||||
export default class ServicePrincipalLogin implements IAzurePowerShellSession {
|
||||
static readonly environment: string = Constants.environment;
|
||||
static readonly scopeLevel: string = Constants.scopeLevel;
|
||||
static readonly scheme: string = Constants.scheme;
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
import * as os from 'os';
|
||||
import * as exec from '@actions/exec';
|
||||
import * as io from '@actions/io';
|
||||
|
||||
import Constants from '../Constants';
|
||||
import PowerShellToolRunner from './PowerShellToolRunner';
|
||||
import Constants from 'PowerShell/Constants';
|
||||
import PowerShellToolRunner from 'PowerShell/Utilities/PowerShellToolRunner';
|
||||
|
||||
export default class Utils {
|
||||
static async getLatestModule(moduleName: string): Promise<string> {
|
||||
|
||||
Reference in New Issue
Block a user