Skip to content

Commit 7189c91

Browse files
committed
yarn format
1 parent 0f5b309 commit 7189c91

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

packages/firestore/rollup.config.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const allBuilds = [
7575
{
7676
input: './src/index.node.ts',
7777
output: {
78-
file: "dist/index.node.intermediate.mjs",
78+
file: 'dist/index.node.intermediate.mjs',
7979
format: 'es',
8080
sourcemap: true
8181
},
@@ -88,7 +88,7 @@ const allBuilds = [
8888
},
8989
// Node CJS build
9090
{
91-
input: "dist/index.node.intermediate.mjs",
91+
input: 'dist/index.node.intermediate.mjs',
9292
output: {
9393
file: pkg.main,
9494
format: 'cjs',
@@ -105,7 +105,7 @@ const allBuilds = [
105105
},
106106
// Node ESM build with build target reporting
107107
{
108-
input: "dist/index.node.intermediate.mjs",
108+
input: 'dist/index.node.intermediate.mjs',
109109
output: {
110110
file: pkg['main-esm'],
111111
format: 'es',
@@ -123,7 +123,7 @@ const allBuilds = [
123123
{
124124
input: './src/index.ts',
125125
output: {
126-
file: "dist/index.esm2017.intermediate.js",
126+
file: 'dist/index.esm2017.intermediate.js',
127127
format: 'es',
128128
sourcemap: true
129129
},
@@ -135,7 +135,7 @@ const allBuilds = [
135135
},
136136
// Convert es2017 build to ES5
137137
{
138-
input: "dist/index.esm2017.intermediate.js",
138+
input: 'dist/index.esm2017.intermediate.js',
139139
output: [
140140
{
141141
file: pkg['esm5'],
@@ -154,7 +154,7 @@ const allBuilds = [
154154
},
155155
// Convert es2017 build to cjs
156156
{
157-
input: "dist/index.esm2017.intermediate.js",
157+
input: 'dist/index.esm2017.intermediate.js',
158158
output: [
159159
{
160160
file: './dist/index.cjs.js',
@@ -170,7 +170,7 @@ const allBuilds = [
170170
},
171171
// es2017 build with build target reporting
172172
{
173-
input: "dist/index.esm2017.intermediate.js",
173+
input: 'dist/index.esm2017.intermediate.js',
174174
output: [
175175
{
176176
file: pkg['browser'],

0 commit comments

Comments
 (0)