build issues #2

Open
opened 2025-08-21 14:23:10 +00:00 by zramsay · 2 comments

first:

│ > next build
│ 
│    ▲ Next.js 15.2.1
│    - Environments: .env.local
│ 
│    Creating an optimized production build ...
│ Browserslist: browsers data (caniuse-lite) is 6 months old. Please run:
│   npx update-browserslist-db@latest
│   Why you should do it regularly: https://github.com/browserslist/update-db#readme
│  ✓ Compiled successfully
│    Linting and checking validity of types  ..Failed to compile.
│ 
│ ./src/app/(web3-authenticated)/(dashboard)/projects/[provider]/ps/(create)/cr/page.tsx:23:40
│ Type error: Property 'resetOnboarding' does not exist on type 'OnboardingState'.
│ 
│   21 |   const [mounted, setMounted] = useState(false)
│   22 |   

second:

now i get `│ ./src/components/onboarding/configure-step/configure-step.tsx:47:14
  │ Type error: Property 'deploymentType' does not exist on type 'OnboardingFormData'.
  │ 
  │   45 |   // Form state
  │   46 |   const [deployOption, setDeployOption] = useState<'auction' | 'lrn'>(
  │ > 47 |     formData.deploymentType as ('auction' | 'lrn') || 'lrn' // Default to LRN for simplicity
  │      |              ^
  │   48 |   )
  │   49 |   const [numberOfDeployers, setNumberOfDeployers] = useState<string>(
  │   50 |     formData.deployerCount || "1"
  │ Next.js build worker exited with code: 1 and signal: null
  │  ELIFECYCLE  Command failed with exit code 1.
  │ command finished with error: command (/root/laconic-deployer-frontend/apps/deploy-fe) 
  /root/.local/share/pnpm/.tools/@pnpm+linux-x64/10.5.1/bin/p
  │ npm run build exited (1)
  └────>
  deploy-fe#build: command (/root/laconic-deployer-frontend/apps/deploy-fe) 
  /root/.local/share/pnpm/.tools/@pnpm+linux-x64/10.5.1/bin/pnpm run build exited (1)

third:

│ 
│    Creating an optimized production build ...
│ Browserslist: browsers data (caniuse-lite) is 6 months old. Please run:
│   npx update-browserslist-db@latest
│   Why you should do it regularly: https://github.com/browserslist/update-db#readme
│  ✓ Compiled successfully
│    Linting and checking validity of types  ...Failed to compile.
│ 
│ ./src/components/onboarding/connect-step/connect-step.tsx:36:69
│ Type error: Property 'githubRepo' does not exist on type 'OnboardingFormData'.
│ 
│   34 |   
│   35 |   // Repository vs Template selection
│ > 36 |   const [selectedRepo, setSelectedRepo] = useState<string>(formData.githubRepo || '')
│      |                                                                     ^
│   37 |   const [selectedTemplate, setSelectedTemplate] = useState(
│   38 |     adaptOptionalTemplate(formData.template)
│   39 |   )
│ Next.js build worker exited with code: 1 and signal: null
│  ELIFECYCLE  Command failed with exit code 1.
│ command finished with error: command (/root/laconic-deployer-frontend/apps/deploy-fe) /root/.local/share/pnpm/.tools/@pnpm+linux-x64/10.5.1/bin/p
│ npm run build exited (1)
└────>
deploy-fe#build: command (/root/laconic-deployer-frontend/apps/deploy-fe) /root/.local/share/pnpm/.tools/@pnpm+linux-x64/10.5.1/bin/pnpm run build exited (1)

 Tasks:    2 successful, 3 total
Cached:    2 cached, 3 total
  Time:    37.924s 
Failed:    deploy-fe#build

 ERROR  run failed: command  exited (1)
 ELIFECYCLE  Command failed with exit code 1.

fourth:

│    ▲ Next.js 15.2.1
│ 
│    Creating an optimized production build ...
│ Browserslist: browsers data (caniuse-lite) is 6 months old. Please run:
│   npx update-browserslist-db@latest
│   Why you should do it regularly: https://github.com/browserslist/update-db#readme
│  ✓ Compiled successfully
│    Linting and checking validity of types  .Failed to compile.
│ 
│ ./src/components/onboarding/deploy-step/deploy-step.tsx:35:35
│ Type error: Property 'deploymentMode' does not exist on type 'OnboardingFormData'.
│ 
│   33 |   
│   34 |   // Determine deployment type and get the right deploying state
│ > 35 |   const isTemplateMode = formData.deploymentMode === 'template'
│      |                                   ^
│   36 |   const isDeploying = isTemplateMode ? isTemplateDeploying : isRepoDeploying
│   37 |   
│   38 |   // Handle hydration mismatch by waiting for mount
│ Next.js build worker exited with code: 1 and signal: null
│  ELIFECYCLE  Command failed with exit code 1.
│ command finished with error: command (/root/laconic-deployer-frontend/apps/deploy-fe) /root/.local/share/pnpm/.tools/@pnpm+linux-x64/10.5.1/bin/p
│ npm run build exited (1)
└────>
deploy-fe#build: command (/root/laconic-deployer-frontend/apps/deploy-fe) /root/.local/share/pnpm/.tools/@pnpm+linux-x64/10.5.1/bin/pnpm run build exited (1)

 Tasks:    2 successful, 3 total
Cached:    2 cached, 3 total
  Time:    40.849s 
Failed:    deploy-fe#build

 ERROR  run failed: command  exited (1)
 ELIFECYCLE  Command failed with exit code 1.

firfth:

│ Type error: Type 'import("/root/laconic-deployer-frontend/apps/deploy-fe/src/components/onboarding/useOnboarding").Step' is not assignable to typ
│ e 'import("/root/laconic-deployer-frontend/apps/deploy-fe/src/components/onboarding/types").Step'.
│   Type '"success"' is not assignable to type 'Step'.
│ 
│   35 |     // <OnboardingContainer data-oid="yb4gz7q">
│   36 |     <div className="flex w-full flex-row">
│ > 37 |       <SidebarNav currentStep={currentStep} />
│      |                   ^
│   38 |       <ScrollArea className="flex-1 mt-6 mb-6 w-full">
│   39 |         {currentStep === 'connect' && <ConnectStep />}
│   40 |         {currentStep === 'configure' && <ConfigureStep />}
│ Next.js build worker exited with code: 1 and signal: null
│  ELIFECYCLE  Command failed with exit code 1.
first: ``` │ > next build │ │ ▲ Next.js 15.2.1 │ - Environments: .env.local │ │ Creating an optimized production build ... │ Browserslist: browsers data (caniuse-lite) is 6 months old. Please run: │ npx update-browserslist-db@latest │ Why you should do it regularly: https://github.com/browserslist/update-db#readme │ ✓ Compiled successfully │ Linting and checking validity of types ..Failed to compile. │ │ ./src/app/(web3-authenticated)/(dashboard)/projects/[provider]/ps/(create)/cr/page.tsx:23:40 │ Type error: Property 'resetOnboarding' does not exist on type 'OnboardingState'. │ │ 21 | const [mounted, setMounted] = useState(false) │ 22 | ``` second: ``` now i get `│ ./src/components/onboarding/configure-step/configure-step.tsx:47:14 │ Type error: Property 'deploymentType' does not exist on type 'OnboardingFormData'. │ │ 45 | // Form state │ 46 | const [deployOption, setDeployOption] = useState<'auction' | 'lrn'>( │ > 47 | formData.deploymentType as ('auction' | 'lrn') || 'lrn' // Default to LRN for simplicity │ | ^ │ 48 | ) │ 49 | const [numberOfDeployers, setNumberOfDeployers] = useState<string>( │ 50 | formData.deployerCount || "1" │ Next.js build worker exited with code: 1 and signal: null │  ELIFECYCLE  Command failed with exit code 1. │ command finished with error: command (/root/laconic-deployer-frontend/apps/deploy-fe) /root/.local/share/pnpm/.tools/@pnpm+linux-x64/10.5.1/bin/p │ npm run build exited (1) └────> deploy-fe#build: command (/root/laconic-deployer-frontend/apps/deploy-fe) /root/.local/share/pnpm/.tools/@pnpm+linux-x64/10.5.1/bin/pnpm run build exited (1) ``` third: ``` │ │ Creating an optimized production build ... │ Browserslist: browsers data (caniuse-lite) is 6 months old. Please run: │ npx update-browserslist-db@latest │ Why you should do it regularly: https://github.com/browserslist/update-db#readme │ ✓ Compiled successfully │ Linting and checking validity of types ...Failed to compile. │ │ ./src/components/onboarding/connect-step/connect-step.tsx:36:69 │ Type error: Property 'githubRepo' does not exist on type 'OnboardingFormData'. │ │ 34 | │ 35 | // Repository vs Template selection │ > 36 | const [selectedRepo, setSelectedRepo] = useState<string>(formData.githubRepo || '') │ | ^ │ 37 | const [selectedTemplate, setSelectedTemplate] = useState( │ 38 | adaptOptionalTemplate(formData.template) │ 39 | ) │ Next.js build worker exited with code: 1 and signal: null │  ELIFECYCLE  Command failed with exit code 1. │ command finished with error: command (/root/laconic-deployer-frontend/apps/deploy-fe) /root/.local/share/pnpm/.tools/@pnpm+linux-x64/10.5.1/bin/p │ npm run build exited (1) └────> deploy-fe#build: command (/root/laconic-deployer-frontend/apps/deploy-fe) /root/.local/share/pnpm/.tools/@pnpm+linux-x64/10.5.1/bin/pnpm run build exited (1) Tasks: 2 successful, 3 total Cached: 2 cached, 3 total Time: 37.924s Failed: deploy-fe#build ERROR run failed: command exited (1)  ELIFECYCLE  Command failed with exit code 1. ``` fourth: ``` │ ▲ Next.js 15.2.1 │ │ Creating an optimized production build ... │ Browserslist: browsers data (caniuse-lite) is 6 months old. Please run: │ npx update-browserslist-db@latest │ Why you should do it regularly: https://github.com/browserslist/update-db#readme │ ✓ Compiled successfully │ Linting and checking validity of types .Failed to compile. │ │ ./src/components/onboarding/deploy-step/deploy-step.tsx:35:35 │ Type error: Property 'deploymentMode' does not exist on type 'OnboardingFormData'. │ │ 33 | │ 34 | // Determine deployment type and get the right deploying state │ > 35 | const isTemplateMode = formData.deploymentMode === 'template' │ | ^ │ 36 | const isDeploying = isTemplateMode ? isTemplateDeploying : isRepoDeploying │ 37 | │ 38 | // Handle hydration mismatch by waiting for mount │ Next.js build worker exited with code: 1 and signal: null │  ELIFECYCLE  Command failed with exit code 1. │ command finished with error: command (/root/laconic-deployer-frontend/apps/deploy-fe) /root/.local/share/pnpm/.tools/@pnpm+linux-x64/10.5.1/bin/p │ npm run build exited (1) └────> deploy-fe#build: command (/root/laconic-deployer-frontend/apps/deploy-fe) /root/.local/share/pnpm/.tools/@pnpm+linux-x64/10.5.1/bin/pnpm run build exited (1) Tasks: 2 successful, 3 total Cached: 2 cached, 3 total Time: 40.849s Failed: deploy-fe#build ERROR run failed: command exited (1)  ELIFECYCLE  Command failed with exit code 1. ``` firfth: ``` │ Type error: Type 'import("/root/laconic-deployer-frontend/apps/deploy-fe/src/components/onboarding/useOnboarding").Step' is not assignable to typ │ e 'import("/root/laconic-deployer-frontend/apps/deploy-fe/src/components/onboarding/types").Step'. │ Type '"success"' is not assignable to type 'Step'. │ │ 35 | // <OnboardingContainer data-oid="yb4gz7q"> │ 36 | <div className="flex w-full flex-row"> │ > 37 | <SidebarNav currentStep={currentStep} /> │ | ^ │ 38 | <ScrollArea className="flex-1 mt-6 mb-6 w-full"> │ 39 | {currentStep === 'connect' && <ConnectStep />} │ 40 | {currentStep === 'configure' && <ConfigureStep />} │ Next.js build worker exited with code: 1 and signal: null │  ELIFECYCLE  Command failed with exit code 1. ```
Author

