Skip to content

Commit 429b678

Browse files
committed
Boolean 2.1.0
1 parent 1b83ab4 commit 429b678

8 files changed

+29
-16
lines changed

.editorconfig

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
1-
# EditorConfig: http://EditorConfig.org
1+
# EditorConfig is awesome: https://EditorConfig.org
22

3-
# top-most EditorConfig file
43
root = true
54

6-
# Unix-style newlines with a newline ending every file
75
[*]
8-
charset = utf-8
96
end_of_line = lf
10-
trim_trailing_whitespace = true
117
insert_final_newline = true
8+
9+
[*.{js,d.ts,ts}]
10+
charset = utf-8
11+
trim_trailing_whitespace = true
1212
indent_style = space
1313
indent_size = 4
1414

15-
# 2 space indentation
16-
[*.yaml, *.yml]
15+
[package.json,*.yaml]
1716
indent_style = space
1817
indent_size = 2

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
<a name="2.1.0"></a>
2+
# [2.1.0](https://github.com/faker-javascript/boolean) (2022-01-11)
3+
* Added xo, tsd, c8.
4+
* Improved tests.
5+
16
<a name="2.0.1"></a>
27
# [2.0.1](https://github.com/faker-javascript/boolean) (2022-01-10)
38
* GitHub docs updates.

index.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export default function boolean(): boolean;

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export default function boolean() {
22
return Math.random() >= 0.5;
3-
};
3+
}

index.test-d.ts

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import {expectType} from 'tsd';
2+
import boolean from './index.js';
3+
4+
expectType<boolean>(boolean());

package.json

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fakerjs/boolean",
3-
"version": "2.0.1",
3+
"version": "2.1.0",
44
"description": "Boolean package provides functionality to generate a fake boolean value.",
55
"license": "MIT",
66
"repository": "faker-javascript/boolean",
@@ -15,14 +15,17 @@
1515
"node": ">=12"
1616
},
1717
"scripts": {
18-
"test": "c8 ava"
18+
"test": "c8 ava; xo --space 4; tsd;"
1919
},
2020
"devDependencies": {
21-
"ava": "^3.15.0",
22-
"c8": "^7.11.0"
21+
"ava": "^4.0.0",
22+
"c8": "^7.11.0",
23+
"tsd": "^0.19.1",
24+
"xo": "^0.47.0"
2325
},
2426
"files": [
25-
"index.js"
27+
"index.js",
28+
"index.d.ts"
2629
],
2730
"keywords": [
2831
"fakerjs",

test.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import boolean from './index.js';
21
import test from 'ava';
2+
import boolean from './index.js';
33

44
test('boolean return type to be boolean', t => {
5-
t.is(typeof boolean(), 'boolean');
6-
});
5+
t.is(typeof boolean(), 'boolean');
6+
});

0 commit comments

Comments
 (0)