Skip to content

Commit 1585a03

Browse files
committed
v0.3.0 (#117)
1 parent 5aaec6d commit 1585a03

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/build_and_deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ jobs:
2424
BRANCH: gh-pages
2525
FOLDER: out
2626
CLEAN: true
27-
CLEAN_EXCLUDE: '["v0.1", "v0.2"]' # Manually add endpoints to keep
27+
CLEAN_EXCLUDE: '["v0.1", "v0.2", "v0.3"]' # Manually add endpoints to keep

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hms-dbmi/vizarr",
3-
"version": "0.2.1",
3+
"version": "0.3.0",
44
"dependencies": {
55
"@hms-dbmi/viv": "^0.10.2",
66
"@material-ui/core": "^4.11.0",
@@ -24,9 +24,6 @@
2424
"lint": "prettier --check \"{src,types}/**/*.{js,jsx,ts,tsx}\" vite.config.js",
2525
"check": "tsc"
2626
},
27-
"files": [
28-
"out"
29-
],
3027
"prettier": {
3128
"trailingComma": "es5",
3229
"printWidth": 120,

src/index.tsx

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ import Vizarr from './vizarr';
77
import theme from './theme';
88
import './register-codecs';
99

10+
import { version } from '../package.json';
11+
12+
console.log(`vizarr v${version}: https://github.com/hms-dbmi/vizarr`);
13+
1014
ReactDOM.render(
1115
<ThemeProvider theme={theme}>
1216
<Provider>

0 commit comments

Comments
 (0)