Skip to content

Commit

Permalink
Release v0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Aug 22, 2021
1 parent a805c1c commit c3b1b95
Show file tree
Hide file tree
Showing 14 changed files with 213 additions and 56 deletions.
61 changes: 26 additions & 35 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -29,101 +29,92 @@ trim_trailing_whitespace = true
insert_final_newline = true

# Set properties for JavaScript files:
[*.js]
indent_style = tab

[*.js.txt]
[*.{js,js.txt}]
indent_style = tab

# Set properties for JavaScript ES module files:
[*.mjs]
indent_style = tab

[*.mjs.txt]
[*.{mjs,mjs.txt}]
indent_style = tab

# Set properties for JavaScript CommonJS files:
[*.cjs]
[*.{cjs,cjs.txt}]
indent_style = tab

[*.cjs.txt]
indent_style = tab
# Set properties for JSON files:
[*.{json,json.txt}]
indent_style = space
indent_size = 2

# Set properties for TypeScript files:
[*.ts]
indent_style = tab

# Set properties for Python files:
[*.py]
[*.{py,py.txt}]
indent_style = space
indent_size = 4

# Set properties for Julia files:
[*.jl]
[*.{jl,jl.txt}]
indent_style = tab

# Set properties for R files:
[*.R]
[*.{R,R.txt}]
indent_style = tab

# Set properties for C files:
[*.c]
[*.{c,c.txt}]
indent_style = tab

# Set properties for C header files:
[*.h]
[*.{h,h.txt}]
indent_style = tab

# Set properties for C++ files:
[*.cpp]
[*.{cpp,cpp.txt}]
indent_style = tab

# Set properties for C++ header files:
[*.hpp]
[*.{hpp,hpp.txt}]
indent_style = tab

# Set properties for Fortran files:
[*.f]
[*.{f,f.txt}]
indent_style = space
indent_size = 2
insert_final_newline = false

# Set properties for shell files:
[*.sh]
[*.{sh,sh.txt}]
indent_style = tab

# Set properties for AWK files:
[*.awk]
[*.{awk,awk.txt}]
indent_style = tab

# Set properties for HTML files:
[*.html]
[*.{html,html.txt}]
indent_style = tab
tab_width = 2

# Set properties for XML files:
[*.xml]
[*.{xml,xml.txt}]
indent_style = tab
tab_width = 2

# Set properties for CSS files:
[*.css]
[*.{css,css.txt}]
indent_style = tab

# Set properties for Makefiles:
[Makefile]
indent_style = tab

[*.mk]
[*.{mk,mk.txt}]
indent_style = tab

# Set properties for Markdown files:
[*.md]
indent_style = space
indent_size = 4
trim_trailing_whitespace = false

[*.md.txt]
[*.{md,md.txt}]
indent_style = space
indent_size = 4
trim_trailing_whitespace = false
Expand All @@ -139,7 +130,7 @@ indent_style = space
indent_size = 4

# Set properties for `package.json` files:
[package.json]
[package.{json,json.txt}]
indent_style = space
indent_size = 2

Expand All @@ -164,15 +155,15 @@ indent_style = space
indent_size = 2

# Set properties for LaTeX files:
[*.tex]
[*.{tex,tex.txt}]
indent_style = tab

# Set properties for LaTeX Bibliography files:
[*.bib]
[*.{bib,bib.txt}]
indent_style = tab

# Set properties for YAML files:
[*.yml]
[*.{yml,yml.txt}]
indent_style = space
indent_size = 2

Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/setup-node@v2
with:
node-version: 15
node-version: 16
timeout-minutes: 5
- name: Install production and development dependencies
run: |
npm install || npm install || npm install
timeout-minutes: 15
- name: Run benchmarks
run: |
npm run benchmark
6 changes: 4 additions & 2 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/setup-node@v2
with:
node-version: 15
node-version: 16
timeout-minutes: 5
- name: Install production and development dependencies
run: |
npm install || npm install || npm install
timeout-minutes: 15
- name: Run examples
run: |
npm run examples
5 changes: 3 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ jobs:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/setup-node@v2
with:
node-version: 15
node-version: 16
timeout-minutes: 5
- name: Replace all GitHub links to individual packages with npm links
run: |
find . -type f -name '*.md' -print0 | xargs -0 sed -Ei 's/@stdlib\/([^:]*)\]: https:\/\/github.com\/stdlib-js/@stdlib\/\1\]: https:\/\/www.npmjs.com\/package\/@stdlib/g'
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ on:
# * is a special character in YAML so you have to quote this string
- cron: '30 1 * * 6'
workflow_dispatch:
push:

