mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 09:36:44 +00:00
fix: Add missing type check, updated turbo config (#18341)
This commit is contained in:
@@ -17,7 +17,7 @@ type Props = {
|
|||||||
|
|
||||||
const props = defineProps<Props>();
|
const props = defineProps<Props>();
|
||||||
|
|
||||||
const renameInput = useTemplateRef('renameInput');
|
const renameInput = useTemplateRef<{ forceFocus: () => void }>('renameInput');
|
||||||
|
|
||||||
const dataStoreStore = useDataStoreStore();
|
const dataStoreStore = useDataStoreStore();
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
"outputs": ["dist/**"]
|
"outputs": ["dist/**"]
|
||||||
},
|
},
|
||||||
"typecheck": {
|
"typecheck": {
|
||||||
"dependsOn": ["^typecheck"]
|
"dependsOn": ["^typecheck", "^build"]
|
||||||
},
|
},
|
||||||
"format": {},
|
"format": {},
|
||||||
"format:check": {},
|
"format:check": {},
|
||||||
|
|||||||
Reference in New Issue
Block a user