Skip to content

Commit

Permalink
Merge pull request #65 from Kitware/upgrade
Browse files Browse the repository at this point in the history
Upgrade itkjs and vtkjs and fix externals building
  • Loading branch information
floryst authored Apr 23, 2018
2 parents adfb9eb + a37cabd commit 5d5851c
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 9 deletions.
6 changes: 5 additions & 1 deletion Utilities/helpers/externals.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ function getExternals(basePath) {
return files.filter((name) => {
const dir = path.join(basePath, name);
const entry = path.join(dir, 'index.js');
return fs.statSync(dir).isDirectory() && fs.statSync(entry).isFile();
try {
return fs.statSync(dir).isDirectory() && fs.statSync(entry).isFile();
} catch (e) {
return false;
}
});
}

Expand Down
46 changes: 40 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
"normalize.css": "^8.0.0",
"paraviewweb": "3.0.13",
"shelljs": "0.7.8",
"vtk.js": "6.4.16"
"vtk.js": "6.4.19"
},
"devDependencies": {
"@fortawesome/fontawesome-free-webfonts": "^1.0.4",
"copy-webpack-plugin": "^4.4.1",
"http-server": "0.10.0",
"itk": "8.1.1",
"itk": "9.0.0",
"kw-doc": "1.1.1",
"kw-web-suite": "6.0.2",
"lodash": "^4.17.4",
Expand Down

0 comments on commit 5d5851c

Please sign in to comment.