Skip to content

Commit 8d1a0b1

Browse files
committed
0.0.6 to fix build issues
1 parent ca607b3 commit 8d1a0b1

File tree

5 files changed

+5710
-150
lines changed

5 files changed

+5710
-150
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,3 @@ npm-debug.log*
1818
yarn-debug.log*
1919
yarn-error.log*
2020
.idea
21-
>>>>>>> 3f743f2... First commit

example/yarn.lock

+16
Original file line numberDiff line numberDiff line change
@@ -10967,6 +10967,22 @@ [email protected]:
1096710967
dependencies:
1096810968
indexof "0.0.1"
1096910969

10970+
vtk.js@^8.3.10:
10971+
version "8.3.10"
10972+
resolved "https://registry.yarnpkg.com/vtk.js/-/vtk.js-8.3.10.tgz#d5f99940ea46b7f54de49bce3482b9afb7c3ca83"
10973+
integrity sha512-pF71oKAjfMNKiP3RNw49dgT3Y50zSwAfCqM4Z1+ggx+So8Nf/0XZZe7I8SV+t/QntX8NaSzvbRDxG/fqnRrZ8w==
10974+
dependencies:
10975+
base64-js "1.2.1"
10976+
blueimp-md5 "2.10.0"
10977+
commander "2.11.0"
10978+
gl-matrix "2.5.1"
10979+
jszip "3.1.4"
10980+
pako "1.0.6"
10981+
seedrandom "2.4.3"
10982+
shelljs "0.7.8"
10983+
webvr-polyfill "0.10.8"
10984+
webworker-promise "0.4.2"
10985+
1097010986
vtk.js@^8.3.3:
1097110987
version "8.3.3"
1097210988
resolved "https://registry.yarnpkg.com/vtk.js/-/vtk.js-8.3.3.tgz#1406858c3c2daaf358bb0302461ac9c84f59b667"

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-vtkjs-viewport",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"description": "VTK.js image viewport component for React",
55
"author": "OHIF Contributors",
66
"license": "MIT",
@@ -43,6 +43,7 @@
4343
"eslint-plugin-react": "^7.11.1",
4444
"gh-pages": "^2.0.1",
4545
"husky": "^1.2.1",
46+
"kw-web-suite": "^8.0.0",
4647
"lint-staged": "^8.1.0",
4748
"postcss-loader": "^3.0.0",
4849
"prettier": "^1.15.3",

webpack.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module.exports = {
3535
{ loader: 'worker-loader', options: { inline: true, fallback: false } },
3636
],
3737
},
38-
].concat(vtkRules).concat(cssRules),
38+
].concat(cssRules),
3939
},
4040
resolve: {
4141
modules: [

0 commit comments

Comments
 (0)