sixth:

│ > deploy-fe@0.0.1 build /root/laconic-deployer-frontend/apps/deploy-fe
│ > next build
│ 
│    ▲ Next.js 15.2.1
│ 
│    Creating an optimized production build ...
│ Browserslist: browsers data (caniuse-lite) is 6 months old. Please run:
│   npx update-browserslist-db@latest
│   Why you should do it regularly: https://github.com/browserslist/update-db#readme
│  ✓ Compiled successfully
│  ✓ Linting and checking validity of types    
│  ✓ Collecting page data    
│ Error occurred prerendering page "/_not-found". Read more: https://nextjs.org/docs/messages/prerender-error
│ Error: @clerk/clerk-react: Missing publishableKey. You can get your key at https://dashboard.clerk.com/last-active?path=api-keys.
│     at Object.throwMissingPublishableKeyError (/root/laconic-deployer-frontend/apps/deploy-fe/.next/server/chunks/4931.js:101:1546)
│     at /root/laconic-deployer-frontend/apps/deploy-fe/.next/server/chunks/4931.js:22:140182
│     at nL (/root/laconic-deployer-frontend/node_modules/.pnpm/next@15.2.1_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/comp
│ iled/next-server/app-page.runtime.prod.js:76:46773)
│     at nF (/root/laconic-deployer-frontend/node_modules/.pnpm/next@15.2.1_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/comp
│ iled/next-server/app-page.runtime.prod.js:76:48548)
│     at nq (/root/laconic-deployer-frontend/node_modules/.pnpm/next@15.2.1_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/comp
│ iled/next-server/app-page.runtime.prod.js:76:67434)
│     at nH (/root/laconic-deployer-frontend/node_modules/.pnpm/next@15.2.1_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/comp
│ iled/next-server/app-page.runtime.prod.js:76:65009)
│     at nU (/root/laconic-deployer-frontend/node_modules/.pnpm/next@15.2.1_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/comp
│ iled/next-server/app-page.runtime.prod.js:76:47125)
│     at nF (/root/laconic-deployer-frontend/node_modules/.pnpm/next@15.2.1_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/comp
│ iled/next-server/app-page.runtime.prod.js:76:48594)
│     at nq (/root/laconic-deployer-frontend/node_modules/.pnpm/next@15.2.1_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/comp
│ iled/next-server/app-page.runtime.prod.js:76:67434)
│     at nH (/root/laconic-deployer-frontend/node_modules/.pnpm/next@15.2.1_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/comp
│ iled/next-server/app-page.runtime.prod.js:76:65009)
│ Export encountered an error on /_not-found/page: /_not-found, exiting the build.
│  ⨯ Next.js build worker exited with code: 1 and signal: null
│  ELIFECYCLE  Command failed with exit code 1.
│ command finished with error: command (/root/laconic-deployer-frontend/apps/deploy-fe) /root/.local/share/pnpm/.tools/@pnpm+linux-x64/10.5.1/bin/p
│ npm run build exited (1)
└────>
deploy-fe#build: command (/root/laconic-deployer-frontend/apps/deploy-fe) /root/.local/share/pnpm/.tools/@pnpm+linux-x64/10.5.1/bin/pnpm run build exited (1)

 Tasks:    2 successful, 3 total