# Workflow jobs:
jobs:
Expand All @@ -34,13 +35,15 @@ jobs:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/setup-node@v2
with:
node-version: 15
node-version: 16
timeout-minutes: 5
- name: Install production and development dependencies
id: install
run: |
npm install || npm install || npm install
timeout-minutes: 15
- name: Run tests
id: tests
run: |
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/test_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/setup-node@v2
with:
node-version: 15
node-version: 16
timeout-minutes: 5
- name: Install production and development dependencies
run: |
npm install || npm install || npm install
timeout-minutes: 15
- name: Calculate test coverage
run: |
npm run test-cov || npm run test-cov || npm run test-cov
timeout-minutes: 15
- name: Upload coverage to Codecov
id: upload
uses: codecov/codecov-action@v1
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/test_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,15 @@ jobs:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 15
node-version: 16
timeout-minutes: 5
- name: Install production dependencies via npm
run: |
npm install --only=prod || npm install --only=prod || npm install --only=prod
timeout-minutes: 15
- uses: act10ns/slack@v1
with:
status: ${{ job.status }}
Expand Down
5 changes: 1 addition & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

# Files #
#########
.postinstall.json
package.json.copy

# Directories #
###############
Expand Down Expand Up @@ -70,9 +70,6 @@ tmp/
*.tar
*.zip

# Make an exception for compressed distributable files:
!dist/*.gz

# Logs and databases #
######################
*.log
Expand Down
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ Makefile
**/examples/
reports/
support/
scripts/
**/tmp/
workshops/

Expand Down
4 changes: 3 additions & 1 deletion data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -2475,8 +2475,8 @@ HARRISON_BOSTON_HOUSE_PRICES_CORRECTED,"HARRISON_BOSTON_HOUSE_PRICES_CORRECTED()
hasArrayBufferSupport,"hasArrayBufferSupport()"
hasAsyncAwaitSupport,"hasAsyncAwaitSupport()"
hasAsyncIteratorSymbolSupport,"hasAsyncIteratorSymbolSupport()"
hasBigIntSupport,"hasBigIntSupport()"
hasBigInt64ArraySupport,"hasBigInt64ArraySupport()"
hasBigIntSupport,"hasBigIntSupport()"
hasBigUint64ArraySupport,"hasBigUint64ArraySupport()"
hasClassSupport,"hasClassSupport()"
hasDefinePropertiesSupport,"hasDefinePropertiesSupport()"
Expand Down Expand Up @@ -3751,6 +3751,8 @@ reRegExp.REGEXP,"reRegExp.REGEXP"
rescape,"rescape( str )"
resolveParentPath,"resolveParentPath( path[, options], clbk )"
resolveParentPath.sync,"resolveParentPath.sync( path[, options] )"
resolveParentPathBy,"resolveParentPathBy( path[, options], predicate, clbk )"
resolveParentPathBy.sync,"resolveParentPathBy.sync( path[, options], predicate )"
reUncPath,"reUncPath()"
reUncPath.REGEXP,"reUncPath.REGEXP"
reUtf16SurrogatePair,"reUtf16SurrogatePair()"
Expand Down
2 changes: 1 addition & 1 deletion data/data.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stdlib/repl-signature",
"version": "0.0.6",
"version": "0.0.7",
"description": "Return the signature(s) associated with a provided alias.",
"license": "Apache-2.0",
"author": {
Expand All @@ -19,11 +19,11 @@
"main": "./lib",
"directories": {
"benchmark": "./benchmark",
"bin": "./bin",
"data": "./data",
"doc": "./docs",
"example": "./examples",
"lib": "./lib",
"scripts": "./scripts",
"test": "./test"
},
"types": "./docs/types",
Expand Down
Loading

0 comments on commit c3b1b95

Please sign in to comment.