File tree Expand file tree Collapse file tree 2 files changed +10
-18
lines changed Expand file tree Collapse file tree 2 files changed +10
-18
lines changed Original file line number Diff line number Diff line change @@ -194,11 +194,13 @@ jobs:
194
194
user : __token__
195
195
password : ${{ secrets.pypi_token }}
196
196
if : ${{ startsWith(github.ref, 'refs/tags/v') }}
197
- - name : Publish to NPM registry
198
- run : npm publish
199
- working-directory : npm-package
200
- env :
201
- NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
197
+ # Disabling publishing to NPM
198
+ # - name: Publish to NPM registry
199
+ # if: ${{ startsWith(github.ref, 'refs/tags/v') }}
200
+ # run: npm publish
201
+ # working-directory: npm-package
202
+ # env:
203
+ # NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
202
204
ngauth :
203
205
strategy :
204
206
matrix :
Original file line number Diff line number Diff line change @@ -4,25 +4,15 @@ a client-side web application.
4
4
WARNING: Neuroglancer does not yet offer any stability guarantees for the
5
5
JavaScript API.
6
6
7
- Neuroglancer can be used as a dependency in three ways:
7
+ Neuroglancer can be used as a dependency in two ways:
8
8
9
- 1 . Installing the published npm package via:
10
-
11
- ``` shell
12
- npm install neuroglancer
13
- ```
14
-
15
- This will use the built Neuroglancer package, with the TypeScript sources
16
- already transpiled to JavaScript. This is the normal, recommended way to use
17
- Neuroglancer and imposes the least requirements.
18
-
19
- 2 . Installing directly from the Github repository, via:
9
+ 1 . Installing directly from the Github repository, via:
20
10
21
11
``` shell
22
12
npm install google/neuroglancer
23
13
```
24
14
25
- 3 . Linking to a local checkout of the Neuroglancer repository via:
15
+ 2 . Linking to a local checkout of the Neuroglancer repository via:
26
16
27
17
``` shell
28
18
npm link neuroglancer
You can’t perform that action at this time.
0 commit comments