From daea19cb78274014fde228d6b6c97fcfca0f0fc0 Mon Sep 17 00:00:00 2001 From: Sarah Nilson Date: Fri, 21 Aug 2026 13:32:08 -0400 Subject: [PATCH] Sync package-lock.json so npm ci passes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The new app (sarah-s-app-fri) pulled react/react-dom 19.2.8 and @datadog/vite-plugin 3.2.12, but the committed lockfile was left at older versions (partly from an earlier vite-plugin pin), so `npm ci` failed with "package.json and package-lock.json are not in sync" — which broke the Typecheck & lint check before it could run. Regenerated the lockfile with `npm install`; npm ci, typecheck, and lint all pass now. Co-Authored-By: Claude Opus 4.8 --- package-lock.json | 65 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) diff --git a/package-lock.json b/package-lock.json index fa1bb3e..c9483e1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -43,6 +43,27 @@ "@napi-rs/keyring": "^1.3.0" } }, + "apps/my-first-app/node_modules/react": { + "version": "19.2.8", + "resolved": "https://registry.npmjs.org/react/-/react-19.2.8.tgz", + "integrity": "sha512-PWaYA1L/q9u2u7xYQi+Y3L3Yfnie7XyLeaJICV1MGD6LprsBxcAqGjYyr0eY3p+QdsA+x/Irkt4Qif8D63+Sbw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "apps/my-first-app/node_modules/react-dom": { + "version": "19.2.8", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.8.tgz", + "integrity": "sha512-rVprimfGBG3DR+Tq0IQG2DT5PxKth1WIGDmj5yPmlzr4YBe7uyE+Du4oVqTDXZSHGGGXRtTJEGSSePyQCMBglQ==", + "license": "MIT", + "dependencies": { + "scheduler": "^0.27.0" + }, + "peerDependencies": { + "react": "^19.2.8" + } + }, "apps/sarah-s-app-fri-aug-21-11-53-20-am": { "version": "0.0.1", "dependencies": { @@ -75,6 +96,50 @@ "@napi-rs/keyring": "^1.3.0" } }, + "apps/sarah-s-app-fri-aug-21-11-53-20-am/node_modules/@datadog/vite-plugin": { + "version": "3.2.12", + "resolved": "https://registry.npmjs.org/@datadog/vite-plugin/-/vite-plugin-3.2.12.tgz", + "integrity": "sha512-W9wQyjxCOEQW1Smq5nj7KeObL7ie+kHwWg/ifrCFEGXMJliRlkBCqY1E54ms2qYfssE4+F5H4egmY7BkOSB+6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@datadog/js-instrumentation-wasm": "1.0.8", + "@jridgewell/remapping": "2.3.5", + "async-retry": "1.3.3", + "chalk": "2.3.1", + "eslint-scope": "7.2.2", + "glob": "11.1.0", + "json-stream-stringify": "3.1.6", + "jszip": "3.10.1", + "magic-string": "0.30.21", + "oauth4webapi": "3.8.6", + "outdent": "0.8.0", + "p-queue": "6.6.2", + "pretty-bytes": "5.6.0", + "simple-git": "3.36.0", + "unplugin": "2.3.11" + }, + "optionalDependencies": { + "@napi-rs/keyring": "1.3.0" + }, + "peerDependencies": { + "@babel/parser": "^7.24.5", + "@babel/traverse": "^7.24.5", + "@babel/types": "^7.24.5", + "vite": ">= 5.x <= 8.x" + }, + "peerDependenciesMeta": { + "@babel/parser": { + "optional": true + }, + "@babel/traverse": { + "optional": true + }, + "@babel/types": { + "optional": true + } + } + }, "apps/sarah-s-app-fri-aug-21-11-53-20-am/node_modules/react": { "version": "19.2.8", "resolved": "https://registry.npmjs.org/react/-/react-19.2.8.tgz",