auto-theme icon indicating copy to clipboard operation
auto-theme copied to clipboard

Update build scripts to use local Node.js installation

Open AlexMubarakshin opened this issue 1 year ago • 0 comments

This pull request updates the build scripts in the package.json file to use the local installation of Node.js instead of hardcoding the path to the Node.js executable. The updated scripts now use the webpack command directly, which allows for more flexibility and compatibility across different development environments.

Changes Made:

  • Replaced /usr/local/bin/node with node in the build and build:watch scripts.
  • Removed unnecessary references to node_modules/.bin in the scripts.

These changes ensure that the build scripts will use the Node.js executable available in the local environment, making it easier for other contributors to run the build process without having to modify the scripts manually.

This update enhances the maintainability and usability of the project, and aligns with best practices for cross-platform development.

AlexMubarakshin avatar Apr 22 '23 09:04 AlexMubarakshin