🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@prisma-next/language-server

Package Overview
Dependencies
Maintainers
4
Versions
136
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@prisma-next/language-server - npm Package Compare versions

Comparing version
0.16.0-dev.30
to
0.16.0-dev.31
+1
-1
dist/exports/index.d.mts.map

@@ -1,1 +0,1 @@

{"version":3,"file":"index.d.mts","names":[],"sources":["../../src/diagnostic-mapping.ts","../../src/project-artifacts.ts","../../src/server.ts","../../src/start-server.ts"],"mappings":";;;;;;;;cAMa;;;;;;UAOI;WACN,OAAO;WACP;WACA;WACA;;iBAGK,oBACd,sBAAsB,6BACZ;;;UCdK;WACN,UAAU;WACV,YAAY;WACZ,sBAAsB;;;;;;EAM/B,iCAAiC;;;;UC6BlB;EACf;;;;;EAKA,eAAe,cAAc;EAC7B,sBAAsB,cAAc;;iBA6CtB,aAAa,YAAY,aAAa;;;iBC/FtC,eAAe"}
{"version":3,"file":"index.d.mts","names":[],"sources":["../../src/diagnostic-mapping.ts","../../src/project-artifacts.ts","../../src/server.ts","../../src/start-server.ts"],"mappings":";;;;;;;;cAMa;;;;;;UAOI;WACN,OAAO;WACP;WACA;WACA;;iBAGK,oBACd,sBAAsB,6BACZ;;;UCbK;WACN,UAAU;WACV,YAAY;WACZ,sBAAsB;;;;;;EAM/B,iCAAiC;;;;UC4BlB;EACf;;;;;EAKA,eAAe,cAAc;EAC7B,sBAAsB,cAAc;;iBA6CtB,aAAa,YAAY,aAAa;;;iBC/FtC,eAAe"}

@@ -13,2 +13,3 @@ import { fileURLToPath, pathToFileURL } from "node:url";

import { hasPslInterpreter } from "@prisma-next/psl-parser/interpret";
import { InternalError } from "@prisma-next/utils/internal-error";
import { ProposedFeatures, createConnection } from "vscode-languageserver/node";

@@ -669,3 +670,3 @@ //#region src/diagnostic-mapping.ts

}
throw new Error("invariant violated: project has no open configured input — the server must drop such projects");
throw new InternalError("invariant violated: project has no open configured input — the server must drop such projects");
},

@@ -672,0 +673,0 @@ documentChanged: drop,

{
"name": "@prisma-next/language-server",
"version": "0.16.0-dev.30",
"version": "0.16.0-dev.31",
"license": "Apache-2.0",

@@ -9,8 +9,8 @@ "type": "module",

"dependencies": {
"@prisma-next/config": "0.16.0-dev.30",
"@prisma-next/config-loader": "0.16.0-dev.30",
"@prisma-next/errors": "0.16.0-dev.30",
"@prisma-next/framework-components": "0.16.0-dev.30",
"@prisma-next/psl-parser": "0.16.0-dev.30",
"@prisma-next/utils": "0.16.0-dev.30",
"@prisma-next/config": "0.16.0-dev.31",
"@prisma-next/config-loader": "0.16.0-dev.31",
"@prisma-next/errors": "0.16.0-dev.31",
"@prisma-next/framework-components": "0.16.0-dev.31",
"@prisma-next/psl-parser": "0.16.0-dev.31",
"@prisma-next/utils": "0.16.0-dev.31",
"pathe": "^2.0.3",

@@ -21,5 +21,5 @@ "vscode-languageserver": "10.1.0",

"devDependencies": {
"@prisma-next/test-utils": "0.16.0-dev.30",
"@prisma-next/tsconfig": "0.16.0-dev.30",
"@prisma-next/tsdown": "0.16.0-dev.30",
"@prisma-next/test-utils": "0.16.0-dev.31",
"@prisma-next/tsconfig": "0.16.0-dev.31",
"@prisma-next/tsdown": "0.16.0-dev.31",
"@types/node": "25.9.4",

@@ -26,0 +26,0 @@ "tsdown": "0.22.8",

import { buildSymbolTable, type SymbolTable } from '@prisma-next/psl-parser';
import type { DocumentAst, SourceFile } from '@prisma-next/psl-parser/syntax';
import { InternalError } from '@prisma-next/utils/internal-error';
import type { ProjectInterpretation } from './config-resolution';

@@ -136,3 +137,3 @@ import { type LspDiagnostic, mapInterpreterDiagnostics } from './diagnostic-mapping';

// fabricated empty symbolTable that would mask the broken invariant.
throw new Error(
throw new InternalError(
'invariant violated: project has no open configured input — the server must drop such projects',

@@ -139,0 +140,0 @@ );

Sorry, the diff of this file is too big to display