Skip to content

Commit

Permalink
fix incorrect build order
Browse files Browse the repository at this point in the history
  • Loading branch information
jjyyxx committed Sep 29, 2018
1 parent c390293 commit a0ebf20
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"**/package-lock.json": true,
"package.json.lerna_backup": true,
"packages/**/node_modules": true,
"packages/**/tsconfig.json": true
// "packages/**/tsconfig.json": true
},
"editor.wordSeparators": "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?",
}
5 changes: 4 additions & 1 deletion packages/inline/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,8 @@
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"
}
},
"references": [
{ "path": "../core" }
]
}
5 changes: 4 additions & 1 deletion packages/lexer/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,8 @@
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"
}
},
"references": [
{ "path": "../core" }
]
}
4 changes: 3 additions & 1 deletion packages/parser/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
"rootDir": "src"
},
"references": [
{ "path": "../core" }
{ "path": "../core" },
{ "path": "../inline" },
{ "path": "../lexer" }
]
}
2 changes: 1 addition & 1 deletion packages/syntax/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"rootDir": "src"
},
"references": [
{ "path": "../core" }
{ "path": "../lexer" }
]
}

0 comments on commit a0ebf20

Please sign in to comment.