Skip to content

Commit c7f82f5

Browse files
committed
Refactor scripts and update configurations
- Changed formatting and linting commands in package.json to use 'biome check' instead of 'biome format' and 'biome lint'. - Adjusted lint-staged configuration to reflect the new formatting command. - Reordered import statements in Angular main.ts for consistency. - Cleaned up install-dependencies.ts by moving the import statement for execSync. - Updated import order in load.test.ts for improved readability.
1 parent 3e0f777 commit c7f82f5

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

examples/angular/src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { bootstrapApplication } from "@angular/platform-browser";
2-
import { appConfig } from "./app/app.config";
32
import { AppComponent } from "./app/app.component";
3+
import { appConfig } from "./app/app.config";
44

55
bootstrapApplication(AppComponent, appConfig).catch((err) =>
66
console.error(err),

package.json

+2-6
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,13 @@
1717
},
1818
"scripts": {
1919
"install-dependencies": "npx ts-node ./scripts/install-dependencies.ts",
20-
"format": "biome format --write .",
21-
"lint": "biome lint --write .",
20+
"format": "biome check --write .",
2221
"prepare": "husky",
2322
"e2e-tests": "./scripts/e2e-tests.sh",
2423
"lint-staged": "lint-staged",
2524
"test": "playwright test"
2625
},
2726
"lint-staged": {
28-
"*": [
29-
"biome format --write --no-errors-on-unmatched",
30-
"biome lint --write --no-errors-on-unmatched"
31-
]
27+
"*": ["biome check --write --no-errors-on-unmatched"]
3228
}
3329
}

scripts/install-dependencies.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import { execSync } from "node:child_process";
12
import fs from "node:fs";
23
import path from "node:path";
3-
import { execSync } from "node:child_process";
44

55
const rootDir = path.resolve(__dirname, "..");
66
const examplesDir = path.join(rootDir, "examples");

tests/load.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { test, expect } from "@playwright/test";
1+
import { expect, test } from "@playwright/test";
22

33
test.describe("Nutrient Web SDK", () => {
44
test.beforeEach(async ({ page }) => {

0 commit comments

Comments
 (0)