Skip to content

Commit 208374c

Browse files
committed
Fix frontend compiling pipeline
1 parent b326d11 commit 208374c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

frontend/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ task assemble(type: YarnTask) {
1515

1616
task bundle(type: YarnTask) {
1717
args = ['run', 'build']
18-
dependsOn yarn_install
18+
dependsOn assemble
1919
}
2020

2121
task lint(type: YarnTask) {

frontend/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
],
1919
"scripts": {
2020
"test": "yarn workspaces run test",
21-
"tsc": "yarn workspaces run tsc",
22-
"start": "yarn workspace @codefreak/breeze-app generate && yarn run tsc && yarn workspace @codefreak/breeze-app start",
21+
"tsc": "yarn workspace @codefreak/tree-utils tsc && yarn workspace @codefreak/breeze-app tsc",
22+
"start": "yarn run tsc && yarn workspace @codefreak/breeze-app start",
2323
"build": "yarn run tsc && yarn workspace @codefreak/breeze-app build",
2424
"lint": "yarn run lint:eslint && yarn run lint:prettier",
2525
"lint:eslint": "eslint \"packages/*/src/**/*.{ts,tsx,js,jsx}\"",

0 commit comments

Comments
 (0)