Skip to content

Commit 09f226f

Browse files
authored
Merge 9da8f06 into 7194d9c
2 parents 7194d9c + 9da8f06 commit 09f226f

File tree

7 files changed

+16
-96
lines changed

7 files changed

+16
-96
lines changed

.changeset/slimy-cups-promise.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@firebase/functions-compat': patch
3+
'@firebase/functions': patch
4+
---
5+
6+
Remove node bundle from the functions SDK as the node-specific fetch code has been removed in favor of using native fetch throughout the SDK.

packages/functions-compat/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
"version": "0.3.14",
44
"description": "",
55
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
6-
"main": "dist/index.node.cjs.js",
6+
"main": "dist/index.cjs.js",
77
"browser": "dist/index.esm2017.js",
88
"module": "dist/index.esm2017.js",
99
"esm5": "dist/index.esm5.js",
1010
"exports": {
1111
".": {
1212
"types": "./dist/src/index.d.ts",
1313
"node": {
14-
"import": "./dist/node-esm/index.node.esm.js",
15-
"require": "./dist/index.node.cjs.js"
14+
"require": "./dist/index.cjs.js",
15+
"import": "./dist/index.esm2017.js"
1616
},
1717
"esm5": "./dist/index.esm5.js",
1818
"browser": {
@@ -57,7 +57,7 @@
5757
"test:all": "run-p --npm-path npm test:browser test:node",
5858
"test:browser": "karma start",
5959
"test:browser:debug": "karma start --browsers=Chrome --auto-watch",
60-
"test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha 'src/{,!(browser)/**/}*.test.ts' --file src/index.node.ts --config ../../config/mocharc.node.js",
60+
"test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha 'src/{,!(browser)/**/}*.test.ts' --config ../../config/mocharc.node.js",
6161
"test:emulator": "env FIREBASE_FUNCTIONS_HOST=http://localhost FIREBASE_FUNCTIONS_PORT=5005 run-p --npm-path npm test:node",
6262
"trusted-type-check": "tsec -p tsconfig.json --noEmit",
6363
"add-compat-overloads": "ts-node-script ../../scripts/build/create-overloads.ts -i ../functions/dist/functions-public.d.ts -o dist/src/index.d.ts -a -r Functions:types.FirebaseFunctions -r FirebaseApp:FirebaseAppCompat --moduleToEnhance @firebase/functions"

packages/functions-compat/rollup.config.js

+1-18
Original file line numberDiff line numberDiff line change
@@ -73,21 +73,4 @@ const browserBuilds = [
7373
}
7474
];
7575

76-
const nodeBuilds = [
77-
{
78-
input: 'src/index.node.ts',
79-
output: [{ file: pkg.main, format: 'cjs', sourcemap: true }],
80-
plugins: es5BuildPlugins,
81-
external: id => deps.some(dep => id === dep || id.startsWith(`${dep}/`))
82-
},
83-
{
84-
input: 'src/index.node.ts',
85-
output: [
86-
{ file: pkg.exports['.'].node.import, format: 'es', sourcemap: true }
87-
],
88-
plugins: [...es2017BuildPlugins, emitModulePackageFile()],
89-
external: id => deps.some(dep => id === dep || id.startsWith(`${dep}/`))
90-
}
91-
];
92-
93-
export default [...browserBuilds, ...nodeBuilds];
76+
export default [...browserBuilds];

packages/functions-compat/src/index.node.ts

-23
This file was deleted.

packages/functions/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
"version": "0.11.8",
44
"description": "",
55
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
6-
"main": "dist/index.node.cjs.js",
6+
"main": "dist/index.cjs.js",
77
"browser": "dist/index.esm2017.js",
88
"module": "dist/index.esm2017.js",
99
"esm5": "dist/index.esm.js",
1010
"exports": {
1111
".": {
1212
"types": "./dist/functions-public.d.ts",
1313
"node": {
14-
"import": "./dist/esm-node/index.node.esm.js",
15-
"require": "./dist/index.node.cjs.js"
14+
"import": "./dist/index.esm2017.js",
15+
"require": "./dist/index.cjs.js"
1616
},
1717
"esm5": "./dist/index.esm.js",
1818
"browser": {
@@ -38,7 +38,7 @@
3838
"test:all": "run-p --npm-path npm test:browser test:node",
3939
"test:browser": "karma start",
4040
"test:browser:debug": "karma start --browsers=Chrome --auto-watch",
41-
"test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha 'src/{,!(browser)/**/}*.test.ts' --file src/index.node.ts --config ../../config/mocharc.node.js",
41+
"test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha 'src/{,!(browser)/**/}*.test.ts' --file src/index.ts --config ../../config/mocharc.node.js",
4242
"test:emulator": "env FIREBASE_FUNCTIONS_EMULATOR_ORIGIN=http://localhost:5005 run-p --npm-path npm test:node",
4343
"trusted-type-check": "tsec -p tsconfig.json --noEmit",
4444
"api-report": "api-extractor run --local --verbose",

packages/functions/rollup.config.js

+1-25
Original file line numberDiff line numberDiff line change
@@ -84,28 +84,4 @@ const browserBuilds = [
8484
}
8585
];
8686

87-
const nodeBuilds = [
88-
{
89-
input: 'src/index.node.ts',
90-
output: [{ file: pkg.main, format: 'cjs', sourcemap: true }],
91-
external: id => deps.some(dep => id === dep || id.startsWith(`${dep}/`)),
92-
plugins: [
93-
...es5BuildPlugins,
94-
replace(generateBuildTargetReplaceConfig('cjs', 5))
95-
]
96-
},
97-
{
98-
input: 'src/index.node.ts',
99-
output: [
100-
{ file: pkg.exports['.'].node.import, format: 'es', sourcemap: true }
101-
],
102-
external: id => deps.some(dep => id === dep || id.startsWith(`${dep}/`)),
103-
plugins: [
104-
...es2017BuildPlugins,
105-
replace(generateBuildTargetReplaceConfig('esm', 2017)),
106-
emitModulePackageFile()
107-
]
108-
}
109-
];
110-
111-
export default [...browserBuilds, ...nodeBuilds];
87+
export default [...browserBuilds];

packages/functions/src/index.node.ts

-22
This file was deleted.

0 commit comments

Comments
 (0)