microsoft / process-migrator

Process migrator node.js utility for VSTS inherited process
MIT License
98 stars 54 forks source link

userSpecifiedMode.toLocaleLowerCase is not a function error #90

Open tkostis opened 1 year ago

tkostis commented 1 year ago

Using the latest versions of nodejs/npm/process-migrator, when attempting to import a custom process template we receive the below error when attempting to use the '-mode=' parameter with a properly formatted configuration.json For example. process-migrator -mode=import --config='c:\temp\configuration.json'

When we use the process-migrator command without the '-mode=' parameter (which would default to migrate mode) and have a properly configured configuration.json we are able to successfully migrate a process from one devops org to another. For example. process-migrator --config='c:\temp\configuration.json'

there appears to be some issue with main.js and ConfigurationProcessor.js

Error Below

C:\Users\root\AppData\Roaming\npm\node_modules\process-migrator\build\nodejs\nodejs\ConfigurationProcessor.js:31 switch (userSpecifiedMode.toLocaleLowerCase()) { ^

TypeError: userSpecifiedMode.toLocaleLowerCase is not a function at Object.ProcesCommandLine (C:\Users\root\AppData\Roaming\npm\node_modules\process-migrator\build\nodejs\nodejs\ConfigurationProcessor.js:31:35) at main (C:\Users\root\AppData\Roaming\npm\node_modules\process-migrator\build\nodejs\nodejs\main.js:18:57) at Object. (C:\Users\root\AppData\Roaming\npm\node_modules\process-migrator\build\nodejs\nodejs\main.js:72:1) at Module._compile (node:internal/modules/cjs/loader:1376:14) at Module._extensions..js (node:internal/modules/cjs/loader:1435:10) at Module.load (node:internal/modules/cjs/loader:1207:32) at Module._load (node:internal/modules/cjs/loader:1023:12) at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:135:12) at node:internal/main/run_main_module:28:49

Node.js v21.1.0 PS C:\Users\root>

MOlausson commented 1 year ago

@tkostis thanks for reporting, we'll take a look at this and get back.

aherrick commented 2 months ago

i'm also seeing this. is there a work around here?