File tree 3 files changed +16
-8
lines changed
3 files changed +16
-8
lines changed Original file line number Diff line number Diff line change 56
56
"type" : " git" ,
57
57
"url" : " git+https://github.com/firebase/firebase-js-sdk.git"
58
58
},
59
- "workspaces" : [
60
- " packages/*" ,
61
- " integration/*" ,
62
- " repo-scripts/*"
63
- ],
59
+ "workspaces" : {
60
+ "packages" : [
61
+ " packages/*" ,
62
+ " integration/*" ,
63
+ " repo-scripts/*"
64
+ ],
65
+ "nohoist" : [
66
+ " **/vertexai/@types/dom-chromium-ai"
67
+ ]
68
+ },
64
69
"devDependencies" : {
65
70
"@babel/core" : " 7.26.8" ,
66
71
"@babel/plugin-transform-modules-commonjs" : " 7.26.3" ,
Original file line number Diff line number Diff line change 52
52
"@firebase/component" : " 0.6.13" ,
53
53
"@firebase/logger" : " 0.4.4" ,
54
54
"@firebase/util" : " 1.11.0" ,
55
+ "@types/dom-chromium-ai" : " 0.0.6" ,
55
56
"tslib" : " ^2.1.0"
56
57
},
57
58
"license" : " Apache-2.0" ,
79
80
],
80
81
"reportDir" : " ./coverage/node"
81
82
}
82
- }
83
+ }
Original file line number Diff line number Diff line change @@ -27,8 +27,10 @@ const writeFile = promisify(_writeFile);
27
27
28
28
const {
29
29
workspaces : rawWorkspaces
30
- } : { workspaces : string [ ] } = require ( `${ root } /package.json` ) ;
31
- const workspaces = rawWorkspaces . map ( workspace => `${ root } /${ workspace } ` ) ;
30
+ } : { workspaces : { packages : string [ ] } } = require ( `${ root } /package.json` ) ;
31
+ const workspaces = rawWorkspaces . packages . map (
32
+ workspace => `${ root } /${ workspace } `
33
+ ) ;
32
34
33
35
export function mapWorkspaceToPackages (
34
36
workspaces : string [ ]
You can’t perform that action at this time.
0 commit comments