Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions etc/typedoc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Thank you for being a part of our community! Your support is invaluable to us!
- [**Google Calendar**][stdlib-public-calendar]: calendar of public events, including [open office hours][stdlib-office-hours].
- [**Open Collective**][open-collective-stdlib]: financially support the project.
- [**Bluesky**][stdlib-bluesky]: follow us on social media.
- [**Gitter**][stdlib-gitter]: chat with project maintainers and other community members.
- [**Zulip**][stdlib-zulip]: chat with project maintainers and other community members.

## Features

Expand Down Expand Up @@ -592,7 +592,7 @@ Copyright © 2016-2025. The Stdlib [Authors][stdlib-authors].

[stdlib-bluesky]: https://bsky.app/profile/stdlib.io

[stdlib-gitter]: https://gitter.im/stdlib-js/stdlib
[stdlib-zulip]: https://stdlib.zulipchat.com

[@stdlib/math/base/special]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special

Expand Down
2 changes: 1 addition & 1 deletion etc/typedoc/theme/partials/footer.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
/
<a href="/docs/api/">Docs</a>
/
<a href="https://gitter.im/stdlib-js/stdlib">Chat</a>
<a href="https://stdlib.zulipchat.com">Chat</a>
/
<a href="https://x.com/stdlibjs">X</a>
/
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/_tools/scripts/publish_packages.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@

var CURRENT_YEAR = currentYear();

var INSTALLATION_SECTION_BASIC = [

Check warning on line 85 in lib/node_modules/@stdlib/_tools/scripts/publish_packages.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Identifier name 'INSTALLATION_SECTION_BASIC' is too long (> 25)
'<section class="installation">',
'',
'## Installation',
Expand All @@ -94,7 +94,7 @@
'</section>',
''
].join( '\n' );
var INSTALLATION_SECTION_BUNDLES = [

Check warning on line 97 in lib/node_modules/@stdlib/_tools/scripts/publish_packages.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Identifier name 'INSTALLATION_SECTION_BUNDLES' is too long (> 25)
'<section class="installation">',
'',
'## Installation',
Expand All @@ -116,7 +116,7 @@
'</section>',
''
].join( '\n' );
var INSTALLATION_SECTION_BUNDLES_CLI = [

Check warning on line 119 in lib/node_modules/@stdlib/_tools/scripts/publish_packages.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Identifier name 'INSTALLATION_SECTION_BUNDLES_CLI' is too long (> 25)
'- To use as a general utility for the command line, install the corresponding [CLI package][cli-section] globally.',
''
].join( '\n' );
Expand Down Expand Up @@ -340,7 +340,7 @@
];
var RE_ALLOWED_TOPIC_CHARS = /^[A-Z0-9-]+$/i;
var memoizedNPMversionForDeps = memoize( npmVersion );
var memoizedNPMversionForDevDeps = memoize( npmVersion );

Check warning on line 343 in lib/node_modules/@stdlib/_tools/scripts/publish_packages.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Identifier name 'memoizedNPMversionForDevDeps' is too long (> 25)


// FUNCTIONS //
Expand Down Expand Up @@ -426,7 +426,7 @@
if ( useGitHub ) {
out.devDependencies[ dep ] = 'github:stdlib-js/' + replace( dep, '@stdlib/', '' ) + '#main';
} else {
out.devDependencies[ dep ] = memoizedNPMversionForDevDeps( dep );

Check warning on line 429 in lib/node_modules/@stdlib/_tools/scripts/publish_packages.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

This line has a length of 89. Maximum allowed is 80
}
}
} else {
Expand Down Expand Up @@ -519,8 +519,8 @@
'',
'-->',
'',
'[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg',
'[chat-url]: https://app.gitter.im/#/room/#stdlib-js_stdlib:gitter.im',
'[chat-image]: https://img.shields.io/badge/zulip-join_chat-brightgreen.svg',
'[chat-url]: https://stdlib.zulipchat.com',
'',
'[stdlib]: https://github.com/stdlib-js/stdlib',
'',
Expand Down Expand Up @@ -840,7 +840,7 @@
if ( contains( readme, '<section class="links">' ) ) {
readme = replace( readme, '<section class="links">', mainRepoSection( customLicense, branch, !noBundles, extractCLI ) );
} else {
readme += mainRepoSection( customLicense, branch, !noBundles, extractCLI );

Check warning on line 843 in lib/node_modules/@stdlib/_tools/scripts/publish_packages.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

This line has a length of 83. Maximum allowed is 80
readme += '\n\n';
readme += '</section>';
readme += '\n\n';
Expand Down Expand Up @@ -1014,7 +1014,7 @@

// Ensure `npm install` does not automatically build a native add-on...
if ( pkgJSON.gypfile ) {
// TODO: consider removing this once we have determined our native add-on story for individual packages

Check warning on line 1017 in lib/node_modules/@stdlib/_tools/scripts/publish_packages.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected 'todo' comment: 'TODO: consider removing this once we...'
pkgJSON.gypfile = false;
}
pkgJSON.version = version;
Expand Down Expand Up @@ -1087,7 +1087,7 @@

// Write the current date to the `.keepalive` file...
if ( flags[ 'keep-alive' ] ) {
fs.writeFileSync( join( dist, '.github', '.keepalive' ), new Date().toISOString() + '\n' );

Check failure on line 1090 in lib/node_modules/@stdlib/_tools/scripts/publish_packages.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Use `@stdlib/fs/write-file` instead of fs.writeFileSync
}

fs.copyFileSync( join( __dirname, 'templates', 'CODE_OF_CONDUCT.md.txt' ), join( dist, 'CODE_OF_CONDUCT.md' ) );
Expand Down
Loading