Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dconeybe committed Jan 16, 2024
1 parent 6604821 commit 750d7eb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/firestore/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ const allBuilds = [
input: 'dist/index.esm2017.js',
output: [
{
file: './dist/index.cjs.js',
file: 'dist/index.cjs.js',
format: 'cjs',
sourcemap: true
}
Expand Down
14 changes: 7 additions & 7 deletions packages/firestore/rollup.config.lite.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ const allBuilds = [
{
input: 'lite/index.ts',
output: {
file: 'dist/lite/index.esm2017.js',
file: 'dist/lite/index.browser.esm2017.js',
format: 'es',
sourcemap: true
},
Expand All @@ -155,10 +155,10 @@ const allBuilds = [
},
// Convert es2017 build to ES5
{
input: 'dist/lite/index.esm2017.js',
input: 'dist/lite/index.browser.esm2017.js',
output: [
{
file: 'dist/lite/index.esm5.js',
file: 'dist/lite/index.browser.esm5.js',
format: 'es',
sourcemap: true
}
Expand All @@ -174,7 +174,7 @@ const allBuilds = [
},
// Convert es2017 build to CJS
{
input: 'dist/lite/index.esm2017.js',
input: 'dist/lite/index.browser.esm2017.js',
output: [
{
file: 'dist/lite/index.cjs.js',
Expand All @@ -193,10 +193,10 @@ const allBuilds = [
},
// Browser es2017 build
{
input: 'dist/lite/index.esm2017.js',
input: 'dist/lite/index.browser.esm2017.js',
output: [
{
file: 'dist/lite/index.esm2017.js',
file: 'dist/lite/index.browser.esm2017.js',
format: 'es',
sourcemap: true
}
Expand All @@ -214,7 +214,7 @@ const allBuilds = [
{
input: 'lite/index.ts',
output: {
file: 'dist/lite/index.rn.js',
file: 'dist/lite/index.rn.esm2017.js',
format: 'es',
sourcemap: true
},
Expand Down

0 comments on commit 750d7eb

Please sign in to comment.