Cached:    2 cached, 3 total
  Time:    45.435s 
Failed:    deploy-fe#build

 ERROR  run failed: command  exited (1)
 ELIFECYCLE  Command failed with exit code 1.
sixth: ``` │ │ > deploy-fe@0.0.1 build /root/laconic-deployer-frontend/apps/deploy-fe │ > next build │ │ ▲ Next.js 15.2.1 │ │ Creating an optimized production build ... │ Browserslist: browsers data (caniuse-lite) is 6 months old. Please run: │ npx update-browserslist-db@latest │ Why you should do it regularly: https://github.com/browserslist/update-db#readme │ ✓ Compiled successfully │ ✓ Linting and checking validity of types │ ✓ Collecting page data │ Error occurred prerendering page "/_not-found". Read more: https://nextjs.org/docs/messages/prerender-error │ Error: @clerk/clerk-react: Missing publishableKey. You can get your key at https://dashboard.clerk.com/last-active?path=api-keys. │ at Object.throwMissingPublishableKeyError (/root/laconic-deployer-frontend/apps/deploy-fe/.next/server/chunks/4931.js:101:1546) │ at /root/laconic-deployer-frontend/apps/deploy-fe/.next/server/chunks/4931.js:22:140182 │ at nL (/root/laconic-deployer-frontend/node_modules/.pnpm/next@15.2.1_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/comp │ iled/next-server/app-page.runtime.prod.js:76:46773) │ at nF (/root/laconic-deployer-frontend/node_modules/.pnpm/next@15.2.1_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/comp │ iled/next-server/app-page.runtime.prod.js:76:48548) │ at nq (/root/laconic-deployer-frontend/node_modules/.pnpm/next@15.2.1_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/comp │ iled/next-server/app-page.runtime.prod.js:76:67434) │ at nH (/root/laconic-deployer-frontend/node_modules/.pnpm/next@15.2.1_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/comp │ iled/next-server/app-page.runtime.prod.js:76:65009) │ at nU (/root/laconic-deployer-frontend/node_modules/.pnpm/next@15.2.1_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/comp │ iled/next-server/app-page.runtime.prod.js:76:47125) │ at nF (/root/laconic-deployer-frontend/node_modules/.pnpm/next@15.2.1_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/comp │ iled/next-server/app-page.runtime.prod.js:76:48594) │ at nq (/root/laconic-deployer-frontend/node_modules/.pnpm/next@15.2.1_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/comp │ iled/next-server/app-page.runtime.prod.js:76:67434) │ at nH (/root/laconic-deployer-frontend/node_modules/.pnpm/next@15.2.1_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/comp │ iled/next-server/app-page.runtime.prod.js:76:65009) │ Export encountered an error on /_not-found/page: /_not-found, exiting the build. │ ⨯ Next.js build worker exited with code: 1 and signal: null │  ELIFECYCLE  Command failed with exit code 1. │ command finished with error: command (/root/laconic-deployer-frontend/apps/deploy-fe) /root/.local/share/pnpm/.tools/@pnpm+linux-x64/10.5.1/bin/p │ npm run build exited (1) └────> deploy-fe#build: command (/root/laconic-deployer-frontend/apps/deploy-fe) /root/.local/share/pnpm/.tools/@pnpm+linux-x64/10.5.1/bin/pnpm run build exited (1) Tasks: 2 successful, 3 total Cached: 2 cached, 3 total Time: 45.435s Failed: deploy-fe#build ERROR run failed: command exited (1)  ELIFECYCLE  Command failed with exit code 1. ```
Author
root@ubuntu-s-2vcpu-8gb-160gb-intel-tor1-01:~/laconic-deployer-frontend/apps/backend# pnpm start
> @qwrk/backend@1.0.0 start /root/laconic-deployer-frontend/apps/backend
> DEBUG=snowball:* node --enable-source-maps ./dist/index.js

  snowball:utils config {
  "server": {
    "host": "127.0.0.1",
    "port": 8000,
    "gqlPath": "/graphql",
    "session": {
      "secret": "",
      "appOriginUrl": "http://localhost:3000",
      "trustProxy": false,
      "domain": "localhost"
    }
  },
  "database": {
    "dbPath": "db/snowball"
  },
  "gitHub": {
    "webhookUrl": "",
    "oAuth": {
      "clientId": "",
      "clientSecret": ""
    }
  },
  "registryConfig": {
    "fetchDeploymentRecordDelay": 5000,
    "checkAuctionStatusDelay": 5000,
    "restEndpoint": "http://localhost:1317",
    "gqlEndpoint": "http://localhost:9473/api",
    "chainId": "laconic_9000-1",
    "privateKey": "",
    "bondId": "",
    "authority": "",
    "fee": {
      "gas": "",
      "fees": "",
      "gasPrice": "1alnt"
    }
  },
  "auction": {
    "commitFee": "100000",
    "commitsDuration": "120s",
    "revealFee": "100000",
    "revealsDuration": "120s",
    "denom": "alnt"
  }
} +0ms
  snowball:server Error: The module '/root/laconic-deployer-frontend/node_modules/.pnpm/better-sqlite3@9.6.0/node_modules/better-sqlite3/build/Release/better_sqlite3.node'
  snowball:server was compiled against a different Node.js version using
  snowball:server NODE_MODULE_VERSION 115. This version of Node.js requires
  snowball:server NODE_MODULE_VERSION 127. Please try re-compiling or re-installing
  snowball:server the module (for instance, using `npm rebuild` or `npm install`).
  snowball:server     at Object..node (node:internal/modules/cjs/loader:1732:18)
  snowball:server     at Module.load (node:internal/modules/cjs/loader:1289:32)
  snowball:server     at Function._load (node:internal/modules/cjs/loader:1108:12)
  snowball:server     at TracingChannel.traceSync (node:diagnostics_channel:322:14)
  snowball:server     at wrapModuleLoad (node:internal/modules/cjs/loader:220:24)
  snowball:server     at Module.require (node:internal/modules/cjs/loader:1311:12)
  snowball:server     at require (node:internal/modules/helpers:136:16)
  snowball:server     at bindings (/root/laconic-deployer-frontend/node_modules/.pnpm/bindings@1.5.0/node_modules/bindings/bindings.js:112:48)
  snowball:server     at new Database (/root/laconic-deployer-frontend/node_modules/.pnpm/better-sqlite3@9.6.0/node_modules/better-sqlite3/lib/database.js:48:64)
  snowball:server     at BetterSqlite3Driver.Database [as sqlite] (/root/laconic-deployer-frontend/node_modules/.pnpm/better-sqlite3@9.6.0/node_modules/better-sqlite3/lib/database.js:11:10) +0ms
