Skip to content

Commit c1bdb29

Browse files
committed
another attempt to fix rollup
1 parent c726936 commit c1bdb29

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/cubejs-client-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"lint:fix": "eslint --fix src/* test/ --ext .ts,js"
3131
},
3232
"files": [
33-
"dist/src"
33+
"dist"
3434
],
3535
"license": "MIT",
3636
"devDependencies": {

rollup.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const bundle = (name, globalName, { globals = {}, ...baseConfig }, umdConfig) =>
4545
}),
4646
alias({
4747
entries: {
48-
'@cubejs-client/core': '../cubejs-client-core/src/index.ts',
48+
'@cubejs-client/core': '../cubejs-client-core/dist/index.js',
4949
},
5050
}),
5151
],
@@ -137,10 +137,10 @@ export default bundle(
137137
'cubejs-client-core',
138138
'cubejs',
139139
{
140-
input: 'packages/cubejs-client-core/src/index.ts',
140+
input: 'packages/cubejs-client-core/dist/src/index.js',
141141
},
142142
{
143-
input: 'packages/cubejs-client-core/src/index.umd.ts',
143+
input: 'packages/cubejs-client-core/dist/src/index.umd.js',
144144
}
145145
)
146146
.concat(

0 commit comments

Comments
 (0)