Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Feb 22, 2024
1 parent 41b8736 commit 6d03d29
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 45 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/npm_downloads.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ jobs:
# Upload the download data:
- name: 'Upload data'
# Pin action to full length commit SHA corresponding to v3.1.3
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32
# Pin action to full length commit SHA
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
with:
# Define a name for the uploaded artifact (ensuring a unique name for each job):
name: npm_downloads
Expand Down
14 changes: 4 additions & 10 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,16 +124,10 @@ jobs:
mv ./package.json.tmp ./package.json
fi
done
jq -r '.devDependencies | keys[]' ./package.json | while read -r dep; do
if [[ "$dep" != "@stdlib"* ]]; then
continue
fi
dep=$(echo "$dep" | xargs)
if ! find lib -name "*.js" -exec grep -q "$dep" {} + && ! grep -q -s "$dep" manifest.json && ! grep -q -s "$dep" include.gypi; then
jq --indent 2 "del(.devDependencies[\"$dep\"])" ./package.json > ./package.json.tmp
mv ./package.json.tmp ./package.json
fi
done
# Set `devDependencies` to an empty object:
jq --indent 2 '.devDependencies = {}' ./package.json > ./package.json.tmp
mv ./package.json.tmp ./package.json
# Remove CLI section:
find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe "s/(\* \* \*\n+)?<section class=\"cli\">[\s\S]+?<\!\-\- \/.cli \-\->//"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_bundles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ jobs:

# Install Deno:
- name: 'Install Deno'
# Pin action to full length commit SHA corresponding to v1.1.2
uses: denoland/setup-deno@61fe2df320078202e33d7d5ad347e7dcfa0e8f31
# Pin action to full length commit SHA
uses: denoland/setup-deno@041b854f97b325bd60e53e9dc2de9cb9f9ac0cba # v1.1.4
with:
deno-version: vx.x.x

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,8 +283,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
[npm-image]: http://img.shields.io/npm/v/@stdlib/array-typed.svg
[npm-url]: https://npmjs.org/package/@stdlib/array-typed

[test-image]: https://github.com/stdlib-js/array-typed/actions/workflows/test.yml/badge.svg?branch=v0.2.0
[test-url]: https://github.com/stdlib-js/array-typed/actions/workflows/test.yml?query=branch:v0.2.0
[test-image]: https://github.com/stdlib-js/array-typed/actions/workflows/test.yml/badge.svg?branch=main
[test-url]: https://github.com/stdlib-js/array-typed/actions/workflows/test.yml?query=branch:main

