Skip to content

Conversation

@ghost
Copy link

@ghost ghost commented Jan 22, 2024

Description

Background

This is a follow-up pr to fix the issue in #522.

Mark shelljs as external for esbuild bundling attempted to address this issue, but was not a successful solution for all of our tasks, as some of our tasks need the commands present in ShellJS.

Problem

This issue emerged with the bump of azure-pipelines-task-lib dependency in: #473.

Problem detailed in the open issue on azure-pipelines-task-lib repo: Cannot use JS bundler because of shelljs dependency.

Essentially, the toolkit takes a dependency on azure-pipelines-task-lib which takes an additional dependency on ShellJS. Our toolkit uses the esbuild JS Bundler to build the extension. This fails to bundle ShellJS because it uses dynamic require statements (problematic ShellJS code) instead of explicit require statements, which prevents bundlers from correctly analyzing the dependencies.

  • In short, require('./a') works but require('./' + 'a') doesn't.

ShellJS has no plans to accommodate these explicit requires statements

Solution

Before making any larger scale changes, let's get azure-pipelines-task-lib back to its last known healthy state (working version we used for last release). This PR addresses that.

Future azure-pipelines-task-lib updates

Whenever we next bump the azure-pipelines-task-lib major version, we'll need to keep an eye on updates to microsoft/azure-pipelines-task-lib#942 for any new fixes or workarounds. Current known workarounds involve forking the ShellJS repository, making the necessary changes to ShellJS, and overriding the ShellJS dependency in package.json with the forked version.

Testing

  • Ran unit tests
  • ran tasks locally (using node <path-to-task>) to confirm output matches expectations
  • Ran tasks/pipelines on hosted server and confirmed they run successfully

Checklist

  • I have read the README document
  • I have read the CONTRIBUTING document
  • My code follows the code style of this project
  • I have added tests to cover my changes
  • A short description of the change has been added to the changelog using the script npm run newChange

License

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

@ghost ghost self-requested a review as a code owner January 22, 2024 19:57
@ghost ghost force-pushed the rbbarad/fix-command-not-found-issue branch from 2340396 to bc485c0 Compare January 22, 2024 20:10
@ghost ghost merged commit 51f51d3 into master Jan 22, 2024
@ghost ghost deleted the rbbarad/fix-command-not-found-issue branch January 22, 2024 21:14
hayemaxi added a commit to hayemaxi/aws-toolkit-azure-devops that referenced this pull request Nov 25, 2024
Requires a hacky patch to fix shell.js, which doesn't support bundlers.
Mitigates the issue described in aws#539

Credit to ivanduplenskikh:  https://github.com/ivanduplenskikh/aws-toolkit-azure-devops/pull/1

Co-authored-by: Ivan Duplenskikh <ivanduplenskikh>
hayemaxi added a commit to hayemaxi/aws-toolkit-azure-devops that referenced this pull request Nov 25, 2024
Requires a hacky patch to fix shell.js, which doesn't support bundlers.
Mitigates the issue described in aws#539

Credit to ivanduplenskikh:  https://github.com/ivanduplenskikh/aws-toolkit-azure-devops/pull/1

Co-authored-by: Ivan Duplenskikh <ivanduplenskikh>
hayemaxi added a commit to hayemaxi/aws-toolkit-azure-devops that referenced this pull request Nov 25, 2024
Requires a hacky patch to fix shell.js, which doesn't support bundlers.
Mitigates the issue described in aws#539

Credit to ivanduplenskikh:  https://github.com/ivanduplenskikh/aws-toolkit-azure-devops/pull/1

Co-authored-by: Ivan Duplenskikh <ivanduplenskikh>
hayemaxi added a commit to hayemaxi/aws-toolkit-azure-devops that referenced this pull request Nov 25, 2024
Requires a hacky patch to fix shell.js, which doesn't support bundlers.
Mitigates the issue described in aws#539

Credit to ivanduplenskikh:  https://github.com/ivanduplenskikh/aws-toolkit-azure-devops/pull/1

