Skip to content

Commit 86586f3

Browse files
committed
Auto-generated commit
1 parent a7c3055 commit 86586f3

File tree

6 files changed

+18
-17
lines changed

6 files changed

+18
-17
lines changed

Diff for: .github/.keepalive

-1
This file was deleted.

Diff for: .github/workflows/productionize.yml

-15
Original file line numberDiff line numberDiff line change
@@ -81,21 +81,6 @@ jobs:
8181
id: transform-error-messages
8282
uses: stdlib-js/transform-errors-action@main
8383

84-
# Format error messages:
85-
- name: 'Replace double quotes with single quotes in rewritten format string error messages'
86-
run: |
87-
find . -name "*.js" -exec sed -E -i "s/Error\( format\( \"([a-zA-Z0-9]+)\"/Error\( format\( '\1'/g" {} \;
88-
89-
# Format string literal error messages:
90-
- name: 'Replace double quotes with single quotes in rewritten string literal error messages'
91-
run: |
92-
find . -name "*.js" -exec sed -E -i "s/Error\( format\(\"([a-zA-Z0-9]+)\"\)/Error\( format\( '\1' \)/g" {} \;
93-
94-
# Format code:
95-
- name: 'Replace double quotes with single quotes in inserted `require` calls'
96-
run: |
97-
find . -name "*.js" -exec sed -E -i "s/require\( ?\"@stdlib\/error-tools-fmtprodmsg\" ?\);/require\( '@stdlib\/error-tools-fmtprodmsg' \);/g" {} \;
98-
9984
# Change `@stdlib/string-format` to `@stdlib/error-tools-fmtprodmsg` in package.json if the former is a dependency, otherwise insert it as a dependency:
10085
- name: 'Update dependencies in package.json'
10186
run: |

Diff for: dist/index.d.ts

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/// <reference path="../docs/types/index.d.ts" />
2+
import hasInt16ArraySupport from '../docs/types/index';
3+
export = hasInt16ArraySupport;

Diff for: dist/index.js

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/index.js.map

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: docs/types/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
// TypeScript Version: 2.0
19+
// TypeScript Version: 4.1
2020

2121
/**
2222
* Tests for native `Int16Array` support.

0 commit comments

Comments
 (0)