Skip to content

Commit 71d59d8

Browse files
Fix: Use 2-space indentation in manifest.json files
1 parent 63abfe9 commit 71d59d8

File tree

3 files changed

+75
-73
lines changed

3 files changed

+75
-73
lines changed

lib/node_modules/@stdlib/math/base/special/rsqrt/manifest.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,5 @@
7575
]
7676
}
7777
]
78-
}
78+
}
79+
Lines changed: 72 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -1,78 +1,79 @@
11
{
22
"options": {
3-
"task": "build"
3+
"task": "build"
44
},
55
"fields": [
6-
{
7-
"field": "src",
8-
"resolve": true,
9-
"relative": true
10-
},
11-
{
12-
"field": "include",
13-
"resolve": true,
14-
"relative": true
15-
},
16-
{
17-
"field": "libraries",
18-
"resolve": false,
19-
"relative": false
20-
},
21-
{
22-
"field": "libpath",
23-
"resolve": true,
24-
"relative": false
25-
}
6+
{
7+
"field": "src",
8+
"resolve": true,
9+
"relative": true
10+
},
11+
{
12+
"field": "include",
13+
"resolve": true,
14+
"relative": true
15+
},
16+
{
17+
"field": "libraries",
18+
"resolve": false,
19+
"relative": false
20+
},
21+
{
22+
"field": "libpath",
23+
"resolve": true,
24+
"relative": false
25+
}
2626
],
2727
"confs": [
28-
{
29-
"task": "build",
30-
"src": [
31-
"./src/rsqrtf.c"
32-
],
33-
"include": [
34-
"./include"
35-
],
36-
"libraries": [
37-
"-lm"
38-
],
39-
"libpath": [],
40-
"dependencies": [
41-
"@stdlib/math/base/napi/unary",
42-
"@stdlib/math/base/special/sqrt"
43-
]
44-
},
45-
{
46-
"task": "benchmark",
47-
"src": [
48-
"./src/rsqrtf.c"
49-
],
50-
"include": [
51-
"./include"
52-
],
53-
"libraries": [
54-
"-lm"
55-
],
56-
"libpath": [],
57-
"dependencies": [
58-
"@stdlib/math/base/special/sqrt"
59-
]
60-
},
61-
{
62-
"task": "examples",
63-
"src": [
64-
"./src/rsqrtf.c"
65-
],
66-
"include": [
67-
"./include"
68-
],
69-
"libraries": [
70-
"-lm"
71-
],
72-
"libpath": [],
73-
"dependencies": [
74-
"@stdlib/math/base/special/sqrt"
75-
]
76-
}
28+
{
29+
"task": "build",
30+
"src": [
31+
"./src/rsqrt.c"
32+
],
33+
"include": [
34+
"./include"
35+
],
36+
"libraries": [
37+
"-lm"
38+
],
39+
"libpath": [],
40+
"dependencies": [
41+
"@stdlib/math/base/napi/unary",
42+
"@stdlib/math/base/special/sqrt"
43+
]
44+
},
45+
{
46+
"task": "benchmark",
47+
"src": [
48+
"./src/rsqrt.c"
49+
],
50+
"include": [
51+
"./include"
52+
],
53+
"libraries": [
54+
"-lm"
55+
],
56+
"libpath": [],
57+
"dependencies": [
58+
"@stdlib/math/base/special/sqrt"
59+
]
60+
},
61+
{
62+
"task": "examples",
63+
"src": [
64+
"./src/rsqrt.c"
65+
],
66+
"include": [
67+
"./include"
68+
],
69+
"libraries": [
70+
"-lm"
71+
],
72+
"libpath": [],
73+
"dependencies": [
74+
"@stdlib/math/base/special/sqrt"
75+
]
76+
}
7777
]
78-
}
78+
}
79+

tools/snippets/benchmark/benchmark.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ bench( pkg+'::native', opts, function benchmark( b ) {
5151
}
5252
b.pass( 'benchmark finished' );
5353
b.end();
54-
});
54+
});

0 commit comments

Comments
 (0)