Skip to content

Commit

Permalink
chore: lint build and perf-measures (#3686)
Browse files Browse the repository at this point in the history
  • Loading branch information
yusukebe authored Nov 18, 2024
1 parent c8f6a86 commit f5bad77
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build/remove-private-fields.test.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/// <reference types="vitest/globals" />

import { removePrivateFields } from './remove-private-fields'
import fs from 'node:fs/promises'
import path from 'node:path'
import os from 'node:os'
import path from 'node:path'
import { removePrivateFields } from './remove-private-fields'

describe('removePrivateFields', () => {
it('Works', async () => {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"test:lambda": "vitest --run --config ./runtime-tests/lambda/vitest.config.ts",
"test:lambda-edge": "vitest --run --config ./runtime-tests/lambda-edge/vitest.config.ts",
"test:all": "bun run test && bun test:deno && bun test:bun && bun test:fastly && bun test:node && bun test:workerd && bun test:lambda && bun test:lambda-edge",
"lint": "eslint src runtime-tests",
"lint:fix": "eslint src runtime-tests --fix",
"lint": "eslint src runtime-tests build perf-measures",
"lint:fix": "eslint src runtime-tests build perf-measures --fix",
"format": "prettier --check --cache \"src/**/*.{js,ts,tsx}\" \"runtime-tests/**/*.{js,ts,tsx}\" \"build/**/*.{js,ts,tsx}\" \"perf-measures/**/*.{js,ts,tsx}\"",
"format:fix": "prettier --write --cache --cache-strategy metadata \"src/**/*.{js,ts,tsx}\" \"runtime-tests/**/*.{js,ts,tsx}\" \"build/**/*.{js,ts,tsx}\" \"perf-measures/**/*.{js,ts,tsx}\"",
"copy:package.cjs.json": "cp ./package.cjs.json ./dist/cjs/package.json && cp ./package.cjs.json ./dist/types/package.json",
Expand Down

0 comments on commit f5bad77

Please sign in to comment.