Co-authored-by: Ivan Duplenskikh <ivanduplenskikh>
hayemaxi added a commit to hayemaxi/aws-toolkit-azure-devops that referenced this pull request Nov 25, 2024
Requires a hacky patch to fix shell.js, which doesn't support bundlers.
Mitigates the issue described in aws#539

Addresses aws#566

Credit to ivanduplenskikh:  https://github.com/ivanduplenskikh/aws-toolkit-azure-devops/pull/1

Co-authored-by: Ivan Duplenskikh <ivanduplenskikh>
hayemaxi added a commit to hayemaxi/aws-toolkit-azure-devops that referenced this pull request Nov 25, 2024
hayemaxi added a commit to hayemaxi/aws-toolkit-azure-devops that referenced this pull request Nov 25, 2024
hayemaxi added a commit to hayemaxi/aws-toolkit-azure-devops that referenced this pull request Nov 25, 2024
hayemaxi added a commit to hayemaxi/aws-toolkit-azure-devops that referenced this pull request Nov 25, 2024
hayemaxi added a commit to hayemaxi/aws-toolkit-azure-devops that referenced this pull request Nov 25, 2024
hayemaxi added a commit to hayemaxi/aws-toolkit-azure-devops that referenced this pull request Nov 25, 2024
hayemaxi added a commit to hayemaxi/aws-toolkit-azure-devops that referenced this pull request Nov 25, 2024
hayemaxi added a commit to hayemaxi/aws-toolkit-azure-devops that referenced this pull request Nov 25, 2024
hayemaxi added a commit to hayemaxi/aws-toolkit-azure-devops that referenced this pull request Nov 25, 2024
hayemaxi added a commit to hayemaxi/aws-toolkit-azure-devops that referenced this pull request Nov 25, 2024
Addresses aws#566. Use Node 20 using microsoft guidance: https://learn.microsoft.com/en-us/azure/devops/extend/develop/add-build-task?view=azure-devops#q-how-can-i-upgrade-my-custom-task-to-the-latest-node

Keep Node 10 as a fallback. However, we are still building the node10 with esbuild to ensure backwards compatibility. In the future, we can consider building for a higher node version only.

Adding support requires a hacky patch to fix shell.js, which doesn't support bundlers.
Mitigates the issue described in aws#539

Credit to ivanduplenskikh:  https://github.com/ivanduplenskikh/aws-toolkit-azure-devops/pull/1

Co-authored-by: Ivan Duplenskikh <[email protected]>
hayemaxi added a commit to hayemaxi/aws-toolkit-azure-devops that referenced this pull request Dec 2, 2024
Addresses aws#566. Use Node 20 using microsoft guidance: https://learn.microsoft.com/en-us/azure/devops/extend/develop/add-build-task?view=azure-devops#q-how-can-i-upgrade-my-custom-task-to-the-latest-node

Keep Node 10 as a fallback. However, we are still building the node10 with esbuild to ensure backwards compatibility. In the future, we can consider building for a higher node version only.

Adding support requires a hacky patch to fix shell.js, which doesn't support bundlers.
Mitigates the issue described in aws#539

Credit to ivanduplenskikh:  https://github.com/ivanduplenskikh/aws-toolkit-azure-devops/pull/1

Co-authored-by: Ivan Duplenskikh <[email protected]>
hayemaxi added a commit that referenced this pull request Dec 3, 2024
Addresses #566. Use Node 20 using microsoft guidance: https://learn.microsoft.com/en-us/azure/devops/extend/develop/add-build-task?view=azure-devops#q-how-can-i-upgrade-my-custom-task-to-the-latest-node

Keep Node 10 as a fallback. However, we are still building the node10 with esbuild to ensure backwards compatibility. In the future, we can consider building for a higher node version only.

Adding support requires a hacky patch to fix shell.js, which doesn't support bundlers.
Mitigates the issue described in #539

Credit to ivanduplenskikh:  https://github.com/ivanduplenskikh/aws-toolkit-azure-devops/pull/1

Co-authored-by: Ivan Duplenskikh <[email protected]>
This pull request was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants