Skip to content

Commit 84a2339

Browse files
committed
Auto-generated commit
1 parent 40e5f88 commit 84a2339

File tree

7 files changed

+41
-30
lines changed

7 files changed

+41
-30
lines changed

.github/.keepalive

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2022-12-01T02:50:02.286Z
1+
2023-02-01T02:36:31.823Z

.github/workflows/productionize.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ on:
2828

2929
# Allow the workflow to be manually run:
3030
workflow_dispatch:
31+
inputs:
32+
require-passing-tests:
33+
description: 'Require passing tests for creating bundles'
34+
type: boolean
35+
default: true
3136

3237
# Concurrency group to prevent multiple concurrent executions:
3338
concurrency:
@@ -134,34 +139,39 @@ jobs:
134139

135140
# Checkout the repository:
136141
- name: 'Checkout repository'
142+
if: ${{ github.event.inputs.require-passing-tests == 'true' }}
137143
uses: actions/checkout@v3
138144
with:
139145
# Use the `production` branch:
140146
ref: production
141147

142148
# Install Node.js:
143149
- name: 'Install Node.js'
150+
if: ${{ github.event.inputs.require-passing-tests == 'true' }}
144151
uses: actions/setup-node@v3
145152
with:
146153
node-version: 16
147154
timeout-minutes: 5
148155

149156
# Install dependencies:
150157
- name: 'Install production and development dependencies'
158+
if: ${{ github.event.inputs.require-passing-tests == 'true' }}
151159
id: install
152160
run: |
153161
npm install || npm install || npm install
154162
timeout-minutes: 15
155163

156164
# Build native add-on if present:
157165
- name: 'Build native add-on (if present)'
166+
if: ${{ github.event.inputs.require-passing-tests == 'true' }}
158167
run: |
159168
if [ -f "binding.gyp" ]; then
160169
npm install node-gyp --no-save && ./node_modules/.bin/node-gyp rebuild
161170
fi
162171
163172
# Run tests:
164173
- name: 'Run tests'
174+
if: ${{ github.event.inputs.require-passing-tests == 'true' }}
165175
id: tests
166176
run: |
167177
npm test || npm test || npm test

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
# Files #
2020
#########
2121
package.json.copy
22+
.stdlibrc
2223

2324
# Directories #
2425
###############

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+

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Copyright (c) 2016-2022 The Stdlib Authors.
1+
Copyright (c) 2016-2023 The Stdlib Authors.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ See [LICENSE][stdlib-license].
220220

221221
## Copyright
222222

223-
Copyright &copy; 2016-2022. The Stdlib [Authors][stdlib-authors].
223+
Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
224224

225225
</section>
226226

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@
161161
"proxyquire": "^2.0.0",
162162
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
163163
"istanbul": "^0.4.1",
164-
"tap-min": "2.x.x"
164+
"tap-min": "git+https://github.com/Planeshifter/tap-min.git"
165165
},
166166
"engines": {
167167
"node": ">=0.10.0",

0 commit comments

Comments
 (0)