diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f56d473a0..26be02d3c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -197,7 +197,7 @@ jobs: # Publish package to npm: - name: 'Publish package to npm' - uses: JS-DevTools/npm-publish@v1 + uses: JS-DevTools/npm-publish@v2 with: token: ${{ secrets.NPM_TOKEN }} access: public diff --git a/CONTRIBUTORS b/CONTRIBUTORS index a9844390f..93c4bdefc 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -3,32 +3,37 @@ # Contributors listed in alphabetical order. Ali Salesi +Amit Jimiwal Athan Reines Brendan Graetz Bruno Fenzl Christopher Dambamuromo +Dan Rose Dominik Moritz +Dorrin Sotoudeh Frank Kovacs -Harshita Kalani <95532771+HarshitaKalani@users.noreply.github.com> -James +Harshita Kalani +James Gelok Jithin KS Joey Reed -Jordan-Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com> +Jordan Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com> Joris Labie Justin Dennison -Marcus +Marcus Fantham Matt Cochrane Milan Raj Momtchil Momtchev +Naresh Jagadeesan +Nithin Katta <88046362+nithinkatta@users.noreply.github.com> Ognjen Jevremović Philipp Burckhardt -Pranav <85227306+Pranavchiku@users.noreply.github.com> +Pranav Goswami Ricky Reusser +Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com> Ryan Seal Seyyed Parsa Neshaei Shraddheya Shendre Stephannie Jiménez Gacha Yernar Yergaziyev -dorrin-sot <59933477+dorrin-sot@users.noreply.github.com> orimiles5 <97595296+orimiles5@users.noreply.github.com> -rei2hu +rei2hu diff --git a/base/test/test.js b/base/test/test.js index e1a26730b..6dafbe5a6 100644 --- a/base/test/test.js +++ b/base/test/test.js @@ -29,7 +29,7 @@ var blas = require( './../lib' ); tape( 'main export is an object', function test( t ) { t.ok( true, __filename ); - t.equal( typeof blas, 'object', 'main export is an object' ); + t.strictEqual( typeof blas, 'object', 'main export is an object' ); t.end(); }); diff --git a/ext/base/test/test.js b/ext/base/test/test.js index ca5ccc775..630b5b5a6 100644 --- a/ext/base/test/test.js +++ b/ext/base/test/test.js @@ -29,7 +29,7 @@ var ns = require( './../lib' ); tape( 'main export is an object', function test( t ) { t.ok( true, __filename ); - t.equal( typeof ns, 'object', 'main export is an object' ); + t.strictEqual( typeof ns, 'object', 'main export is an object' ); t.end(); }); diff --git a/ext/test/test.js b/ext/test/test.js index ca5ccc775..630b5b5a6 100644 --- a/ext/test/test.js +++ b/ext/test/test.js @@ -29,7 +29,7 @@ var ns = require( './../lib' ); tape( 'main export is an object', function test( t ) { t.ok( true, __filename ); - t.equal( typeof ns, 'object', 'main export is an object' ); + t.strictEqual( typeof ns, 'object', 'main export is an object' ); t.end(); }); diff --git a/test/test.js b/test/test.js index 14dda1f7d..57cb56495 100644 --- a/test/test.js +++ b/test/test.js @@ -29,7 +29,7 @@ var ns = require( './../lib' ); tape( 'main export is an object', function test( t ) { t.ok( true, __filename ); - t.equal( typeof ns, 'object', 'main export is an object' ); + t.strictEqual( typeof ns, 'object', 'main export is an object' ); t.end(); });