[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/array-typed/main.svg
[coverage-url]: https://codecov.io/github/stdlib-js/array-typed?branch=main
Expand Down
16 changes: 8 additions & 8 deletions docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

/// <reference types="@stdlib/types"/>

import { ArrayLike, RealOrComplexTypedArray, NumericDataType } from '@stdlib/types/array';
import { RealOrComplexTypedArray, TypedDataTypeMap } from '@stdlib/types/array';
import ArrayBuffer = require( '@stdlib/array-buffer' );

/**
Expand All @@ -39,7 +39,7 @@ import ArrayBuffer = require( '@stdlib/array-buffer' );
* var arr = typedarray( 'float32');
* // returns <Float32Array>
*/
declare function typedarray( dtype?: NumericDataType ): RealOrComplexTypedArray;
declare function typedarray<T extends keyof TypedDataTypeMap = 'float64'>( dtype?: T ): TypedDataTypeMap[T];

/**
* Creates a typed array.
Expand All @@ -56,7 +56,7 @@ declare function typedarray( dtype?: NumericDataType ): RealOrComplexTypedArray;
* var arr = typedarray( 2, 'float32' );
* // returns <Float32Array>[ 0.0, 0.0 ]
*/
declare function typedarray( length: number, dtype?: NumericDataType ): RealOrComplexTypedArray;
declare function typedarray<T extends keyof TypedDataTypeMap = 'float64'>( length: number, dtype?: T ): TypedDataTypeMap[T];

/**
* Creates a typed array.
Expand All @@ -83,7 +83,7 @@ declare function typedarray( length: number, dtype?: NumericDataType ): RealOrCo
* var arr2 = typedarray( arr1, 'uint32' );
* // returns <Uint32Array>[ 5, 3 ]
*/
declare function typedarray( typedarray: RealOrComplexTypedArray, dtype?: NumericDataType ): RealOrComplexTypedArray;
declare function typedarray<T extends keyof TypedDataTypeMap = 'float64'>( typedarray: RealOrComplexTypedArray, dtype?: T ): TypedDataTypeMap[T];

/**
* Creates a typed array.
Expand All @@ -100,7 +100,7 @@ declare function typedarray( typedarray: RealOrComplexTypedArray, dtype?: Numeri
* var arr = typedarray( [ 5, -3 ], 'int32' );
* // returns <Int32Array>[ 5, -3 ]
*/
declare function typedarray( obj: ArrayLike<number> | Iterable<any>, dtype?: NumericDataType ): RealOrComplexTypedArray;
declare function typedarray<T extends keyof TypedDataTypeMap = 'float64'>( obj: ArrayLike<number> | Iterable<any>, dtype?: T ): TypedDataTypeMap[T];

/**
* Creates a typed array.
Expand All @@ -123,7 +123,7 @@ declare function typedarray( obj: ArrayLike<number> | Iterable<any>, dtype?: Num
* var arr = typedarray( buf, 'float32' );
* // returns <Float32Array>[ 0.0, 0.0, 0.0, 0.0 ]
*/
declare function typedarray( buffer: ArrayBuffer, dtype?: NumericDataType ): RealOrComplexTypedArray;
declare function typedarray<T extends keyof TypedDataTypeMap = 'float64'>( buffer: ArrayBuffer, dtype?: T ): TypedDataTypeMap[T];

/**
* Creates a typed array.
Expand All @@ -147,7 +147,7 @@ declare function typedarray( buffer: ArrayBuffer, dtype?: NumericDataType ): Rea
* var arr = typedarray( buf, 8, 'float32' );
* // returns <Float32Array>[ 0.0, 0.0 ]
*/
declare function typedarray( buffer: ArrayBuffer, byteOffset?: number, dtype?: NumericDataType ): RealOrComplexTypedArray;
declare function typedarray<T extends keyof TypedDataTypeMap = 'float64'>( buffer: ArrayBuffer, byteOffset?: number, dtype?: T ): TypedDataTypeMap[T];

/**
* Creates a typed array.
Expand All @@ -172,7 +172,7 @@ declare function typedarray( buffer: ArrayBuffer, byteOffset?: number, dtype?: N
* var arr = typedarray( buf, 8, 2, 'int32' );
* // returns <Int32Array>[ 0, 0 ]
*/
declare function typedarray( buffer: ArrayBuffer, byteOffset?: number, length?: number, dtype?: NumericDataType ): RealOrComplexTypedArray;
declare function typedarray<T extends keyof TypedDataTypeMap = 'float64'>( buffer: ArrayBuffer, byteOffset?: number, length?: number, dtype?: T ): TypedDataTypeMap[T];


// EXPORTS //
Expand Down
8 changes: 4 additions & 4 deletions docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ import typedarray = require( './index' );

// The function returns a typed array..
{
typedarray(); // $ExpectType RealOrComplexTypedArray
typedarray( 'float32' ); // $ExpectType RealOrComplexTypedArray
typedarray( 10, 'float32' ); // $ExpectType RealOrComplexTypedArray
typedarray( [ 1, 2, 3 ], 'int32' ); // $ExpectType RealOrComplexTypedArray
typedarray(); // $ExpectType Float64Array
typedarray( 'float32' ); // $ExpectType Float32Array
typedarray( 10, 'float32' ); // $ExpectType Float32Array
typedarray( [ 1, 2, 3 ], 'int32' ); // $ExpectType Int32Array
}

// The compiler throws an error if the function is provided a first argument which is not a data type, number, array-like object, or typed array...
Expand Down
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,30 +39,30 @@
"dependencies": {
"@stdlib/array-defaults": "^0.2.0",
"@stdlib/array-typed-ctors": "^0.2.0",
"@stdlib/assert-is-string": "^0.2.0",
"@stdlib/strided-base-reinterpret-complex128": "^0.2.0",
"@stdlib/assert-is-string": "^0.2.1",
"@stdlib/strided-base-reinterpret-complex128": "^0.2.1",
"@stdlib/strided-base-reinterpret-complex64": "^0.2.0",
"@stdlib/string-format": "^0.2.0",
"@stdlib/types": "^0.3.1"
"@stdlib/string-format": "^0.2.1",
"@stdlib/types": "^0.3.2"
},
"devDependencies": {
"@stdlib/array-buffer": "^0.2.0",
"@stdlib/array-complex128": "^0.1.0",
"@stdlib/array-complex64": "^0.1.0",
"@stdlib/array-float32": "^0.2.0",
"@stdlib/array-float64": "^0.2.0",
"@stdlib/array-int16": "^0.2.0",
"@stdlib/array-int32": "^0.2.0",
"@stdlib/array-int8": "^0.2.0",
"@stdlib/array-uint16": "^0.2.0",
"@stdlib/array-uint32": "^0.2.0",
"@stdlib/array-uint8": "^0.2.0",
"@stdlib/array-uint8c": "^0.2.0",
"@stdlib/assert-instance-of": "^0.2.0",
"@stdlib/array-complex128": "^0.2.0",
"@stdlib/array-complex64": "^0.2.0",
"@stdlib/array-float32": "^0.2.1",
"@stdlib/array-float64": "^0.2.1",
"@stdlib/array-int16": "^0.2.1",
"@stdlib/array-int32": "^0.2.1",
"@stdlib/array-int8": "^0.2.1",
"@stdlib/array-uint16": "^0.2.1",
"@stdlib/array-uint32": "^0.2.1",
"@stdlib/array-uint8": "^0.2.1",
"@stdlib/array-uint8c": "^0.2.1",
"@stdlib/assert-instance-of": "^0.2.1",
"@stdlib/assert-is-complex-typed-array": "^0.2.0",
"@stdlib/assert-is-typed-array": "^0.2.0",
"@stdlib/math-base-special-pow": "^0.2.0",
"@stdlib/random-base-randu": "^0.1.0",
"@stdlib/random-base-randu": "^0.2.0",
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
"istanbul": "^0.4.1",
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
Expand Down

0 comments on commit 6d03d29

Please sign in to comment.