[387] ./resources/scripts/routers/ServerRouter.tsx + 9 modules 24.8 KiB {6} [built] | ./resources/scripts/routers/ServerRouter.tsx 3.91 KiB [built] | ./resources/scripts/blueprint/extends/routers/ServerRouter.tsx 6.31 KiB [built] | ./resources/scripts/plugins/Websocket.ts 2.46 KiB [built] | ./resources/scripts/api/server/getWebsocketToken.ts 354 bytes [built] | + 6 hidden modules + 374 hidden modules ERROR in resources/scripts/api/server/getServer.ts:64:3 TS2322: Type '{ id: any; internalId: any; uuid: any; name: any; node: any; mcversion: any; eggId: any; nestId: any; isNodeUnderMaintenance: any; status: any; invocation: any; dockerImage: any; sftpDetails: { ip: any; port: any; }; ... 7 more ...; BlueprintFramework: { ...; }; }' is not assignable to type 'Server'. Object literal may only specify known properties, and 'eggId' does not exist in type 'Server'. 62 | mcversion: data.mcversion, 63 | > 64 | eggId: data.egg_id, | ^^^^^^^^^^^^^^^^^^ 65 | nestId: data.nest_id, isNodeUnderMaintenance: data.is_node_under_maintenance, 66 | status: data.status, 67 | invocation: data.invocation, ERROR in resources/scripts/components/elements/custom/Alert.tsx:2:23 TS2307: Cannot find module 'react-feather' or its corresponding type declarations. 1 | import React, { useEffect, useState } from 'react'; > 2 | import * as Icon from 'react-feather'; | ^^^^^^^^^^^^^^^ 3 | import styled from 'styled-components/macro'; 4 | import getTheme from '@/api/getThemeData'; 5 | import AlertDescription from '@/components/elements/custom/AlertDescription'; ERROR in resources/scripts/components/elements/custom/CollapseBtn.tsx:2:23 TS2307: Cannot find module 'react-feather' or its corresponding type declarations. 1 | import * as React from 'react'; > 2 | import * as Icon from 'react-feather'; | ^^^^^^^^^^^^^^^ 3 | import styled from 'styled-components/macro'; 4 | 5 | const HideShowIcon = styled.div` ERROR in resources/scripts/components/elements/custom/DarkModeToggler.tsx:2:23 TS2307: Cannot find module 'react-feather' or its corresponding type declarations. 1 | import * as React from 'react'; > 2 | import * as Icon from 'react-feather'; | ^^^^^^^^^^^^^^^ 3 | 4 | export default () => { 5 | if (localStorage.getItem('modes') == 'darkMode'){ ERROR in resources/scripts/components/elements/custom/social/Billing.tsx:2:23 TS2307: Cannot find module 'react-feather' or its corresponding type declarations. 1 | import React, { useEffect, useState } from 'react'; > 2 | import * as Icon from 'react-feather'; | ^^^^^^^^^^^^^^^ 3 | import getTheme from '@/api/getThemeData'; 4 | 5 | export default () => { ERROR in resources/scripts/components/elements/custom/social/Discord.tsx:2:23 TS2307: Cannot find module 'react-feather' or its corresponding type declarations. 1 | import React, { useEffect, useState } from 'react'; > 2 | import * as Icon from 'react-feather'; | ^^^^^^^^^^^^^^^ 3 | import getTheme from '@/api/getThemeData'; 4 | 5 | export default () => { ERROR in resources/scripts/components/elements/custom/social/Knowledgebase.tsx:2:23 TS2307: Cannot find module 'react-feather' or its corresponding type declarations. 1 | import React, { useEffect, useState } from 'react'; > 2 | import * as Icon from 'react-feather'; | ^^^^^^^^^^^^^^^ 3 | import getTheme from '@/api/getThemeData'; 4 | 5 | export default () => { ERROR in resources/scripts/components/elements/custom/social/Status.tsx:2:23 TS2307: Cannot find module 'react-feather' or its corresponding type declarations. 1 | import React, { useEffect, useState } from 'react'; > 2 | import * as Icon from 'react-feather'; | ^^^^^^^^^^^^^^^ 3 | import getTheme from '@/api/getThemeData'; 4 | 5 | export default () => { ERROR in resources/scripts/components/elements/custom/social/Website.tsx:2:23 TS2307: Cannot find module 'react-feather' or its corresponding type declarations. 1 | import React, { useEffect, useState } from 'react'; > 2 | import * as Icon from 'react-feather'; | ^^^^^^^^^^^^^^^ 3 | import getTheme from '@/api/getThemeData'; 4 | 5 | export default () => { ERROR in resources/scripts/components/NavigationBarServer.tsx:2:23 TS2307: Cannot find module 'react-feather' or its corresponding type declarations. 1 | import * as React from 'react'; > 2 | import * as Icon from 'react-feather'; | ^^^^^^^^^^^^^^^ 3 | import { Link, NavLink } from 'react-router-dom'; 4 | import { useStoreState } from 'easy-peasy'; 5 | import { ApplicationStore } from '@/state'; ERROR in resources/scripts/components/server/console/SideGraph.tsx:12:23 TS2307: Cannot find module 'react-feather' or its corresponding type declarations. 10 | import CPUGraph from '@/components/server/console/graphs/CPUGraph'; 11 | import styled,{ css } from 'styled-components/macro'; > 12 | import * as Icon from 'react-feather'; | ^^^^^^^^^^^^^^^ 13 | import { Connecting, Installing, Transferring } from '@/lang'; 14 | 15 | const DetailsItem = styled.div` ERROR in resources/scripts/components/server/console/TopElement.tsx:6:23 TS2307: Cannot find module 'react-feather' or its corresponding type declarations. 4 | import CopyOnClick from '@/components/elements/CopyOnClick'; 5 | import { ip } from '@/lib/formatters'; > 6 | import * as Icon from 'react-feather'; | ^^^^^^^^^^^^^^^ 7 | import Can from '@/components/elements/Can'; 8 | import PowerButtons from '@/components/server/console/PowerButtons'; 9 | import { SocketEvent, SocketRequest } from '@/components/server/events'; ERROR in resources/scripts/routers/ServerElements.tsx:20:75 TS2339: Property 'eggId' does not exist on type 'Server'. 18 | 19 | const nestId = ServerContext.useStoreState(state => state.server.data?.nestId); > 20 | const eggId = ServerContext.useStoreState(state => state.server.data?.eggId); | ^^^^^ 21 | 22 | const to = (value: string, url = false) => { 23 | return `${(url ? match.url : match.path).replace(/\/*$/, '')}/${value.replace(/^\/+/, '')}`; ERROR in resources/scripts/routers/ServerElements.tsx:63:81 TS2339: Property 'eggId' does not exist on type 'Server'. 61 | 62 | const serverNestId = ServerContext.useStoreState(state => state.server.data?.nestId); > 63 | const serverEggId = ServerContext.useStoreState(state => state.server.data?.eggId); | ^^^^^ 64 | 65 | const to = (value: string, url = false) => { 66 | return `${(url ? match.url : match.path).replace(/\/*$/, '')}/${value.replace(/^\/+/, '')}`; ERROR in resources/scripts/routers/SideBarElements.tsx:15:75 TS2339: Property 'eggId' does not exist on type 'Server'. 13 | 14 | const nestId = ServerContext.useStoreState((state) => state.server.data?.nestId); > 15 | const eggId = ServerContext.useStoreState((state) => state.server.data?.eggId); | ^^^^^ 16 | 17 | const to = (value: string, url = false) => { 18 | return `${(url ? match.url : match.path).replace(/\/*$/, '')}/${value.replace(/^\/+/, '')}`; error Command failed with exit code 2. info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. 17:28:17 INFO: Put application into production. 17:28:18 INFO: Syncing Blueprint-related database values.. 17:28:19 SUCCESS: Blueprint has completed it's installation process.