@prisma-next/sql-lane 0.3.0-dev.8 → 0.3.0-pr.71.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +10 -10
package/README.md CHANGED
@@ -19,7 +19,7 @@ This package provides the relational query DSL and raw SQL helpers for building
19
19
  - `@prisma-next/contract` - Contract types and plan metadata
20
20
  - `@prisma-next/plan` - Plan helpers and error utilities
21
21
  - `@prisma-next/sql-relational-core` - Schema and column builders, AST factories
22
- - `@prisma-next/sql-target` - SQL contract types and AST definitions
22
+ - `@prisma-next/sql-contract` - SQL contract types (via `@prisma-next/sql-contract/types`)
23
23
 
24
24
  ## Exports
25
25
 
@@ -59,4 +59,4 @@ All AST construction flows through factories from `@prisma-next/sql-relational-c
59
59
 
60
60
  - `@prisma-next/sql-relational-core` - Provides schema and column builders, AST factories used by this package
61
61
  - `@prisma-next/sql-orm-lane` - ORM builder that compiles to this package's DSL primitives
62
- - `@prisma-next/sql-target` - Defines SQL contract types and AST structures
62
+ - `@prisma-next/sql-contract` - Defines SQL contract types (via `@prisma-next/sql-contract/types`)
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@prisma-next/sql-lane",
3
- "version": "0.3.0-dev.8",
3
+ "version": "0.3.0-pr.71.10",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "description": "Relational DSL and raw SQL helpers for Prisma Next",
7
7
  "dependencies": {
8
- "@prisma-next/contract": "0.3.0-dev.8",
9
- "@prisma-next/plan": "0.3.0-dev.8",
10
- "@prisma-next/sql-contract": "0.3.0-dev.8",
11
- "@prisma-next/sql-relational-core": "0.3.0-dev.8"
8
+ "@prisma-next/contract": "0.3.0-pr.71.10",
9
+ "@prisma-next/plan": "0.3.0-pr.71.10",
10
+ "@prisma-next/sql-contract": "0.3.0-pr.71.10",
11
+ "@prisma-next/sql-relational-core": "0.3.0-pr.71.10"
12
12
  },
13
13
  "devDependencies": {
14
14
  "@types/pg": "8.16.0",
@@ -17,9 +17,9 @@
17
17
  "tsup": "8.5.1",
18
18
  "typescript": "5.9.3",
19
19
  "vitest": "4.0.16",
20
- "@prisma-next/sql-contract-ts": "0.3.0-dev.8",
20
+ "@prisma-next/sql-runtime": "0.3.0-pr.71.10",
21
21
  "@prisma-next/test-utils": "0.0.1",
22
- "@prisma-next/sql-runtime": "0.3.0-dev.8"
22
+ "@prisma-next/sql-contract-ts": "0.3.0-pr.71.10"
23
23
  },
24
24
  "files": [
25
25
  "dist",
@@ -40,9 +40,9 @@
40
40
  "test": "vitest run",
41
41
  "test:coverage": "vitest run --coverage",
42
42
  "typecheck": "tsc --project tsconfig.json --noEmit",
43
- "lint": "biome check . --config-path ../../../../biome.json --error-on-warnings",
44
- "lint:fix": "biome check --write . --config-path ../../../../biome.json",
45
- "lint:fix:unsafe": "biome check --write --unsafe . --config-path ../../../../biome.json",
43
+ "lint": "biome check . --error-on-warnings",
44
+ "lint:fix": "biome check --write .",
45
+ "lint:fix:unsafe": "biome check --write --unsafe .",
46
46
  "clean": "node ../../../../scripts/clean.mjs"
47
47
  }
48
48
  }