-
Notifications
You must be signed in to change notification settings - Fork 45
Clean up utils and use external url functions #202
Conversation
@@ -9,7 +9,8 @@ | |||
"path-posix": "^1.0.0", | |||
"phosphor-disposable": "^1.0.5", | |||
"phosphor-signaling": "^1.2.0", | |||
"requirejs": "^2.2.0" | |||
"requirejs": "^2.2.0", | |||
"url": "^0.11.0" |
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.
FYI, I noticed that both url and the path module we are using are missing upstream bugfixes from npm (cf. defunctzombie/node-url#24). They may be better than if we tried to write something from scratch, though, so +1 to not immediately trying to write our own.
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'm actually not using url
, it should have been url-join
, since url
didn't offer anything over posix-path
. Agreed that we don't want to have our own path implementation.
Note: I am going to use |
Ready. |
👍 |
I could not find a suitable ajax library that has the features we are using.
cf jupyterlab/jupyterlab#446