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 Jun 15, 2021
1 parent cd00531 commit 59af1a2
Show file tree
Hide file tree
Showing 21 changed files with 45 additions and 25 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: benchmark

on:
workflow_dispatch:

jobs:
benchmark:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 15
- name: Install production and development dependencies
run: |
npm install
- name: Run benchmarks
run: |
npm run benchmark
4 changes: 2 additions & 2 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
node-version: 15
- name: Install production and development dependencies
run: |
npm install
- name: Run examples
run: |
npm run examples
npm run examples
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
node-version: 15
- name: Increment version
run: |
git config --local user.email "[email protected]"
Expand All @@ -31,4 +31,4 @@ jobs:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
channel: '#npm-ci'
if: failure()
if: failure()
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
node-version: 15
- name: Install production and development dependencies
id: install
run: |
Expand All @@ -26,4 +26,4 @@ jobs:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
channel: '#npm-ci'
if: failure()
if: failure()
4 changes: 2 additions & 2 deletions .github/workflows/test_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
node-version: 15
- name: Install production and development dependencies
run: |
npm install
Expand All @@ -21,4 +21,4 @@ jobs:
uses: codecov/codecov-action@v1
with:
directory: reports/coverage
flags: unittests
flags: unittests
4 changes: 2 additions & 2 deletions .github/workflows/test_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 14
node-version: 15
- name: Install production dependencies via npm
run: |
npm install --only=prod
Expand All @@ -24,4 +24,4 @@ jobs:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
channel: '#npm-ci'
if: failure()
if: failure()
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Code of Conduct

stdlib expects community participants to adhere to the project Code of Conduct. The [full text](https://github.com/stdlib-js/stdlib/blob/develop/CODE_OF_CONDUCT.md) is available in the main project repository.
stdlib expects community participants to adhere to the project Code of Conduct. The [full text](https://github.com/stdlib-js/stdlib/blob/develop/CODE_OF_CONDUCT.md) is available in the main project repository.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Contribution Guidelines

Woot woot! If you are new to stdlib, welcome! And thanks for your interest! Guidelines for how to contribute to the project are [available](https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) in the main project repository.
Woot woot! If you are new to stdlib, welcome! And thanks for your interest! Guidelines for how to contribute to the project are [available](https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) in the main project repository.
2 changes: 1 addition & 1 deletion constructor-name/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ tape( 'the function supports environments lacking `Function.name` support', func
var v;

constructorName = proxyquire( './../lib/main.js', {
'@stdlib/utils/native-class': nativeClass
'./../../native-class': nativeClass
});

function Foo() {
Expand Down
2 changes: 1 addition & 1 deletion enumerable-properties-in/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ tape( 'the function returns an array of an object\'s own and inherited enumerabl
var i;

enumerablePropertiesIn = proxyquire( './../lib/main.js', {
'@stdlib/utils/property-symbols': propertySymbols
'./../../property-symbols': propertySymbols
});

symbols = [ '__a__', '__b__', '__c__' ];
Expand Down
2 changes: 1 addition & 1 deletion enumerable-property-symbols-in/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ tape( 'the function returns an array of an object\'s own and inherited enumerabl
var i;

enumerablePropertySymbolsIn = proxyquire( './../lib/main.js', {
'@stdlib/utils/property-symbols': propertySymbols
'./../../property-symbols': propertySymbols
});

syms = [
Expand Down
2 changes: 1 addition & 1 deletion enumerable-property-symbols/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ tape( 'the function returns an array of an object\'s own enumerable symbol prope
var i;

enumerablePropertySymbols = proxyquire( './../lib/main.js', {
'@stdlib/utils/property-symbols': propertySymbols
'./../../property-symbols': propertySymbols
});

syms = [
Expand Down
2 changes: 1 addition & 1 deletion get-prototype-of/test/test.polyfill.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ tape( 'the function returns `null` for bizarre values', function test( t ) {
var proto;

getPrototypeOf = proxyquire( './../lib/polyfill.js', {
'@stdlib/utils/native-class': nativeClass,
'./../../native-class': nativeClass,
'./proto.js': getProto
});

Expand Down
2 changes: 1 addition & 1 deletion keys/test/test.has_automation_equality_bug.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ tape( 'main export is a boolean', function test( t ) {

tape( 'the exported value is `false` if an environment does not have a `window` global', function test( t ) {
var bool = proxyquire( './../lib/has_automation_equality_bug.js', {
'@stdlib/utils/type-of': mock
'./../../type-of': mock
});

t.strictEqual( bool, false, 'returns expected value' );
Expand Down
2 changes: 1 addition & 1 deletion nonenumerable-properties-in/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ tape( 'the function returns an array of an object\'s own and inherited non-enume
var i;

nonEnumerablePropertiesIn = proxyquire( './../lib/main.js', {
'@stdlib/utils/property-symbols': propertySymbols
'./../../property-symbols': propertySymbols
});

symbols = [ '__a__', '__b__', '__c__' ];
Expand Down
2 changes: 1 addition & 1 deletion nonenumerable-property-symbols-in/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ tape( 'the function returns an array of an object\'s own and inherited non-enume
var i;

nonEnumerablePropertySymbolsIn = proxyquire( './../lib/main.js', {
'@stdlib/utils/property-symbols': propertySymbols
'./../../property-symbols': propertySymbols
});

syms = [
Expand Down
2 changes: 1 addition & 1 deletion nonenumerable-property-symbols/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ tape( 'the function returns an array of an object\'s own non-enumerable symbol p
var i;

nonEnumerablePropertySymbols = proxyquire( './../lib/main.js', {
'@stdlib/utils/property-symbols': propertySymbols
'./../../property-symbols': propertySymbols
});

syms = [
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
"scripts": {
"test": "make test",
"test-cov": "make test-cov",
"examples": "make examples"
"examples": "make examples",
"benchmark": "make benchmark"
},
"homepage": "https://github.com/stdlib-js/stdlib",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion writable-properties-in/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ tape( 'the function returns an array of an object\'s own and inherited writable
var i;

writablePropertiesIn = proxyquire( './../lib/main.js', {
'@stdlib/utils/property-symbols': propertySymbols
'./../../property-symbols': propertySymbols
});

symbols = [ '__a__', '__b__', '__c__' ];
Expand Down
2 changes: 1 addition & 1 deletion writable-property-symbols-in/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ tape( 'the function returns an array of an object\'s own and inherited writable
var i;

writablePropertySymbolsIn = proxyquire( './../lib/main.js', {
'@stdlib/utils/property-symbols': propertySymbols
'./../../property-symbols': propertySymbols
});

syms = [
Expand Down
2 changes: 1 addition & 1 deletion writable-property-symbols/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ tape( 'the function returns an array of an object\'s own writable symbol propert
var i;

writablePropertySymbols = proxyquire( './../lib/main.js', {
'@stdlib/utils/property-symbols': propertySymbols
'./../../property-symbols': propertySymbols
});

syms = [
Expand Down

0 comments on commit 59af1a2

Please sign in to comment.