Skip to content

Commit cecb56c

Browse files
chore(update): v3.10.0
- fixes build errors - syncs with batteries
1 parent bff5e74 commit cecb56c

File tree

9 files changed

+17
-7
lines changed

9 files changed

+17
-7
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN apk --no-cache update \
1212
ADD . /dejavu
1313

1414
RUN yarn \
15-
&& yarn cache clean && yarn build:dejavu:app \
15+
&& yarn cache clean && DISABLE_FAVICONS=1 yarn build:dejavu:app \
1616
&& rm -rf /dejavu/node_modules \
1717
&& rm -rf /tmp/*
1818

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
22
"name": "dejavu-monorepo",
33
"description": "Dejavu monorepo - https://dejavu.reactivesearch.io",
4-
"version": "3.9.0",
4+
"version": "3.10.0",
55
"authors": [
66
"reactivesearch.io <info@reactivesearch.io> (https://github.com/appbaseio)"
77
],
88
"dependencies": {
99
"lerna": "^2.11.0",
10+
"core-js": "^3.37.1",
1011
"react": "^18.2.0",
1112
"react-dom": "^18.2.0"
1213
},

packages/browser/.babelrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ const presets = [
1414
safari: '11.1',
1515
},
1616
useBuiltIns: 'usage',
17+
corejs: 3,
1718
},
1819
],
1920
];

packages/browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@appbaseio/dejavu-browser",
33
"description": "Dejavu monorepo data browser components",
4-
"version": "3.9.0",
4+
"version": "3.10.0",
55
"authors": [
66
"reactivesearch.io <info@reactivesearch.io> (https://github.com/appbaseio)"
77
],

packages/dejavu-main/.babelrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ const presets = [
1414
safari: '11.1',
1515
},
1616
useBuiltIns: 'usage',
17+
corejs: 3,
1718
},
1819
],
1920
];

packages/dejavu-main/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "dejavu-main",
33
"description": "Dejavu main module",
4-
"version": "3.9.0",
4+
"version": "3.10.0",
55
"authors": [
66
"ReactiveSearch.io <info@reactivesearch.io> (https://github.com/appbaseio)"
77
],

packages/dejavu-main/webpack.config.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ if (!isDevelopment) {
5050
);
5151
plugins.push(
5252
new CompressionPlugin({
53-
filename: '[path].gz[query]',
53+
// ensure unique output names per asset to avoid conflicts
54+
filename: '[path][base].gz',
5455
algorithm: 'gzip',
5556
test: /\.js$|\.css$|\.html$/,
5657
threshold: 10240,
@@ -59,7 +60,8 @@ if (!isDevelopment) {
5960
);
6061
plugins.push(
6162
new CompressionPlugin({
62-
filename: '[path].br[query]',
63+
// ensure unique output names per asset to avoid conflicts
64+
filename: '[path][base].br',
6365
algorithm: 'brotliCompress',
6466
test: /\.(js|css|html|svg)$/,
6567
compressionOptions: {

yarn.lock

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5584,6 +5584,11 @@ core-js@^2.5.3, core-js@^2.6.10, core-js@^2.6.5:
55845584
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c"
55855585
integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==
55865586

5587+
core-js@^3.37.1:
5588+
version "3.45.1"
5589+
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.45.1.tgz#5810e04a1b4e9bc5ddaa4dd12e702ff67300634d"
5590+
integrity sha512-L4NPsJlCfZsPeXukyzHFlg/i7IIVwHSItR0wg0FLNqYClJ4MQYTYLbC7EkjKYRLZF2iof2MUgN0EGy7MdQFChg==
5591+
55875592
core-util-is@1.0.2, core-util-is@~1.0.0:
55885593
version "1.0.2"
55895594
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"

0 commit comments

Comments
 (0)