From 814c157f7778ce0c7628be1aa9699124b0d9ec93 Mon Sep 17 00:00:00 2001 From: Nick Babcock Date: Thu, 31 Oct 2024 15:28:26 -0500 Subject: [PATCH] Prettify --- fixtures/import-npm/README.md | 2 +- fixtures/import-npm/package.json | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/fixtures/import-npm/README.md b/fixtures/import-npm/README.md index 102e9248c1013..2db0d93bca633 100644 --- a/fixtures/import-npm/README.md +++ b/fixtures/import-npm/README.md @@ -1,3 +1,3 @@ # import-npm example -This is an npm workspace within pnpm in order to test dependencies managed through npm can also be resolved by wrangler \ No newline at end of file +This is an npm workspace within pnpm in order to test dependencies managed through npm can also be resolved by wrangler diff --git a/fixtures/import-npm/package.json b/fixtures/import-npm/package.json index 5fe397ebae46e..82225fd0ffaa1 100644 --- a/fixtures/import-npm/package.json +++ b/fixtures/import-npm/package.json @@ -3,13 +3,13 @@ "private": true, "description": "", "author": "", + "workspaces": [ + "packages/*" + ], "scripts": { "check:type": "npm run check:type --workspaces", "test:ci": "npm install && npm run test:ci --workspaces", "test:watch": "npm install && npm run test:watch --workspaces", "type:tests": "npm run type:tests --workspaces" - }, - "workspaces": [ - "packages/*" - ] + } }