Skip to content

Commit 6bc3088

Browse files
committed
temp comment out rollup for client-core
1 parent a823329 commit 6bc3088

File tree

2 files changed

+16
-17
lines changed

2 files changed

+16
-17
lines changed

packages/cubejs-client-core/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
"typings": "dist/src/index.d.ts",
1414
"author": "Cube Dev, Inc.",
1515
"dependencies": {
16-
"@babel/runtime": "^7.1.2",
1716
"core-js": "^3.6.5",
1817
"cross-fetch": "^3.0.2",
1918
"dayjs": "^1.10.4",

rollup.config.js

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ const bundle = (name, globalName, { globals = {}, ...baseConfig }, umdConfig) =>
4444
],
4545
}),
4646
alias({
47-
entries: {
48-
'@cubejs-client/core': '../cubejs-client-core/src/index.js',
49-
},
47+
// entries: {
48+
// '@cubejs-client/core': '../cubejs-client-core/src/index.js',
49+
// },
5050
}),
5151
],
5252
};
@@ -133,21 +133,21 @@ const bundle = (name, globalName, { globals = {}, ...baseConfig }, umdConfig) =>
133133
];
134134
};
135135

136-
export default bundle(
137-
'cubejs-client-core',
138-
'cubejs',
139-
{
140-
input: 'packages/cubejs-client-core/src/index.js',
141-
},
142-
{
143-
input: 'packages/cubejs-client-core/src/index.umd.js',
144-
}
145-
)
146-
.concat(
147-
bundle('cubejs-client-ws-transport', 'CubejsWebSocketTransport', {
136+
// export default bundle(
137+
// 'cubejs-client-core',
138+
// 'cubejs',
139+
// {
140+
// input: 'packages/cubejs-client-core/src/index.js',
141+
// },
142+
// {
143+
// input: 'packages/cubejs-client-core/src/index.umd.js',
144+
// }
145+
// )
146+
// .concat(
147+
148+
export default bundle('cubejs-client-ws-transport', 'CubejsWebSocketTransport', {
148149
input: 'packages/cubejs-client-ws-transport/src/index.ts',
149150
})
150-
)
151151
.concat(
152152
bundle('cubejs-client-react', 'cubejsReact', {
153153
input: 'packages/cubejs-client-react/src/index.js',

0 commit comments

Comments
 (0)