Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,16 @@
"type": "git",
"url": "git+https://github.com/firebase/firebase-js-sdk.git"
},
"workspaces": [
"packages/*",
"integration/*",
"repo-scripts/*"
],
"workspaces": {
"packages": [
"packages/*",
"integration/*",
"repo-scripts/*"
],
"nohoist": [
"**/vertexai/@types/dom-chromium-ai"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😍

]
},
"devDependencies": {
"@babel/core": "7.26.8",
"@babel/plugin-transform-modules-commonjs": "7.26.3",
Expand Down
3 changes: 2 additions & 1 deletion packages/vertexai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
"@firebase/component": "0.6.13",
"@firebase/logger": "0.4.4",
"@firebase/util": "1.11.0",
"@types/dom-chromium-ai": "0.0.6",
"tslib": "^2.1.0"
},
"license": "Apache-2.0",
Expand All @@ -78,4 +79,4 @@
],
"reportDir": "./coverage/node"
}
}
}
6 changes: 4 additions & 2 deletions scripts/release/utils/workspace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@ const writeFile = promisify(_writeFile);

const {
workspaces: rawWorkspaces
}: { workspaces: string[] } = require(`${root}/package.json`);
const workspaces = rawWorkspaces.map(workspace => `${root}/${workspace}`);
}: { workspaces: { packages: string[] } } = require(`${root}/package.json`);
const workspaces = rawWorkspaces.packages.map(
workspace => `${root}/${workspace}`
);

export function mapWorkspaceToPackages(
workspaces: string[]
Expand Down
5 changes: 5 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2949,6 +2949,11 @@
resolved "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz#334311971d3a07121e7eb91b684a605e7eea9cbd"
integrity sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==

"@types/[email protected]":
version "0.0.6"
resolved "https://registry.npmjs.org/@types/dom-chromium-ai/-/dom-chromium-ai-0.0.6.tgz#0c9e5712d8db3d26586cd9f175001b509cd2e514"
integrity sha512-/jUGe9a3BLzsjjg18Olk/Ul64PZ0P4aw8uNxrXeXVTni5PSxyCfyhHb4UohsXNVByOnwYGzlqUcb3vYKVsG4mg==

"@types/eslint-scope@^3.7.7":
version "3.7.7"
resolved "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz#3108bd5f18b0cdb277c867b3dd449c9ed7079ac5"
Expand Down
Loading