Skip to content

Commit

Permalink
chore: yarn upgrade
Browse files Browse the repository at this point in the history
Signed-off-by: Paul <[email protected]>
  • Loading branch information
paul-marechal committed Dec 3, 2020
1 parent 75bf8df commit 763d3ba
Show file tree
Hide file tree
Showing 4 changed files with 392 additions and 356 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ cache:
# All directories need to be listed here, because Travis does not support globs.
# Auto generated by scripts/prepare-travis
# start_cache_directories
- /tmp/vscode-ripgrep-cache-1.10.0
- /tmp/vscode-ripgrep-cache-1.11.1
- dev-packages/application-manager/node_modules
- dev-packages/application-package/node_modules
- dev-packages/cli/node_modules
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"drivelist": "^9.0.2",
"es6-promise": "^4.2.4",
"express": "^4.16.3",
"file-icons-js": "^1.0.3",
"file-icons-js": "~1.0.3",
"font-awesome": "^4.7.0",
"fs-extra": "^4.0.2",
"fuzzy": "^0.1.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/workspace/src/node/default-workspace-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class WorkspaceCliContribution implements CliContribution {
}

setArguments(args: yargs.Arguments): void {
let wsPath: string | undefined = args._[2];
let wsPath: string | undefined = typeof args._[2] === 'undefined' ? undefined : String(args._[2]);
if (!wsPath) {
wsPath = args['root-dir'] as string;
if (!wsPath) {
Expand Down
Loading

0 comments on commit 763d3ba

Please sign in to comment.