-
Notifications
You must be signed in to change notification settings - Fork 27.4k
Conversation
We found a Contributor License Agreement for you (the sender of this pull request) and all commit authors, but as best as we can tell these commits were authored by someone else. If that's the case, please add them to this pull request and have them confirm that they're okay with these commits being contributed to Google. If we're mistaken and you did author these commits, just reply here to confirm. |
@IgorMinar - can you take a quick look at this when you get a chance? |
if (process.platform == "win32") { | ||
rimraf.sync('node_modules'); | ||
console.log('cleaned node_modules using rimraf'); | ||
} else { |
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.
Why this else
? rimraf
is cross-platform.
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.
I think rm -rf might still be more robust, so we should use it if possible. @IgorMinar should probably have a word here.
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.
@IgorMinar wanted to use rm -rf
where possible for performance reasons
This has been confirmed to work on Windows in #11143 so I'm gonna merge it at the end of the week unless somebody has any objections. |
Although I'd like @IgorMinar to take a quick look. :) |
Let's go with this @Narretz |
Aah, travis was actually using the install-dependencies.sh script. We need to fix this first. |
@petebacondarwin do you have an idea how we could handle this? I fear we have to duplicate the functionality, because we can't use the js file when travis is installing. |
Hmm. That is a pain. And of course this doesn't work if |
Why can't we? Node is already available, instead of: - scripts/npm/install-dependencies.sh we'd just use: - node scripts/npm/install-dependencies.js What am I not seeing here? |
@mzgol the problem is that the new version of the var rimraf = require('rimraf'); which of course will fail if we have not run Or am I missing something? |
@petebacondarwin Right... Could we just include Or we could copy over the rimraf.js file and edit out EDIT: We could also copy rimraf.js and instead of editing glob out of it, define a custom glob object that will just throw if used. Since we don't use this code path it would work and it would be a little easier to update rimraf in the future. Not sure if that's worth the complexity, though. But it would decrease 412 KB to 7.3 KB. |
On non-Windows machines we can just use |
…oss platforms The previous implementations (based on shell scripts) threw errors on Windows, because it was not able to `rm -rf` 'node_modules' (due to the 255 character limit in file-paths). This implementation works consistently across platforms and is heavily based on 'https://github.com/angular/angular/blob/3b9c08676a4c921bbfa847802e08566fb601ba7a/tools/npm/check-node-modules.js'. Fixes angular#11143 Closes angular#11353
…oss platforms The previous implementations (based on shell scripts) threw errors on Windows, because it was not able to `rm -rf` 'node_modules' (due to the 255 character limit in file-paths). This implementation works consistently across platforms and is heavily based on 'https://github.com/angular/angular/blob/3b9c08676a4c921bbfa847802e08566fb601ba7a/tools/npm/check-node-modules.js'. Fixes angular#11143 Closes angular#11353
…oss platforms The previous implementations (based on shell scripts) threw errors on Windows, because it was not able to `rm -rf` 'node_modules' (due to the 255 character limit in file-paths). This implementation works consistently across platforms and is heavily based on 'https://github.com/angular/angular/blob/3b9c08676a4c921bbfa847802e08566fb601ba7a/tools/npm/check-node-modules.js'. Fixes angular#11143 Closes angular#11353
…oss platforms The previous implementations (based on shell scripts) threw errors on Windows, because it was not able to `rm -rf` 'node_modules' (due to the 255 character limit in file-paths). This implementation works consistently across platforms and is heavily based on 'https://github.com/angular/angular/blob/3b9c08676a4c921bbfa847802e08566fb601ba7a/tools/npm/check-node-modules.js'. Fixes angular#11143 Closes angular#11353
Closing in favour of #12792 |
…oss platforms The previous implementations (based on shell scripts) threw errors on Windows, because it was not able to `rm -rf` 'node_modules' (due to the 255 character limit in file-paths). This implementation works consistently across platforms and is heavily based on 'https://github.com/angular/angular/blob/3b9c08676a4c921bbfa847802e08566fb601ba7a/tools/npm/check-node-modules.js'. Fixes #11143 Closes #11353 Closes #12792
…oss platforms The previous implementations (based on shell scripts) threw errors on Windows, because it was not able to `rm -rf` 'node_modules' (due to the 255 character limit in file-paths). This implementation works consistently across platforms and is heavily based on 'https://github.com/angular/angular/blob/3b9c08676a4c921bbfa847802e08566fb601ba7a/tools/npm/check-node-modules.js'. Fixes #11143 Closes #11353 Closes #12792
…oss platforms The previous implementations (based on shell scripts) threw errors on Windows, because it was not able to `rm -rf` 'node_modules' (due to the 255 character limit in file-paths). This implementation works consistently across platforms and is heavily based on 'https://github.com/angular/angular/blob/3b9c08676a4c921bbfa847802e08566fb601ba7a/tools/npm/check-node-modules.js'. Fixes #11143 Closes #11353 Closes #12792
No description provided.