@uipath/project-packager 1.201.0-preview.122 → 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/browser.js +7 -1
- package/dist/index.js +8 -2
- package/dist/node.js +8 -2
- package/dist/src/models/packager-parameters.d.ts +6 -0
- package/package.json +2 -2
package/dist/browser.js
CHANGED
|
@@ -23414,6 +23414,7 @@ class PackagerParameters {
|
|
|
23414
23414
|
targetFramework;
|
|
23415
23415
|
excludeConfiguredSources = false;
|
|
23416
23416
|
nuGetSourcesConfigPath;
|
|
23417
|
+
feedFolder;
|
|
23417
23418
|
detailedLogPath;
|
|
23418
23419
|
connection;
|
|
23419
23420
|
workflowCompilerVersion;
|
|
@@ -23831,6 +23832,7 @@ class ProjectPackOptionsBuilder {
|
|
|
23831
23832
|
projectPath: project.projectPath,
|
|
23832
23833
|
excludeConfiguredSources: parameters.excludeConfiguredSources ?? false,
|
|
23833
23834
|
nuGetSourcesConfigPath: parameters.nuGetSourcesConfigPath,
|
|
23835
|
+
feedFolder: parameters.feedFolder,
|
|
23834
23836
|
logLevel: parameters.logLevel,
|
|
23835
23837
|
skipAnalyze: parameters.validateOptions.skipAnalyze,
|
|
23836
23838
|
skipValidate: parameters.validateOptions.skipValidate,
|
|
@@ -24021,6 +24023,7 @@ class ProjectPackager {
|
|
|
24021
24023
|
projectPath: loadedProject.projectPath,
|
|
24022
24024
|
excludeConfiguredSources: options.excludeConfiguredSources ?? false,
|
|
24023
24025
|
nuGetSourcesConfigPath: options.nuGetSourcesConfigPath,
|
|
24026
|
+
feedFolder: options.feedFolder,
|
|
24024
24027
|
logLevel: options.logLevel,
|
|
24025
24028
|
outputPath: options.outputPath
|
|
24026
24029
|
};
|
|
@@ -24039,6 +24042,7 @@ class ProjectPackager {
|
|
|
24039
24042
|
projectPath: loadedProject.projectPath,
|
|
24040
24043
|
excludeConfiguredSources: options.excludeConfiguredSources ?? false,
|
|
24041
24044
|
nuGetSourcesConfigPath: options.nuGetSourcesConfigPath,
|
|
24045
|
+
feedFolder: options.feedFolder,
|
|
24042
24046
|
logLevel: options.logLevel,
|
|
24043
24047
|
skipAnalyze: options.validateOptions.skipAnalyze,
|
|
24044
24048
|
skipValidate: options.validateOptions.skipValidate,
|
|
@@ -24065,6 +24069,7 @@ class ProjectPackager {
|
|
|
24065
24069
|
projectPath: loadedProject.projectPath,
|
|
24066
24070
|
excludeConfiguredSources: options.excludeConfiguredSources ?? false,
|
|
24067
24071
|
nuGetSourcesConfigPath: options.nuGetSourcesConfigPath,
|
|
24072
|
+
feedFolder: options.feedFolder,
|
|
24068
24073
|
logLevel: options.logLevel,
|
|
24069
24074
|
skipAnalyze: options.validateOptions.skipAnalyze,
|
|
24070
24075
|
skipValidate: options.validateOptions.skipValidate,
|
|
@@ -24130,6 +24135,7 @@ class ProjectPackager {
|
|
|
24130
24135
|
projectPath: loadedProject.projectPath,
|
|
24131
24136
|
excludeConfiguredSources: options.excludeConfiguredSources ?? false,
|
|
24132
24137
|
nuGetSourcesConfigPath: options.nuGetSourcesConfigPath,
|
|
24138
|
+
feedFolder: options.feedFolder,
|
|
24133
24139
|
logLevel: options.logLevel,
|
|
24134
24140
|
dryRun: options.dryRun ?? false,
|
|
24135
24141
|
skipImports: options.skipImports ?? false
|
|
@@ -24260,4 +24266,4 @@ export {
|
|
|
24260
24266
|
BaseBrowserPackagerFactory
|
|
24261
24267
|
};
|
|
24262
24268
|
|
|
24263
|
-
//# debugId=
|
|
24269
|
+
//# debugId=D97EC99DEE20501564756E2164756E21
|
package/dist/index.js
CHANGED
|
@@ -23264,6 +23264,7 @@ class PackagerParameters {
|
|
|
23264
23264
|
targetFramework;
|
|
23265
23265
|
excludeConfiguredSources = false;
|
|
23266
23266
|
nuGetSourcesConfigPath;
|
|
23267
|
+
feedFolder;
|
|
23267
23268
|
detailedLogPath;
|
|
23268
23269
|
connection;
|
|
23269
23270
|
workflowCompilerVersion;
|
|
@@ -23643,7 +23644,7 @@ import { translate as translate3 } from "@uipath/solutionpackager-tool-core";
|
|
|
23643
23644
|
var package_default = {
|
|
23644
23645
|
name: "@uipath/project-packager",
|
|
23645
23646
|
license: "MIT",
|
|
23646
|
-
version: "1.201.0-preview.
|
|
23647
|
+
version: "1.201.0-preview.123",
|
|
23647
23648
|
description: "UiPath Project Packager - core library for packing individual UiPath projects",
|
|
23648
23649
|
type: "module",
|
|
23649
23650
|
main: "./dist/index.js",
|
|
@@ -24483,6 +24484,7 @@ class ProjectPackOptionsBuilder {
|
|
|
24483
24484
|
projectPath: project.projectPath,
|
|
24484
24485
|
excludeConfiguredSources: parameters.excludeConfiguredSources ?? false,
|
|
24485
24486
|
nuGetSourcesConfigPath: parameters.nuGetSourcesConfigPath,
|
|
24487
|
+
feedFolder: parameters.feedFolder,
|
|
24486
24488
|
logLevel: parameters.logLevel,
|
|
24487
24489
|
skipAnalyze: parameters.validateOptions.skipAnalyze,
|
|
24488
24490
|
skipValidate: parameters.validateOptions.skipValidate,
|
|
@@ -24673,6 +24675,7 @@ class ProjectPackager {
|
|
|
24673
24675
|
projectPath: loadedProject.projectPath,
|
|
24674
24676
|
excludeConfiguredSources: options.excludeConfiguredSources ?? false,
|
|
24675
24677
|
nuGetSourcesConfigPath: options.nuGetSourcesConfigPath,
|
|
24678
|
+
feedFolder: options.feedFolder,
|
|
24676
24679
|
logLevel: options.logLevel,
|
|
24677
24680
|
outputPath: options.outputPath
|
|
24678
24681
|
};
|
|
@@ -24691,6 +24694,7 @@ class ProjectPackager {
|
|
|
24691
24694
|
projectPath: loadedProject.projectPath,
|
|
24692
24695
|
excludeConfiguredSources: options.excludeConfiguredSources ?? false,
|
|
24693
24696
|
nuGetSourcesConfigPath: options.nuGetSourcesConfigPath,
|
|
24697
|
+
feedFolder: options.feedFolder,
|
|
24694
24698
|
logLevel: options.logLevel,
|
|
24695
24699
|
skipAnalyze: options.validateOptions.skipAnalyze,
|
|
24696
24700
|
skipValidate: options.validateOptions.skipValidate,
|
|
@@ -24717,6 +24721,7 @@ class ProjectPackager {
|
|
|
24717
24721
|
projectPath: loadedProject.projectPath,
|
|
24718
24722
|
excludeConfiguredSources: options.excludeConfiguredSources ?? false,
|
|
24719
24723
|
nuGetSourcesConfigPath: options.nuGetSourcesConfigPath,
|
|
24724
|
+
feedFolder: options.feedFolder,
|
|
24720
24725
|
logLevel: options.logLevel,
|
|
24721
24726
|
skipAnalyze: options.validateOptions.skipAnalyze,
|
|
24722
24727
|
skipValidate: options.validateOptions.skipValidate,
|
|
@@ -24782,6 +24787,7 @@ class ProjectPackager {
|
|
|
24782
24787
|
projectPath: loadedProject.projectPath,
|
|
24783
24788
|
excludeConfiguredSources: options.excludeConfiguredSources ?? false,
|
|
24784
24789
|
nuGetSourcesConfigPath: options.nuGetSourcesConfigPath,
|
|
24790
|
+
feedFolder: options.feedFolder,
|
|
24785
24791
|
logLevel: options.logLevel,
|
|
24786
24792
|
dryRun: options.dryRun ?? false,
|
|
24787
24793
|
skipImports: options.skipImports ?? false
|
|
@@ -24918,4 +24924,4 @@ export {
|
|
|
24918
24924
|
BrowserContextStorage
|
|
24919
24925
|
};
|
|
24920
24926
|
|
|
24921
|
-
//# debugId=
|
|
24927
|
+
//# debugId=C49366F3A235281464756E2164756E21
|
package/dist/node.js
CHANGED
|
@@ -11798,6 +11798,7 @@ class PackagerParameters {
|
|
|
11798
11798
|
targetFramework;
|
|
11799
11799
|
excludeConfiguredSources = false;
|
|
11800
11800
|
nuGetSourcesConfigPath;
|
|
11801
|
+
feedFolder;
|
|
11801
11802
|
detailedLogPath;
|
|
11802
11803
|
connection;
|
|
11803
11804
|
workflowCompilerVersion;
|
|
@@ -12372,6 +12373,7 @@ class ProjectPackOptionsBuilder {
|
|
|
12372
12373
|
projectPath: project.projectPath,
|
|
12373
12374
|
excludeConfiguredSources: parameters.excludeConfiguredSources ?? false,
|
|
12374
12375
|
nuGetSourcesConfigPath: parameters.nuGetSourcesConfigPath,
|
|
12376
|
+
feedFolder: parameters.feedFolder,
|
|
12375
12377
|
logLevel: parameters.logLevel,
|
|
12376
12378
|
skipAnalyze: parameters.validateOptions.skipAnalyze,
|
|
12377
12379
|
skipValidate: parameters.validateOptions.skipValidate,
|
|
@@ -12562,6 +12564,7 @@ class ProjectPackager {
|
|
|
12562
12564
|
projectPath: loadedProject.projectPath,
|
|
12563
12565
|
excludeConfiguredSources: options.excludeConfiguredSources ?? false,
|
|
12564
12566
|
nuGetSourcesConfigPath: options.nuGetSourcesConfigPath,
|
|
12567
|
+
feedFolder: options.feedFolder,
|
|
12565
12568
|
logLevel: options.logLevel,
|
|
12566
12569
|
outputPath: options.outputPath
|
|
12567
12570
|
};
|
|
@@ -12580,6 +12583,7 @@ class ProjectPackager {
|
|
|
12580
12583
|
projectPath: loadedProject.projectPath,
|
|
12581
12584
|
excludeConfiguredSources: options.excludeConfiguredSources ?? false,
|
|
12582
12585
|
nuGetSourcesConfigPath: options.nuGetSourcesConfigPath,
|
|
12586
|
+
feedFolder: options.feedFolder,
|
|
12583
12587
|
logLevel: options.logLevel,
|
|
12584
12588
|
skipAnalyze: options.validateOptions.skipAnalyze,
|
|
12585
12589
|
skipValidate: options.validateOptions.skipValidate,
|
|
@@ -12606,6 +12610,7 @@ class ProjectPackager {
|
|
|
12606
12610
|
projectPath: loadedProject.projectPath,
|
|
12607
12611
|
excludeConfiguredSources: options.excludeConfiguredSources ?? false,
|
|
12608
12612
|
nuGetSourcesConfigPath: options.nuGetSourcesConfigPath,
|
|
12613
|
+
feedFolder: options.feedFolder,
|
|
12609
12614
|
logLevel: options.logLevel,
|
|
12610
12615
|
skipAnalyze: options.validateOptions.skipAnalyze,
|
|
12611
12616
|
skipValidate: options.validateOptions.skipValidate,
|
|
@@ -12671,6 +12676,7 @@ class ProjectPackager {
|
|
|
12671
12676
|
projectPath: loadedProject.projectPath,
|
|
12672
12677
|
excludeConfiguredSources: options.excludeConfiguredSources ?? false,
|
|
12673
12678
|
nuGetSourcesConfigPath: options.nuGetSourcesConfigPath,
|
|
12679
|
+
feedFolder: options.feedFolder,
|
|
12674
12680
|
logLevel: options.logLevel,
|
|
12675
12681
|
dryRun: options.dryRun ?? false,
|
|
12676
12682
|
skipImports: options.skipImports ?? false
|
|
@@ -13058,7 +13064,7 @@ import { translate as translate9 } from "@uipath/solutionpackager-tool-core";
|
|
|
13058
13064
|
var package_default = {
|
|
13059
13065
|
name: "@uipath/project-packager",
|
|
13060
13066
|
license: "MIT",
|
|
13061
|
-
version: "1.201.0-preview.
|
|
13067
|
+
version: "1.201.0-preview.123",
|
|
13062
13068
|
description: "UiPath Project Packager - core library for packing individual UiPath projects",
|
|
13063
13069
|
type: "module",
|
|
13064
13070
|
main: "./dist/index.js",
|
|
@@ -13515,4 +13521,4 @@ export {
|
|
|
13515
13521
|
BaseNodePackagerFactory
|
|
13516
13522
|
};
|
|
13517
13523
|
|
|
13518
|
-
//# debugId=
|
|
13524
|
+
//# debugId=DB4C127278E06E0864756E2164756E21
|
|
@@ -120,6 +120,12 @@ export declare abstract class PackagerParameters {
|
|
|
120
120
|
* Path to NuGet sources configuration file
|
|
121
121
|
*/
|
|
122
122
|
nuGetSourcesConfigPath?: string;
|
|
123
|
+
/**
|
|
124
|
+
* Orchestrator folder name whose library feed replaces every tenant library
|
|
125
|
+
* feed for dependency resolution. Legacy parity with
|
|
126
|
+
* `uipcli package pack --libraryOrchestratorFolder`.
|
|
127
|
+
*/
|
|
128
|
+
feedFolder?: string;
|
|
123
129
|
/**
|
|
124
130
|
* Path to detailed log file
|
|
125
131
|
*/
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/project-packager",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "1.201.0-preview.
|
|
4
|
+
"version": "1.201.0-preview.123",
|
|
5
5
|
"description": "UiPath Project Packager - core library for packing individual UiPath projects",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.js",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"fflate": "^0.8.2"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "0b5e086775b5974d9df45fc98f96f868bb3dda61"
|
|
43
43
|
}
|