Skip to content

Commit 6aeb90f

Browse files
authored
prepare release v0.6.0 (#640)
1 parent 37641de commit 6aeb90f

2 files changed

Lines changed: 12 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
name: Release (tag)
22

33
on:
4-
push:
5-
tags:
6-
- 'v*'
4+
workflow_dispatch:
75

86
permissions:
97
contents: write

package.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
{
22
"name": "browzarr",
3-
"version": "0.5.1",
3+
"version": "0.6.0",
44
"description": "A browser-based visualization toolkit for exploring and analyzing Zarr data stores.",
5+
"type": "module",
56
"keywords": [
67
"zarr",
8+
"netcdf",
9+
"icechunk",
710
"3d",
811
"graphics",
12+
"visualization",
913
"threejs",
1014
"rendering",
1115
"geometry",
@@ -31,8 +35,12 @@
3135
"bugs": {
3236
"url": "https://github.com/EarthyScience/Browzarr/issues/"
3337
},
34-
"private": true,
3538
"packageManager": "pnpm@10.11.1",
39+
"files": [
40+
"out/",
41+
"README.md",
42+
"LICENSE"
43+
],
3644
"scripts": {
3745
"postinstall": "node src/hooks/copy-wasm.mjs",
3846
"prBuild": "pnpm buildRepo",
@@ -42,6 +50,7 @@
4250
"rmBuild": "pnpm -r exec rm -rf out",
4351
"build": "next build",
4452
"start": "next start",
53+
"prepublishOnly": "pnpm run rmBuild && pnpm run build",
4554
"test": "vitest",
4655
"test:coverage": "vitest run --coverage",
4756
"lint": "eslint . --max-warnings=100"

0 commit comments

Comments
 (0)