Skip to content

Commit 6e5306c

Browse files
authored
Merge branch 'stdlib-js:develop' into ssyr2-c
2 parents 2c335f6 + e8fd916 commit 6e5306c

File tree

530 files changed

+49018
-1171
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

530 files changed

+49018
-1171
lines changed

.github/workflows/autoclose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
6363
If you would prefer to avoid manual setup, you could also consider using a pre-configured [development container](https://github.com/stdlib-js/stdlib/tree/develop/.devcontainer) for use locally or in GitHub Codespaces.
6464
65-
Thank you again for your interest in stdlib, and we look forward to reviewing your future contriubtions.
65+
Thank you again for your interest in stdlib, and we look forward to reviewing your future contributions.
6666
6767
# Define a job which closes a pull request if a contributor failed to follow contributing guidelines:
6868
contributor_guidelines:
@@ -98,7 +98,7 @@ jobs:
9898
9999
If you would prefer to avoid manual setup, you could also consider using a pre-configured [development container](https://github.com/stdlib-js/stdlib/tree/develop/.devcontainer) for use locally or in GitHub Codespaces.
100100
101-
Thank you again for your interest in stdlib, and we look forward to reviewing your future contriubtions.
101+
Thank you again for your interest in stdlib, and we look forward to reviewing your future contributions.
102102
103103
# Define a job which closes a pull request if a contributor failed to follow project conventions:
104104
project_conventions:
@@ -138,7 +138,7 @@ jobs:
138138
139139
In short, the more effort you put in to ensure that your contribution looks and feels like stdlib—including variables names, bracket spacing, line breaks, etc—the more likely that your contribution will be reviewed and ultimately accepted. We encourage you to closely study the codebase **before** continuing to work on this pull request.
140140
141-
Thank you again for your interest in stdlib, and we look forward to reviewing your future contriubtions.
141+
Thank you again for your interest in stdlib, and we look forward to reviewing your future contributions.
142142
143143
# Define a job which closes a pull request if a pull request is considered spam:
144144
spam:
@@ -170,7 +170,7 @@ jobs:
170170
BODY: |
171171
Thank you for working on this pull request. However, we cannot accept your contribution as this pull request does not meet the standards of this project.
172172
173-
Thank you again for your interest in stdlib, and we look forward to reviewing your future contriubtions.
173+
Thank you again for your interest in stdlib, and we look forward to reviewing your future contributions.
174174
175175
# Lock pull request conversation:
176176
- name: 'Lock conversation'

.github/workflows/good_first_issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,4 @@ jobs:
7979
8080
In short, the more effort you put in to ensure that your contribution looks and feels like stdlib—including variables names, bracket spacing, line breaks, etc—the more likely that your contribution will be reviewed and ultimately accepted. We encourage you to closely study the codebase **before** beginning work on this issue.
8181
82-
:sparkles: Thank you again for your interest in stdlib, and we look forward to reviewing your future contriubtions. :sparkles:
82+
:sparkles: Thank you again for your interest in stdlib, and we look forward to reviewing your future contributions. :sparkles:

.mailmap

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,8 @@ Stephannie Jiménez Gacha <[email protected]> Stephannie Jimenez Gacha
145145

146146
Tudor Pagu <[email protected]> tudor-pagu
147147

148+
Tufailahmed Bargir <[email protected]> Tufailahmed-Bargir
149+
148150
# U
149151

150152
@@ -156,6 +158,8 @@ Utkarsh Raj <[email protected]> utkarsh_raj
156158

157159
# V
158160

161+
Vaibhav Patel <[email protected]> ProCoderVP
162+
159163
160164
Varad Gupta <[email protected]> vr-varad
161165

CONTRIBUTORS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Hridyanshu <[email protected]>
3232
Jaimin Godhani <[email protected]>
3333
James Gelok <[email protected]>
3434
Jaysukh Makvana <[email protected]>
35+
Jenish Thapa <[email protected]>
3536
Jithin KS <[email protected]>
3637
Joel Mathew Koshy <[email protected]>
3738
Joey Reed <[email protected]>
@@ -87,8 +88,10 @@ Stephannie Jiménez Gacha <[email protected]>
8788
Suraj kumar <[email protected]>
8889
Tirtadwipa Manunggal <[email protected]>
8990
Tudor Pagu <[email protected]>
91+
Tufailahmed Bargir <[email protected]>
9092
Utkarsh <http://[email protected]>
9193
Utkarsh Raj <[email protected]>
94+
Vaibhav Patel <[email protected]>
9295
Varad Gupta <[email protected]>
9396
Xiaochuan Ye <[email protected]>
9497
Yernar Yergaziyev <[email protected]>

lib/node_modules/@stdlib/_tools/licenses/header-regexp-table/lib/main.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,14 @@ var EXT = [
5454
'py',
5555
'R',
5656
'sh',
57+
'ts',
58+
'wat',
5759
'yml',
5860
'default' // Not a language, but serves as a fallback when unable to determine a file type based on filename extension or basename
5961
];
6062

61-
// Leading comment characters: /** (JS, C, C++), /* (CSS), !> (Fortran), # (R, Python, Julia, AWK, bash, GYP), #/ (make, YAML, INI), <!-- (HTML, Markdown)
62-
var RE_LEADING_COMMENT = /^\/\*\*|^\/\*|^!>|^#\/{0,1}|^<!--/;
63+
// Leading comment characters: /** (JS, C, C++), /* (CSS), !> (Fortran), # (R, Python, Julia, AWK, bash, GYP), ;; (WAT), #/ (make, YAML, INI), <!-- (HTML, Markdown)
64+
var RE_LEADING_COMMENT = /^\/\*\*|^\/\*|^!>|^#\/{0,1}|^;;|^<!--/;
6365

6466
// Trailing comment characters: */ (JS, C, C++), */ (CSS), !< (Fortran), #/ (make, YAML, INI), --> (HTML, Markdown)
6567
var RE_TRAILING_COMMENT = /\*\/$|!<$|#\/$|-->$/;
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
;; @license Apache-2.0
2+
;;
3+
;; Copyright (c) 2018 The Stdlib Authors.
4+
;;
5+
;; Licensed under the Apache License, Version 2.0 (the "License");
6+
;; you may not use this file except in compliance with the License.
7+
;; You may obtain a copy of the License at
8+
;;
9+
;; http://www.apache.org/licenses/LICENSE-2.0
10+
;;
11+
;; Unless required by applicable law or agreed to in writing, software
12+
;; distributed under the License is distributed on an "AS IS" BASIS,
13+
;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
;; See the License for the specific language governing permissions and
15+
;; limitations under the License.
16+
;;
17+
18+
;; beep boop

lib/node_modules/@stdlib/_tools/licenses/header-regexp-table/test/test.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ var LANGS = [
8282
'bash',
8383
'text',
8484
'txt',
85+
'wat',
86+
'WAT',
8587
'YAML',
8688
'yaml',
8789
'yml'
@@ -105,6 +107,7 @@ var FIXTURES = {
105107
'file.py.txt': 'python',
106108
'file.r.txt': 'r',
107109
'file.txt.txt': 'txt',
110+
'file.wat.txt': 'wat',
108111
'file.yml.txt': 'yaml'
109112
};
110113

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
;; @license Apache-2.0
2+
;;
3+
;; Copyright (c) 2018 The Stdlib Authors.
4+
;;
5+
;; Licensed under the Apache License, Version 2.0 (the "License");
6+
;; you may not use this file except in compliance with the License.
7+
;; You may obtain a copy of the License at
8+
;;
9+
;; http://www.apache.org/licenses/LICENSE-2.0
10+
;;
11+
;; Unless required by applicable law or agreed to in writing, software
12+
;; distributed under the License is distributed on an "AS IS" BASIS,
13+
;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
;; See the License for the specific language governing permissions and
15+
;; limitations under the License.
16+
;;
17+
18+
;; beep boop

lib/node_modules/@stdlib/_tools/licenses/header-regexp/test/test.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,8 @@ var LANGS = [
7474
'bash',
7575
'text',
7676
'txt',
77+
'wat',
78+
'WAT',
7779
'YAML',
7880
'yml'
7981
];
@@ -96,6 +98,7 @@ var FIXTURES = {
9698
'file.py.txt': 'python',
9799
'file.r.txt': 'r',
98100
'file.txt.txt': 'txt',
101+
'file.wat.txt': 'wat',
99102
'file.yml.txt': 'yaml'
100103
};
101104

lib/node_modules/@stdlib/_tools/licenses/header/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ var h = licenseHeader( 'Apache-2.0', 'beepboopbop' );
123123

124124
- `Apache-2.0`
125125
- `BSD-3-Clause`
126+
- `MIT`
126127

127128
</section>
128129

0 commit comments

Comments
 (0)