Skip to content

Commit 6f05e2f

Browse files
Fix Path
1 parent 3aac6f4 commit 6f05e2f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/firestore/rollup.config.lite.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ import typescript from 'typescript';
2222
import { resolveNodeExterns } from './rollup.shared';
2323

2424
import pkg from './lite/package.json';
25+
import path from 'path';
26+
import memoryPkg from './memory/package.json';
2527

2628
const defaultPlugins = [
2729
typescriptPlugin({
@@ -40,7 +42,7 @@ const nodeBuilds = [
4042
{
4143
input: 'lite/index.node.ts',
4244
output: {
43-
file: pkg.main,
45+
file: path.resolve('./lite', pkg.main),
4446
format: 'es'
4547
},
4648
plugins: defaultPlugins,

0 commit comments

Comments
 (0)