-
Notifications
You must be signed in to change notification settings - Fork 0
Separate charts in build #34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Separate charts in build #34
Conversation
| dirName=$(basename "$subdirectory") | ||
| cd "$subdirectory" | ||
| echo "Calling npm version command for $dirName" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use a more meaningful message such as:
"Use npm version to set the version we want people to see for the project"
| fi | ||
| done | ||
| # - task: PowerShell@2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This step is commented out - if it's not used, remove it.
| Get-ChildItem -Include "*.tsx","*.ts" -Recurse | ` | ||
| ForEach { | ||
| (Get-Content $_.PSPath | ForEach { | ||
| ($_ -replace '(from|import)\s?[''"](igniteui-webcomponents-[^''"]+|dockmanager.*)[''"]', '$1 "@infragistics/$2"') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you extend the loop by adding a message as to which file is being processed at the moment?
Also, right now we have no idea if these replace statements are actually found in a specific file.
It may turn out that the regex patterns are not well-suited for a future situation and we don't find out about it from the execution log.
Include charts to build artifact and fix trial to licensed to not use igniteui-cli due to incompatibility.