``` root@ubuntu-s-2vcpu-8gb-160gb-intel-tor1-01:~/laconic-deployer-frontend/apps/backend# pnpm start > @qwrk/backend@1.0.0 start /root/laconic-deployer-frontend/apps/backend > DEBUG=snowball:* node --enable-source-maps ./dist/index.js snowball:utils config { "server": { "host": "127.0.0.1", "port": 8000, "gqlPath": "/graphql", "session": { "secret": "", "appOriginUrl": "http://localhost:3000", "trustProxy": false, "domain": "localhost" } }, "database": { "dbPath": "db/snowball" }, "gitHub": { "webhookUrl": "", "oAuth": { "clientId": "", "clientSecret": "" } }, "registryConfig": { "fetchDeploymentRecordDelay": 5000, "checkAuctionStatusDelay": 5000, "restEndpoint": "http://localhost:1317", "gqlEndpoint": "http://localhost:9473/api", "chainId": "laconic_9000-1", "privateKey": "", "bondId": "", "authority": "", "fee": { "gas": "", "fees": "", "gasPrice": "1alnt" } }, "auction": { "commitFee": "100000", "commitsDuration": "120s", "revealFee": "100000", "revealsDuration": "120s", "denom": "alnt" } } +0ms snowball:server Error: The module '/root/laconic-deployer-frontend/node_modules/.pnpm/better-sqlite3@9.6.0/node_modules/better-sqlite3/build/Release/better_sqlite3.node' snowball:server was compiled against a different Node.js version using snowball:server NODE_MODULE_VERSION 115. This version of Node.js requires snowball:server NODE_MODULE_VERSION 127. Please try re-compiling or re-installing snowball:server the module (for instance, using `npm rebuild` or `npm install`). snowball:server at Object..node (node:internal/modules/cjs/loader:1732:18) snowball:server at Module.load (node:internal/modules/cjs/loader:1289:32) snowball:server at Function._load (node:internal/modules/cjs/loader:1108:12) snowball:server at TracingChannel.traceSync (node:diagnostics_channel:322:14) snowball:server at wrapModuleLoad (node:internal/modules/cjs/loader:220:24) snowball:server at Module.require (node:internal/modules/cjs/loader:1311:12) snowball:server at require (node:internal/modules/helpers:136:16) snowball:server at bindings (/root/laconic-deployer-frontend/node_modules/.pnpm/bindings@1.5.0/node_modules/bindings/bindings.js:112:48) snowball:server at new Database (/root/laconic-deployer-frontend/node_modules/.pnpm/better-sqlite3@9.6.0/node_modules/better-sqlite3/lib/database.js:48:64) snowball:server at BetterSqlite3Driver.Database [as sqlite] (/root/laconic-deployer-frontend/node_modules/.pnpm/better-sqlite3@9.6.0/node_modules/better-sqlite3/lib/database.js:11:10) +0ms ```
Sign in to join this conversation.
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: NasSharaf/laconic-deployer-frontend#2
No description provided.