Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico committed May 7, 2024
1 parent 205bd3c commit a6cd54c
Show file tree
Hide file tree
Showing 18 changed files with 3,362 additions and 3,404 deletions.
98 changes: 46 additions & 52 deletions packages/@biomejs/backend-jsonrpc/package.json
Original file line number Diff line number Diff line change
@@ -1,54 +1,48 @@
{
"name": "@biomejs/backend-jsonrpc",
"version": "1.7.3",
"main": "dist/index.js",
"scripts": {
"test": "vitest",
"test:ci": "pnpm build && vitest run",
"tsc": "tsc --noEmit",
"build": "tsc"
},
"files": [
"dist/",
"README.md",
"LICENSE-APACHE",
"LICENSE-MIT",
"ROME-LICENSE-MIT"
],
"homepage": "https://biomejs.dev",
"repository": {
"type": "git",
"url": "https://github.com/biomejs/biome.git",
"directory": "npm/backend-jsonrpc"
},
"author": "Biome Developers and Contributors",
"bugs": "https://github.com/biomejs/biome/issues",
"description": "Bindings to the JSON-RPC Workspace API of the Biome daemon",
"keywords": [
"JavaScript",
"TypeScript",
"format",
"lint",
"toolchain"
],
"engines": {
"node": ">=14.21.3"
},
"license": "MIT OR Apache-2.0",
"devDependencies": {
"@types/node": "20.12.8",
"typescript": "5.4.5",
"vite": "5.2.11",
"vitest": "1.6.0"
},
"optionalDependencies": {
"@biomejs/cli-win32-x64": "1.7.3",
"@biomejs/cli-win32-arm64": "1.7.3",
"@biomejs/cli-darwin-x64": "1.7.3",
"@biomejs/cli-darwin-arm64": "1.7.3",
"@biomejs/cli-linux-x64": "1.7.3",
"@biomejs/cli-linux-arm64": "1.7.3",
"@biomejs/cli-linux-x64-musl": "1.7.3",
"@biomejs/cli-linux-arm64-musl": "1.7.3"
}
"name": "@biomejs/backend-jsonrpc",
"version": "1.7.3",
"main": "dist/index.js",
"scripts": {
"test": "vitest",
"test:ci": "pnpm build && vitest run",
"tsc": "tsc --noEmit",
"build": "tsc"
},
"files": [
"dist/",
"README.md",
"LICENSE-APACHE",
"LICENSE-MIT",
"ROME-LICENSE-MIT"
],
"homepage": "https://biomejs.dev",
"repository": {
"type": "git",
"url": "https://github.com/biomejs/biome.git",
"directory": "npm/backend-jsonrpc"
},
"author": "Biome Developers and Contributors",
"bugs": "https://github.com/biomejs/biome/issues",
"description": "Bindings to the JSON-RPC Workspace API of the Biome daemon",
"keywords": ["JavaScript", "TypeScript", "format", "lint", "toolchain"],
"engines": {
"node": ">=14.21.3"
},
"license": "MIT OR Apache-2.0",
"devDependencies": {
"@types/node": "20.12.8",
"typescript": "5.4.5",
"vite": "5.2.11",
"vitest": "1.6.0"
},
"optionalDependencies": {
"@biomejs/cli-win32-x64": "1.7.3",
"@biomejs/cli-win32-arm64": "1.7.3",
"@biomejs/cli-darwin-x64": "1.7.3",
"@biomejs/cli-darwin-arm64": "1.7.3",
"@biomejs/cli-linux-x64": "1.7.3",
"@biomejs/cli-linux-arm64": "1.7.3",
"@biomejs/cli-linux-x64-musl": "1.7.3",
"@biomejs/cli-linux-arm64-musl": "1.7.3"
}
}
10 changes: 5 additions & 5 deletions packages/@biomejs/backend-jsonrpc/tests/workspace.test.mjs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import {resolve} from "node:path";
import {fileURLToPath} from "node:url";
import {describe, expect, it} from "vitest";
import { resolve } from "node:path";
import { fileURLToPath } from "node:url";
import { describe, expect, it } from "vitest";

import {createWorkspaceWithBinary} from "../dist/index.js";
import { createWorkspaceWithBinary } from "../dist/index.js";

describe("Workspace API", () => {
it("should process remote requests", async () => {
Expand All @@ -15,7 +15,7 @@ describe("Workspace API", () => {

const workspace = await createWorkspaceWithBinary(command);
workspace.registerProjectFolder({
setAsCurrentWorkspace: true
setAsCurrentWorkspace: true,
});
await workspace.openFile({
path: {
Expand Down
186 changes: 93 additions & 93 deletions packages/@biomejs/backend-jsonrpc/tsconfig.json

Large diffs are not rendered by default.

Loading

0 comments on commit a6cd54c

Please sign in to comment.