Skip to content

Commit fbc45c2

Browse files
committed
Auto-generated commit
1 parent c86be9e commit fbc45c2

File tree

6 files changed

+31
-34
lines changed

6 files changed

+31
-34
lines changed

.editorconfig

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -148,11 +148,6 @@ indent_size = 2
148148
indent_style = space
149149
indent_size = 2
150150

151-
# Set properties for `tslint.json` files:
152-
[tslint.json]
153-
indent_style = space
154-
indent_size = 2
155-
156151
# Set properties for `tsconfig.json` files:
157152
[tsconfig.json]
158153
indent_style = space

.github/.keepalive

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2023-12-01T06:13:01.102Z

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
# For all dependencies, check in all *.js files if they are still used; if not, remove them:
120120
jq -r '.dependencies | keys[]' ./package.json | while read -r dep; do
121121
dep=$(echo "$dep" | xargs)
122-
if ! grep -q "$dep" lib/** && ! grep -q -s "$dep" manifest.json && ! grep -q -s "$dep" include.gypi; then
122+
if ! find lib -name "*.js" -exec grep -q "$dep" {} + && ! grep -q -s "$dep" manifest.json && ! grep -q -s "$dep" include.gypi; then
123123
jq --indent 2 "del(.dependencies[\"$dep\"])" ./package.json > ./package.json.tmp
124124
mv ./package.json.tmp ./package.json
125125
fi
@@ -129,7 +129,7 @@ jobs:
129129
continue
130130
fi
131131
dep=$(echo "$dep" | xargs)
132-
if ! grep -q "$dep" lib/** && ! grep -q -s "$dep" manifest.json && ! grep -q -s "$dep" include.gypi; then
132+
if ! find lib -name "*.js" -exec grep -q "$dep" {} + && ! grep -q -s "$dep" manifest.json && ! grep -q -s "$dep" include.gypi; then
133133
jq --indent 2 "del(.devDependencies[\"$dep\"])" ./package.json > ./package.json.tmp
134134
mv ./package.json.tmp ./package.json
135135
fi

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Brendan Graetz <[email protected]>
99
Bruno Fenzl <[email protected]>
1010
Christopher Dambamuromo <[email protected]>
1111
12+
Daniel Killenberger <[email protected]>
1213
Dominik Moritz <[email protected]>
1314
Dorrin Sotoudeh <[email protected]>
1415
Frank Kovacs <[email protected]>

LICENSE

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -181,32 +181,6 @@ The library links against the following external libraries or contains
181181
implementations from the following external libraries, which have their own
182182
licenses:
183183

184-
* Boost <http://www.boost.org/LICENSE_1_0.txt>
185-
186-
Boost Software License - Version 1.0 - August 17th, 2003
187-
188-
Permission is hereby granted, free of charge, to any person or organization
189-
obtaining a copy of the software and accompanying documentation covered by
190-
this license (the "Software") to use, reproduce, display, distribute,
191-
execute, and transmit the Software, and to prepare derivative works of the
192-
Software, and to permit third-parties to whom the Software is furnished to
193-
do so, all subject to the following:
194-
195-
The copyright notices in the Software and this entire statement, including
196-
the above license grant, this restriction and the following disclaimer,
197-
must be included in all copies of the Software, in whole or in part, and
198-
all derivative works of the Software, unless such copies or derivative
199-
works are solely in the form of machine-executable object code generated by
200-
a source language processor.
201-
202-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
203-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
204-
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
205-
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
206-
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
207-
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
208-
DEALINGS IN THE SOFTWARE.
209-
210184
* MT19937 <http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/MT2002/CODES/
211185
mt19937ar.c>
212186

@@ -240,3 +214,29 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
240214
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
241215
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
242216

217+
* Boost <http://www.boost.org/LICENSE_1_0.txt>
218+
219+
Boost Software License - Version 1.0 - August 17th, 2003
220+
221+
Permission is hereby granted, free of charge, to any person or organization
222+
obtaining a copy of the software and accompanying documentation covered by
223+
this license (the "Software") to use, reproduce, display, distribute,
224+
execute, and transmit the Software, and to prepare derivative works of the
225+
Software, and to permit third-parties to whom the Software is furnished to
226+
do so, all subject to the following:
227+
228+
The copyright notices in the Software and this entire statement, including
229+
the above license grant, this restriction and the following disclaimer,
230+
must be included in all copies of the Software, in whole or in part, and
231+
all derivative works of the Software, unless such copies or derivative
232+
works are solely in the form of machine-executable object code generated by
233+
a source language processor.
234+
235+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
236+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
237+
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
238+
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
239+
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
240+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
241+
DEALINGS IN THE SOFTWARE.
242+

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
"@stdlib/assert-is-probability": "^0.1.1",
108108
"@stdlib/assert-is-string": "^0.1.1",
109109
"@stdlib/assert-is-uint32array": "^0.1.1",
110-
"@stdlib/bench": "^0.2.0",
110+
"@stdlib/bench": "^0.2.1",
111111
"@stdlib/blas-base-gcopy": "^0.1.0",
112112
"@stdlib/constants-float64-eps": "^0.1.1",
113113
"@stdlib/constants-float64-half-pi": "^0.1.1",

0 commit comments

Comments
 (0)