From 8808437a02418d8880d09b91978ea1b101b41817 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Thu, 1 Feb 2024 19:24:17 -0800 Subject: [PATCH] meta: remove remaining references to prettierrc.cjs (#8634) --- Dockerfile | 3 +-- Makefile | 1 - bench/package.json | 3 +-- packages/bun-vscode/assets/package.json | 3 --- test/snippets/package.json | 3 +-- 5 files changed, 3 insertions(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index f0f9871de8c51a..392db49f34739e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -290,7 +290,6 @@ ENV CCACHE_DIR=/ccache COPY Makefile ${BUN_DIR}/Makefile COPY src/deps/zstd ${BUN_DIR}/src/deps/zstd -COPY .prettierrc.cjs ${BUN_DIR}/.prettierrc.cjs WORKDIR $BUN_DIR @@ -378,7 +377,7 @@ RUN --mount=type=cache,target=/ccache mkdir ${BUN_DIR}/build \ FROM bun-base-with-zig as bun-codegen-for-zig -COPY package.json bun.lockb Makefile .gitmodules .prettierrc.cjs ${BUN_DIR}/ +COPY package.json bun.lockb Makefile .gitmodules ${BUN_DIR}/ COPY src/runtime ${BUN_DIR}/src/runtime COPY src/runtime.js src/runtime.bun.js ${BUN_DIR}/src/ COPY packages/bun-error ${BUN_DIR}/packages/bun-error diff --git a/Makefile b/Makefile index 580f1c37ff733b..8a6142c4ff3251 100644 --- a/Makefile +++ b/Makefile @@ -823,7 +823,6 @@ fmt: fmt-cpp fmt-zig api: ./node_modules/.bin/peechy --schema src/api/schema.peechy --esm src/api/schema.js --ts src/api/schema.d.ts --zig src/api/schema.zig $(ZIG) fmt src/api/schema.zig - $(PRETTIER) --config=.prettierrc.cjs --write src/api/schema.js src/api/schema.d.ts .PHONY: node-fallbacks node-fallbacks: diff --git a/bench/package.json b/bench/package.json index 1e9d5bc9bb8f0d..b91097050ba258 100644 --- a/bench/package.json +++ b/bench/package.json @@ -25,6 +25,5 @@ }, "devDependencies": { "fast-deep-equal": "^3.1.3" - }, - "prettier": "../.prettierrc.cjs" + } } diff --git a/packages/bun-vscode/assets/package.json b/packages/bun-vscode/assets/package.json index 021c8125e7e3e4..b5faabfeb10952 100644 --- a/packages/bun-vscode/assets/package.json +++ b/packages/bun-vscode/assets/package.json @@ -796,9 +796,6 @@ "eslintConfig": { "$ref": "https://json.schemastore.org/eslintrc.json" }, - "prettier": { - "$ref": "https://json.schemastore.org/prettierrc.json" - }, "stylelint": { "$ref": "https://json.schemastore.org/stylelintrc.json" }, diff --git a/test/snippets/package.json b/test/snippets/package.json index 478234d5c05c1b..0c05b97bea92f7 100644 --- a/test/snippets/package.json +++ b/test/snippets/package.json @@ -10,6 +10,5 @@ "react-dom": "^17.0.2", "redux": "^4.1.1", "styled-components": "^5.3.1" - }, - "prettier": "../../.prettierrc.cjs" + } }