1.1.0 • Published 2 days ago

@react-aria/optimize-locales-plugin v1.1.0

Weekly downloads
-
License
-
Repository
-
Last release
2 days ago

@react-aria/optimize-locales-plugin

A build plugin to optimize React Aria to only include translated strings for locales that your app supports. It currently supports Vite, Rollup, Webpack, and esbuild via unplugin. For Parcel, please use @react-aria/parcel-resolver-optimize-locales.

Configuration

Any strings for locales other than the ones listed in the configuration as shown below will be removed from your bundle. See the documentation for a full list of supported locales.

webpack

// webpack.config.js
const optimizeLocales = require('@react-aria/optimize-locales-plugin');

module.exports = {
  // ...
  plugins: [
    optimizeLocales.webpack({
      locales: ['en-US', 'fr-FR']
    })
  ]
};

Next.js

// next.config.js
const optimizeLocales = require('@react-aria/optimize-locales-plugin');

module.exports = {
  webpack(config) {
    config.plugins.push(
      optimizeLocales.webpack({
        locales: ['en-US', 'fr-FR']
      })
    );
    return config;
  }
};

Vite

// vite.config.js
import optimizeLocales from '@react-aria/optimize-locales-plugin';

export default {
  plugins: [
    optimizeLocales.vite({
      locales: ['en-US', 'fr-FR']
    })
  ]
};

Rollup

// rollup.config.js
import optimizeLocales from '@react-aria/optimize-locales-plugin';

export default {
  plugins: [
    optimizeLocales.rollup({
      locales: ['en-US', 'fr-FR']
    })
  ]
};

Esbuild

import {build} from 'esbuild';
import optimizeLocales from '@react-aria/optimize-locales-plugin';

build({
  plugins: [
    optimizeLocales.esbuild({
      locales: ['en-US', 'fr-FR']
    })
  ]
});
1.1.0

8 days ago

1.0.3-nightly.4516

2 months ago

1.0.3-nightly.4515

2 months ago

1.0.3-nightly.4514

2 months ago

1.0.3-nightly.4513

2 months ago

1.0.3-nightly.4512

2 months ago

1.0.3-nightly.4510

2 months ago

1.0.3-nightly.4507

2 months ago

1.0.3-nightly.4506

2 months ago

1.0.3-nightly.4502

2 months ago

1.0.3-nightly.4499

2 months ago

1.0.3-nightly.4494

2 months ago

1.0.3-nightly.4491

2 months ago

1.0.3-nightly.4486

2 months ago

1.0.3-nightly.4481

2 months ago

1.0.3-nightly.4479

3 months ago

1.0.3-nightly.4477

3 months ago

1.0.3-nightly.4476

3 months ago

1.0.3-nightly.4472

3 months ago

1.0.2

3 months ago

1.0.3-nightly.4468

3 months ago

1.0.2-nightly.4464

3 months ago

1.0.2-nightly.4461

3 months ago

1.0.2-nightly.4454

3 months ago

1.0.2-nightly.4451

3 months ago

1.0.2-nightly.4446

3 months ago

1.0.2-nightly.4440

3 months ago

1.0.2-nightly.4430

3 months ago

1.0.2-nightly.4427

3 months ago

1.0.2-nightly.4426

3 months ago

1.0.2-nightly.4425

3 months ago

1.0.2-nightly.4420

4 months ago

1.0.2-nightly.4422

4 months ago

1.0.2-nightly.4419

4 months ago

1.0.2-nightly.4411

4 months ago

1.0.2-nightly.4409

4 months ago

1.0.2-nightly.4406

4 months ago

1.0.2-nightly.4405

4 months ago

1.0.2-nightly.4398

4 months ago

1.0.1

4 months ago

1.0.1-nightly.4395

4 months ago

1.0.1-nightly.4393

4 months ago

1.0.1-nightly.4392

4 months ago

1.0.1-nightly.4384

5 months ago

1.0.1-nightly.4385

5 months ago

1.0.1-nightly.4380

5 months ago

1.0.0

5 months ago