Skip to content

Commit

Permalink
remove unneeded deps
Browse files Browse the repository at this point in the history
  • Loading branch information
bmschmidt committed Apr 14, 2024
1 parent bb56601 commit 1d1754e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,6 @@ on:
push:
branches:
- dev
# workflow_dispatch:
# inputs:
# branch:
# description: 'Define branch name'
# required: true
# default: 'dev'

jobs:
publish:
Expand All @@ -25,6 +19,12 @@ jobs:
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
- run: npm version prerelease --preid=next
- name: Commit bumped version
run: |
git add package.json package-lock.json
git commit -m "Bump version to $(node -p "require('./package.json').version")"
git push
- run: npm publish --tag next
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
Expand Down
5 changes: 1 addition & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "deepscatter",
"type": "module",
"version": "3.0.0-next.2",
"version": "3.0.0-next.3",
"description": "Fast, animated zoomable scatterplots scaling to billions of points",
"files": [
"dist"
Expand All @@ -19,7 +19,6 @@
"scripts": {
"dev": "vite --mode dev --port 3344 --host",
"format": "prettier --write src",

"build": "vite build && tsc",
"prepublishOnly": "vite build && tsc && typedoc --skipErrorChecking src/*",
"test": "vite build && npm run test:node",
Expand Down Expand Up @@ -60,11 +59,9 @@
"d3-timer": "^3.0.1",
"d3-transition": "^3.0.1",
"d3-zoom": "^3.0.0",
"fast-json-stable-stringify": "^2.1.0",
"glsl-easings": "^1.0.0",
"glsl-fast-gaussian-blur": "^1.0.2",
"glsl-read-float": "^1.1.0",
"json-stable-stringify": "^1.1.1",
"lodash.merge": "^4.6.2",
"rbush-3d": "^0.0.4",
"regl": "^2.1.0"
Expand Down

0 comments on commit 1d1754e

Please sign in to comment.