Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .changeset/wet-ravens-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
'@data-client/use-enhanced-reducer': patch
'@data-client/normalizr': patch
'@data-client/endpoint': patch
'@data-client/graphql': patch
'@data-client/react': patch
'@data-client/core': patch
'@data-client/rest': patch
'@data-client/test': patch
'@data-client/img': patch
---

Polyfills no longer pollute global scope
5 changes: 4 additions & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"enabled": false
},
{
"matchPackageNames": ["@babel/runtime", "core-js", "core-js-compat"],
"matchPackageNames": ["@babel/runtime", "@babel/runtime-corejs3", "core-js", "core-js-pure", "core-js-compat"],
"matchDepTypes": ["dependencies"],
"rangeStrategy": "replace"
},
Expand Down Expand Up @@ -69,7 +69,10 @@
"matchUpdateTypes": ["major", "minor", "patch"],
"matchPackageNames": [
"@anansi/babel-preset",
"@babel/runtime",
"@babel/runtime-corejs3",
"core-js",
"core-js-pure",
"core-js-compat"
],
"groupSlug": "build",
Expand Down
4 changes: 3 additions & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ const fs = require('fs');
const path = require('path');

module.exports = function (api) {
api.cache.using(() => process.env.NODE_ENV);
api.cache.using(
() => process.env.NODE_ENV + process.env.BROWSERSLIST_ENV + '0',
);
return {
presets: [
[
Expand Down
2 changes: 1 addition & 1 deletion examples/benchmark/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"devDependencies": {
"@anansi/webpack-config": "^20.0.0",
"@babel/core": "7.26.0",
"@babel/core": "7.26.9",
"@babel/node": "7.26.0",
"@types/babel__core": "^7",
"@types/benchmark": "2.1.5",
Expand Down
5 changes: 3 additions & 2 deletions examples/coin-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"anansi"
],
"devDependencies": {
"@anansi/babel-preset": "^6.0.0",
"@anansi/babel-preset": "^6.1.6",
"@anansi/browserslist-config": "^1.4.3",
"@anansi/webpack-config": "^20.0.0",
"@babel/core": "^7.22.15",
Expand All @@ -44,10 +44,11 @@
"@anansi/cli": "^3.0.15",
"@anansi/core": "^0.20.0",
"@anansi/router": "^0.10.0",
"@babel/runtime": "^7.22.15",
"@babel/runtime-corejs3": "^7.26.7",
"@data-client/img": "^0.14.0",
"@data-client/react": "^0.14.0",
"@data-client/rest": "^0.14.0",
"core-js": "^3.40.0",
"d3": "^7.9.0",
"history": "*",
"react": "^19.0.0",
Expand Down
Loading
Loading