Commit 8f05db0 1 parent 574b809 commit 8f05db0 Copy full SHA for 8f05db0
File tree 5 files changed +4
-11
lines changed
5 files changed +4
-11
lines changed Original file line number Diff line number Diff line change 25
25
run : deno publish --unstable-sloppy-imports
26
26
working-directory : packages/core
27
27
28
- - name : Publish @zarrita/indexing
29
- run : deno publish --unstable-sloppy-imports
30
- working-directory : packages/indexing
31
-
32
28
- name : Publish @zarrita/ndarray
33
29
run : deno publish --unstable-sloppy-imports
34
30
working-directory : packages/ndarray
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ export function get_ctr<D extends DataType>(
81
81
export function get_strides (
82
82
shape : readonly number [ ] ,
83
83
order : "C" | "F" | Array < number > ,
84
- ) {
84
+ ) : Array < number > {
85
85
const rank = shape . length ;
86
86
if ( typeof order === "string" ) {
87
87
order =
Original file line number Diff line number Diff line change 4
4
"license" : " MIT" ,
5
5
"imports" : {
6
6
"@types/ndarray-ops" : " npm:@types/ndarray-ops@^1.2.4" ,
7
- "@zarrita/core" : " jsr:@zarrita/core@^0.1.0-next.22" ,
8
- "@zarrita/indexing" : " jsr:@zarrita/indexing@^0.1.0-next.24" ,
9
- "@zarrita/storage" : " jsr:@zarrita/storage@^0.1.0-next.9" ,
10
7
"ndarray" : " npm:ndarray@^1.0.19" ,
11
- "ndarray-ops" : " npm:ndarray-ops@^1.2.2"
8
+ "ndarray-ops" : " npm:ndarray-ops@^1.2.2" ,
9
+ "zarrita" : " jsr:zarrita@^0.4.0-next.25"
12
10
},
13
11
"exports" : {
14
12
"." : " ./src/index.ts"
Original file line number Diff line number Diff line change 4
4
"license" : " MIT" ,
5
5
"imports" : {
6
6
"@zarrita/core" : " jsr:@zarrita/core@^0.1.0-next.22" ,
7
- "@zarrita/indexing" : " jsr:@zarrita/indexing@^0.1.0-next.24" ,
8
7
"@zarrita/storage" : " jsr:@zarrita/storage@^0.1.0-next.9"
9
8
},
10
9
"exports" : {
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ for (const meta of Object.values(MANIFEST)) {
55
55
meta . imports = mapEntries ( meta . imports , ( [ name , version ] ) => {
56
56
if ( version . startsWith ( "workspace:" ) ) {
57
57
const semanticResolution = version . slice ( "workspace:" . length ) ;
58
- const workspaceVersion = MANIFEST [ name . slice ( "@zarrita/" . length ) ] . version ;
58
+ const workspaceVersion = MANIFEST [ name . replace ( "@zarrita/" , "" ) ] . version ;
59
59
assert ( workspaceVersion , `Missing workspace version for ${ name } ` ) ;
60
60
assert ( semanticResolution , `Missing semantic resolution for ${ name } ` ) ;
61
61
return [ name , `jsr:${ name } @${ semanticResolution } ${ workspaceVersion } ` ] ;
You can’t perform that action at this time.
0 commit comments