ran npm run format and npm run build

This commit is contained in:
John Wesley Walker III 2024-10-21 14:23:45 +00:00
parent c2586be5f7
commit e346bb52dd
3 changed files with 5 additions and 3 deletions

View File

@ -81190,9 +81190,10 @@ function isGhes() {
"use strict"; "use strict";
Object.defineProperty(exports, "__esModule", ({ value: true })); Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.Outputs = exports.State = exports.cliCommand = exports.lockFilePatterns = void 0; exports.Outputs = exports.State = exports.cliCommand = exports.foo = exports.lockFilePatterns = void 0;
/** NuGet lock file patterns */ /** NuGet lock file patterns */
exports.lockFilePatterns = ['packages.lock.json']; exports.lockFilePatterns = ['packages.lock.json'];
exports.foo = 'bar';
/** /**
* .NET CLI command to list local NuGet resources. * .NET CLI command to list local NuGet resources.
* @see https://docs.microsoft.com/dotnet/core/tools/dotnet-nuget-locals * @see https://docs.microsoft.com/dotnet/core/tools/dotnet-nuget-locals

3
dist/setup/index.js vendored
View File

@ -93649,9 +93649,10 @@ function isGhes() {
"use strict"; "use strict";
Object.defineProperty(exports, "__esModule", ({ value: true })); Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.Outputs = exports.State = exports.cliCommand = exports.lockFilePatterns = void 0; exports.Outputs = exports.State = exports.cliCommand = exports.foo = exports.lockFilePatterns = void 0;
/** NuGet lock file patterns */ /** NuGet lock file patterns */
exports.lockFilePatterns = ['packages.lock.json']; exports.lockFilePatterns = ['packages.lock.json'];
exports.foo = 'bar';
/** /**
* .NET CLI command to list local NuGet resources. * .NET CLI command to list local NuGet resources.
* @see https://docs.microsoft.com/dotnet/core/tools/dotnet-nuget-locals * @see https://docs.microsoft.com/dotnet/core/tools/dotnet-nuget-locals

View File

@ -1,7 +1,7 @@
/** NuGet lock file patterns */ /** NuGet lock file patterns */
export const lockFilePatterns = ['packages.lock.json']; export const lockFilePatterns = ['packages.lock.json'];
export const foo = "bar"; export const foo = 'bar';
/** /**
* .NET CLI command to list local NuGet resources. * .NET CLI command to list local NuGet resources.