Skip to content

Commit a4f73b5

Browse files
committed
Fix(runtime): Link issue
1 parent c04c58f commit a4f73b5

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

packages/runtime/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"description": "",
55
"main": "index.js",
66
"scripts": {
7-
"build": "tsc",
8-
"install": "cmake . && make"
7+
"build": "tsc && cmake . && make",
8+
"install": "npm run build"
99
},
1010
"author": "Dmitry Patsura <talk@dmtry.me>",
1111
"license": "MIT",

packages/runtime/tsconfig.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,8 @@
77
"target": "es2018",
88
"lib": ["es2018" ],
99
"sourceMap": true
10-
}
10+
},
11+
"files": [
12+
"index.ts"
13+
]
1114
}

0 commit comments

Comments
 (0)