Skip to content

Commit 6a93bce

Browse files
committed
remove bundle build
1 parent 75ccd16 commit 6a93bce

File tree

4 files changed

+5
-26
lines changed

4 files changed

+5
-26
lines changed

packages/firestore/compat/bundle/package.json

Lines changed: 0 additions & 10 deletions
This file was deleted.

packages/firestore/rollup.config.browser.compat.js

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
import pkg from './compat/package.json';
22
import path from 'path';
3-
import memoryPkg from './compat/memory/package.json';
4-
import bundlePkg from './compat/bundle/package.json';
5-
import memoryBundlePkg from './compat/memory/bundle/package.json';
63
import { getImportPathTransformer } from '../../scripts/exp/ts-transform-import-path';
74

85
/**
@@ -28,8 +25,7 @@ export default [
2825
// Create main build
2926
{
3027
input: {
31-
index: './compat/index.ts',
32-
bundle: './compat/index.bundle.ts'
28+
index: './compat/index.ts'
3329
},
3430
output: {
3531
dir: 'dist/compat/esm2017',
@@ -55,8 +51,7 @@ export default [
5551
// Convert main build to ES5
5652
{
5753
input: {
58-
index: path.resolve('./compat', pkg['esm2017']),
59-
bundle: path.resolve('./compat/bundle', bundlePkg['esm2017'])
54+
index: path.resolve('./compat', pkg['esm2017'])
6055
},
6156
output: [
6257
{

packages/firestore/rollup.config.node.compat.js

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818
import replace from 'rollup-plugin-replace';
1919
import copy from 'rollup-plugin-copy';
2020
import pkg from './compat/package.json';
21-
import bundlePkg from './compat/bundle/package.json';
22-
import memoryPkg from './compat/memory/package.json';
23-
import memoryBundlePkg from './compat/memory/bundle/package.json';
2421
import path from 'path';
2522
import { getImportPathTransformer } from '../../scripts/exp/ts-transform-import-path';
2623

@@ -29,8 +26,7 @@ const util = require('./rollup.shared');
2926
export default [
3027
{
3128
input: {
32-
index: './compat/index.node.ts',
33-
bundle: './compat/index.bundle.ts'
29+
index: './compat/index.node.ts'
3430
},
3531
output: {
3632
dir: 'dist/compat/node-esm2017',
@@ -61,8 +57,7 @@ export default [
6157
},
6258
{
6359
input: {
64-
index: path.resolve('./compat', pkg['main-esm2017']),
65-
bundle: path.resolve('./compat/bundle', bundlePkg['main-esm2017'])
60+
index: path.resolve('./compat', pkg['main-esm2017'])
6661
},
6762
output: [
6863
{

packages/firestore/rollup.config.rn.compat.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ export default [
2222
// Create main build
2323
{
2424
input: {
25-
index: './compat/index.ts',
26-
bundle: './compat/index.bundle.ts'
25+
index: './compat/index.ts'
2726
},
2827
output: {
2928
dir: 'dist/compat/rn',

0 commit comments

Comments
 (0)