Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

refactor npm install (again) #11353

Closed
wants to merge 2 commits into from
Closed

Conversation

Narretz
Copy link
Contributor

@Narretz Narretz commented Mar 17, 2015

No description provided.

@googlebot
Copy link

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.

@petebacondarwin
Copy link
Contributor

@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 {
Copy link
Member

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.

Copy link
Contributor Author

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.

Copy link
Contributor

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

@Narretz
Copy link
Contributor Author

Narretz commented Apr 20, 2015

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.

@Narretz
Copy link
Contributor Author

Narretz commented Apr 20, 2015

Although I'd like @IgorMinar to take a quick look. :)

@petebacondarwin
Copy link
Contributor

Let's go with this @Narretz

@Narretz Narretz assigned Narretz and unassigned petebacondarwin Apr 23, 2015
@Narretz
Copy link
Contributor Author

Narretz commented Apr 23, 2015

Aah, travis was actually using the install-dependencies.sh script. We need to fix this first.

@Narretz
Copy link
Contributor Author

Narretz commented Apr 24, 2015

@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.

@petebacondarwin
Copy link
Contributor

Hmm. That is a pain. And of course this doesn't work if npm install has not already been run as rimraf would not be available anyway.
Perhaps we just need an option not to use this at all on Windows?

@chirayuk chirayuk modified the milestones: 1.4.0-rc.1, 1.4.0-rc.2 Apr 24, 2015
@mgol
Copy link
Member

mgol commented Apr 27, 2015

I fear we have to duplicate the functionality, because we can't use the js file when travis is installing.

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?

@petebacondarwin
Copy link
Contributor

@mzgol the problem is that the new version of the install-dependencies.xxx, which happens to be a Grunt task now, relies upon things like:

var rimraf = require('rimraf');

which of course will fail if we have not run npm install at least once already as that module will not yet exist locally.

Or am I missing something?

@mgol
Copy link
Member

mgol commented Apr 27, 2015

@petebacondarwin Right... Could we just include rimraf manually in the repository and require it from this specific folder instead of node_modules? It's just 412 KB.

Or we could copy over the rimraf.js file and edit out glob which adds most of these 412 KB since we don't use glob patterns in our command (it would make it harder to upgrade the package later, though).

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.

@petebacondarwin
Copy link
Contributor

On non-Windows machines we can just use rm -rf. It is only on Windows machines that we need an alternative solution. So I think that we should try to do the switch at a higher level.

@petebacondarwin petebacondarwin modified the milestones: 1.4.x - jaracimrman-existence, 1.4.0-rc.2 May 4, 2015
gkalpak added a commit to gkalpak/angular.js that referenced this pull request Sep 9, 2015
…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
gkalpak added a commit to gkalpak/angular.js that referenced this pull request Sep 9, 2015
…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
gkalpak added a commit to gkalpak/angular.js that referenced this pull request Sep 9, 2015
…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
gkalpak added a commit to gkalpak/angular.js that referenced this pull request Sep 9, 2015
…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
@petebacondarwin
Copy link
Contributor

Closing in favour of #12792

gkalpak added a commit that referenced this pull request Sep 22, 2015
…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
gkalpak added a commit that referenced this pull request Sep 23, 2015
…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
gkalpak added a commit that referenced this pull request Sep 23, 2015
…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
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants