root@lovinoes:/var/www/pterodactyl# chmod +x blueprint.sh
root@lovinoes:/var/www/pterodactyl# bash blueprint.sh
██
██ ██
████
[INFO] Checking dependencies..
[INFO] Updating folder placeholders..
[INFO] Copying Blueprint logo from assets.
[INFO] Enable maintenance.
INFO Application is now in maintenance mode.
[INFO] Modifying admin panel css.
[INFO] Clearing view cache.
INFO Compiled views cleared successfully.
INFO Configuration cache cleared successfully.
[INFO] Rolling admin cache refresh class name.
[INPUT] Do you want to migrate your database? (Y/n)
y
[INFO] Running database migrations..
INFO Running migrations.
2023_04_08_160505_create_blueprint_table ................................................................................................ 6ms DONE
[INFO] Changing file ownership to www-data.
[INFO] Removing placeholder files.
[INFO] Rebuilding panel assets..
yarn run v1.22.19
$ yarn run clean && cross-env NODE_ENV=production ./node_modules/.bin/webpack --mode production
$ cd public/assets && find . \( -name "*.js" -o -name "*.map" \) -type f -delete
Browserslist: caniuse-lite is outdated. Please run:
npx update-browserslist-db@latest
Why you should do it regularly: https://github.com/browserslist/update-db#readme
Hash: 33466371447b4ea8e8dc
Version: webpack 4.43.0
Time: 17972ms
Built at: 08/21/2023 3:51:05 PM
15 assets
Entrypoint main = bundle.7e3a9304.js
[12] ./node_modules/history/esm/history.js + 2 modules 30.6 KiB {5} [built]
| 3 modules
[15] ./node_modules/react-router/esm/react-router.js + 1 modules 29.2 KiB {5} [built]
| 2 modules
[17] ./resources/scripts/api/http.ts 4.07 KiB {5} [built]
[18] ./resources/scripts/state/index.ts + 7 modules 5.07 KiB {5} [built]
| ./resources/scripts/state/index.ts 359 bytes [built]
| ./resources/scripts/state/flashes.ts 1.7 KiB [built]
| ./resources/scripts/state/user.ts 1.54 KiB [built]
| ./resources/scripts/state/permissions.ts 393 bytes [built]
| ./resources/scripts/state/settings.ts 177 bytes [built]
| ./resources/scripts/state/progress.ts 408 bytes [built]
| ./resources/scripts/api/account/updateAccountEmail.ts 239 bytes [built]
| ./resources/scripts/api/getSystemPermissions.ts 277 bytes [built]
[29] ./resources/scripts/helpers.ts 1.08 KiB {5} [built]
[37] ./node_modules/react-transition-group/esm/index.js + 4 modules 22.6 KiB {5} [built]
| 5 modules
[51] ./node_modules/css-loader/dist/cjs.js??ref--6-1!./node_modules/postcss-loader/dist/cjs.js??ref--6-2!./resources/scripts/assets/tailwind.css 49.5 KiB {5} [built]
[52] ./node_modules/css-loader/dist/cjs.js??ref--6-1!./node_modules/postcss-loader/dist/cjs.js??ref--6-2!./resources/scripts/css/extensions.css 320 bytes {5} [built]
[53] ./resources/scripts/state/server/index.ts + 5 modules 5.83 KiB {5} [built]
| ./resources/scripts/state/server/index.ts 2.38 KiB [built]
| ./resources/scripts/state/server/socket.ts 284 bytes [built]
| ./resources/scripts/state/server/files.ts 1.45 KiB [built]
| ./resources/scripts/state/server/subusers.ts 575 bytes [built]
| ./resources/scripts/state/server/schedules.ts 584 bytes [built]
| ./resources/scripts/state/server/databases.ts 584 bytes [built]
[82] ./node_modules/react-i18next/dist/es/index.js + 9 modules 30.2 KiB {5} [built]
| 10 modules
[97] multi react-hot-loader/patch ./resources/scripts/index.tsx 40 bytes {5} [built]
[151] ./resources/scripts/index.tsx + 23 modules 122 KiB {5} [built]
| ./resources/scripts/index.tsx 574 bytes [built]
| ./resources/scripts/css/extensions.css 412 bytes [built]
| ./resources/scripts/i18n.ts 1.08 KiB [built]
| ./resources/scripts/assets/css/GlobalStylesheet.ts 1.94 KiB [built]
| ./resources/scripts/api/interceptors.ts 772 bytes [built]
| ./resources/scripts/assets/tailwind.css 410 bytes [built]
| + 18 hidden modules
[410] ./resources/scripts/routers/AuthenticationRouter.tsx + 9 modules 30.1 KiB {3} [built]
| ./resources/scripts/routers/AuthenticationRouter.tsx 1.57 KiB [built]
| ./resources/scripts/api/auth/login.ts 748 bytes [built]
| ./resources/scripts/api/auth/requestPasswordResetEmail.ts 295 bytes [built]
| ./resources/scripts/api/auth/performPasswordReset.ts 432 bytes [built]
| ./resources/scripts/api/auth/loginCheckpoint.ts 493 bytes [built]
| + 5 hidden modules
[411] ./resources/scripts/routers/ServerRouter.tsx + 8 modules 21.9 KiB {6} [built]
| ./resources/scripts/routers/ServerRouter.tsx 5.28 KiB [built]
| ./resources/scripts/plugins/Websocket.ts 2.46 KiB [built]
| ./resources/scripts/api/server/getWebsocketToken.ts 354 bytes [built]
| + 6 hidden modules
[413] ./resources/scripts/routers/DashboardRouter.tsx + 3 modules 21.4 KiB {4} [built]
| ./resources/scripts/routers/DashboardRouter.tsx 1.93 KiB [built]
| ./resources/scripts/api/server/getServerResourceUsage.ts 767 bytes [built]
| + 2 hidden modules
+ 399 hidden modules
ERROR in resources/scripts/routers/RouterElements.tsx:20:76
TS2339: Property 'nestId' does not exist on type 'Server'.
18 | const match = useRouteMatch<{ id: string }>();
19 |
> 20 | const nestId = ServerContext.useStoreState((state) => state.server.data?.nestId);
| ^^^^^^
21 | const eggId = ServerContext.useStoreState((state) => state.server.data?.eggId);
22 |
23 | const to = (value: string, url = false) => {
ERROR in resources/scripts/routers/RouterElements.tsx:21:75
TS2339: Property 'eggId' does not exist on type 'Server'.
19 |
20 | const nestId = ServerContext.useStoreState((state) => state.server.data?.nestId);
> 21 | const eggId = ServerContext.useStoreState((state) => state.server.data?.eggId);
| ^^^^^
22 |
23 | const to = (value: string, url = false) => {
24 | return `${(url ? match.url : match.path).replace(/\/*$/, '')}/${value.replace(/^\/+/, '')}`;
ERROR in resources/scripts/routers/RouterElements.tsx:67:82
TS2339: Property 'nestId' does not exist on type 'Server'.
65 | const location = useLocation();
66 |
> 67 | const serverNestId = ServerContext.useStoreState((state) => state.server.data?.nestId);
| ^^^^^^
68 | const serverEggId = ServerContext.useStoreState((state) => state.server.data?.eggId);
69 |
70 | const to = (value: string, url = false) => {
ERROR in resources/scripts/routers/RouterElements.tsx:68:81
TS2339: Property 'eggId' does not exist on type 'Server'.
66 |
67 | const serverNestId = ServerContext.useStoreState((state) => state.server.data?.nestId);
> 68 | const serverEggId = ServerContext.useStoreState((state) => state.server.data?.eggId);
| ^^^^^
69 |
70 | const to = (value: string, url = false) => {
71 | return `${(url ? match.url : match.path).replace(/\/*$/, '')}/${value.replace(/^\/+/, '')}`;
ERROR in resources/scripts/routers/RouterElements.tsx:78:73
TS2339: Property 'nestIds' does not exist on type 'ServerRouteDefinition'.
76 | <TransitionRouter>
77 | <Switch location={location}>
> 78 | {routes.server.map(({ path, permission, component: Component, nestIds, eggIds, nestId, eggId }) => {
| ^^^^^^^
79 | return (
80 | ((nestIds && nestIds.includes(serverNestId ?? 0)) ||
81 | (eggIds && eggIds.includes(serverEggId ?? 0)) ||
ERROR in resources/scripts/routers/RouterElements.tsx:78:82
TS2339: Property 'eggIds' does not exist on type 'ServerRouteDefinition'.
76 | <TransitionRouter>
77 | <Switch location={location}>
> 78 | {routes.server.map(({ path, permission, component: Component, nestIds, eggIds, nestId, eggId }) => {
| ^^^^^^
79 | return (
80 | ((nestIds && nestIds.includes(serverNestId ?? 0)) ||
81 | (eggIds && eggIds.includes(serverEggId ?? 0)) ||
ERROR in resources/scripts/routers/RouterElements.tsx:78:90
TS2339: Property 'nestId' does not exist on type 'ServerRouteDefinition'.
76 | <TransitionRouter>
77 | <Switch location={location}>
> 78 | {routes.server.map(({ path, permission, component: Component, nestIds, eggIds, nestId, eggId }) => {
| ^^^^^^
79 | return (
80 | ((nestIds && nestIds.includes(serverNestId ?? 0)) ||
81 | (eggIds && eggIds.includes(serverEggId ?? 0)) ||
ERROR in resources/scripts/routers/RouterElements.tsx:78:98
TS2339: Property 'eggId' does not exist on type 'ServerRouteDefinition'.
76 | <TransitionRouter>
77 | <Switch location={location}>
> 78 | {routes.server.map(({ path, permission, component: Component, nestIds, eggIds, nestId, eggId }) => {
| ^^^^^
79 | return (
80 | ((nestIds && nestIds.includes(serverNestId ?? 0)) ||
81 | (eggIds && eggIds.includes(serverEggId ?? 0)) ||
error Command failed with exit code 2.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
[INFO] Disable maintenance.
INFO Application is now live.
[INFO] Blueprint is completely open source and free. Please consider supporting us on "ptero.shop/donate".