-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
44 lines (38 loc) · 910 Bytes
/
deno.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "@nativescript/yoga-node-api",
"version": "0.1.0",
"exports": "./mod.ts",
"publish": {
"include": [
"./build/libyoga_node_api.dylib",
"./src/**/*.ts",
"./mod.ts",
"./README.md"
],
"exclude": [
"./yoga/",
"./tests/",
"./package.json"
]
},
"tasks": {
"build-yoga": "cd yoga && cmake -B build -S . -DCMAKE_OSX_ARCHITECTURES=\"arm64;x86_64\" -D CMAKE_BUILD_TYPE=\"Release\" -G Ninja && cmake --build build",
"build": "cmake -B build -S . -D CMAKE_BUILD_TYPE=\"Release\" && cmake --build build",
"test": "deno test -A"
},
"imports": {
"yoga-layout": "./mod.ts"
},
"test": {
"include": ["./tests"]
},
"lint": {
"exclude": ["./yoga", "./build", "./tests"],
"rules": {
"exclude": ["no-unused-vars", "no-var"]
}
},
"fmt": {
"exclude": ["./yoga", "./build", ".vscode/"]
}
}