@uipath/solution-packager 1.201.0-preview.121 → 1.201.0-preview.123
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +5 -1
- package/dist/node.js +5 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -463,6 +463,7 @@ class OptionsBuilder {
|
|
|
463
463
|
projectPath,
|
|
464
464
|
excludeConfiguredSources: solutionOptions.excludeConfiguredSources ?? false,
|
|
465
465
|
nuGetSourcesConfigPath: solutionOptions.nuGetSourcesConfigPath,
|
|
466
|
+
feedFolder: solutionOptions.feedFolder,
|
|
466
467
|
logLevel: solutionOptions.logLevel,
|
|
467
468
|
skipAnalyze: solutionOptions.validateOptions.skipAnalyze,
|
|
468
469
|
skipValidate: solutionOptions.validateOptions.skipValidate,
|
|
@@ -484,6 +485,7 @@ class OptionsBuilder {
|
|
|
484
485
|
projectPath: this.resolveProjectPath(solutionOptions, project),
|
|
485
486
|
excludeConfiguredSources: solutionOptions.excludeConfiguredSources ?? false,
|
|
486
487
|
nuGetSourcesConfigPath: solutionOptions.nuGetSourcesConfigPath,
|
|
488
|
+
feedFolder: solutionOptions.feedFolder,
|
|
487
489
|
logLevel: solutionOptions.logLevel,
|
|
488
490
|
skipAnalyze: solutionOptions.validateOptions.skipAnalyze,
|
|
489
491
|
skipValidate: solutionOptions.validateOptions.skipValidate,
|
|
@@ -501,6 +503,7 @@ class OptionsBuilder {
|
|
|
501
503
|
projectPath: this.resolveProjectPath(solutionOptions, project),
|
|
502
504
|
excludeConfiguredSources: solutionOptions.excludeConfiguredSources ?? false,
|
|
503
505
|
nuGetSourcesConfigPath: solutionOptions.nuGetSourcesConfigPath,
|
|
506
|
+
feedFolder: solutionOptions.feedFolder,
|
|
504
507
|
logLevel: solutionOptions.logLevel,
|
|
505
508
|
outputPath: await this.buildProjectOutputPath(solutionOptions.outputPath, project)
|
|
506
509
|
};
|
|
@@ -510,6 +513,7 @@ class OptionsBuilder {
|
|
|
510
513
|
projectPath: this.resolveProjectPath(solutionOptions, project),
|
|
511
514
|
excludeConfiguredSources: solutionOptions.excludeConfiguredSources ?? false,
|
|
512
515
|
nuGetSourcesConfigPath: solutionOptions.nuGetSourcesConfigPath,
|
|
516
|
+
feedFolder: solutionOptions.feedFolder,
|
|
513
517
|
logLevel: solutionOptions.logLevel,
|
|
514
518
|
dryRun: solutionOptions.cleanupOptions.dryRun,
|
|
515
519
|
skipImports: solutionOptions.cleanupOptions.skipImports
|
|
@@ -1380,4 +1384,4 @@ export {
|
|
|
1380
1384
|
BuildConfiguration2 as BuildConfiguration
|
|
1381
1385
|
};
|
|
1382
1386
|
|
|
1383
|
-
//# debugId=
|
|
1387
|
+
//# debugId=A9816D586CADAC3A64756E2164756E21
|
package/dist/node.js
CHANGED
|
@@ -492,6 +492,7 @@ class OptionsBuilder {
|
|
|
492
492
|
projectPath,
|
|
493
493
|
excludeConfiguredSources: solutionOptions.excludeConfiguredSources ?? false,
|
|
494
494
|
nuGetSourcesConfigPath: solutionOptions.nuGetSourcesConfigPath,
|
|
495
|
+
feedFolder: solutionOptions.feedFolder,
|
|
495
496
|
logLevel: solutionOptions.logLevel,
|
|
496
497
|
skipAnalyze: solutionOptions.validateOptions.skipAnalyze,
|
|
497
498
|
skipValidate: solutionOptions.validateOptions.skipValidate,
|
|
@@ -513,6 +514,7 @@ class OptionsBuilder {
|
|
|
513
514
|
projectPath: this.resolveProjectPath(solutionOptions, project),
|
|
514
515
|
excludeConfiguredSources: solutionOptions.excludeConfiguredSources ?? false,
|
|
515
516
|
nuGetSourcesConfigPath: solutionOptions.nuGetSourcesConfigPath,
|
|
517
|
+
feedFolder: solutionOptions.feedFolder,
|
|
516
518
|
logLevel: solutionOptions.logLevel,
|
|
517
519
|
skipAnalyze: solutionOptions.validateOptions.skipAnalyze,
|
|
518
520
|
skipValidate: solutionOptions.validateOptions.skipValidate,
|
|
@@ -530,6 +532,7 @@ class OptionsBuilder {
|
|
|
530
532
|
projectPath: this.resolveProjectPath(solutionOptions, project),
|
|
531
533
|
excludeConfiguredSources: solutionOptions.excludeConfiguredSources ?? false,
|
|
532
534
|
nuGetSourcesConfigPath: solutionOptions.nuGetSourcesConfigPath,
|
|
535
|
+
feedFolder: solutionOptions.feedFolder,
|
|
533
536
|
logLevel: solutionOptions.logLevel,
|
|
534
537
|
outputPath: await this.buildProjectOutputPath(solutionOptions.outputPath, project)
|
|
535
538
|
};
|
|
@@ -539,6 +542,7 @@ class OptionsBuilder {
|
|
|
539
542
|
projectPath: this.resolveProjectPath(solutionOptions, project),
|
|
540
543
|
excludeConfiguredSources: solutionOptions.excludeConfiguredSources ?? false,
|
|
541
544
|
nuGetSourcesConfigPath: solutionOptions.nuGetSourcesConfigPath,
|
|
545
|
+
feedFolder: solutionOptions.feedFolder,
|
|
542
546
|
logLevel: solutionOptions.logLevel,
|
|
543
547
|
dryRun: solutionOptions.cleanupOptions.dryRun,
|
|
544
548
|
skipImports: solutionOptions.cleanupOptions.skipImports
|
|
@@ -1381,4 +1385,4 @@ export {
|
|
|
1381
1385
|
RulesConfigFileType2 as RulesConfigFileType
|
|
1382
1386
|
};
|
|
1383
1387
|
|
|
1384
|
-
//# debugId=
|
|
1388
|
+
//# debugId=A11A85DD9EF7E29364756E2164756E21
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/solution-packager",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "1.201.0-preview.
|
|
4
|
+
"version": "1.201.0-preview.123",
|
|
5
5
|
"description": "UiPath Solution Packager - core library for packing UiPath solutions",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.js",
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"peerDependencies": {
|
|
35
35
|
"fflate": "^0.8.2"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "0b5e086775b5974d9df45fc98f96f868bb3dda61"
|
|
38
38
|
}
|