Skip to content

Replaces translation key usages with imports from file

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

DigitecGalaxus/swc-plugin-translation-importer

Repository files navigation

swc-plugin-translation-importer

A simple plugin that replaces translation key usages with imports from a file.

Usage

In these examples the JSON file containing the translations that are then imported is assumed to be @tools/i18n-plugin/.cache/translations.i18n.

For Next.js you can install the package and reference it directly from next.config.js

module.exports = {
  experimental: {
    swcPlugins: [
      [
        "@galaxus/swc-plugin-translation-importer",
        { translationCache: "@tools/i18n-plugin/.cache/translations.i18n" },
      ],
    ],
  },
};

If you use SWC standalone, you have to point it to the Wasm module by adding something like the following to .swcrc

{
  "jsc": {
    "experimental": {
      "plugins": [
        [
          "/path/to/swc_plugin_translation_importer.wasm",
          {
            "translationCache": "@tools/i18n-plugin/.cache/translations.i18n"
          }
        ]
      ]
    }
  }
}

Build

Get the Rust toolchain and the right target with rustup target add wasm32-wasi. Then you're just a npm run build away and can find the result swc_plugin_translation_importer.wasm.

Release

To get the necessary tools, run npm install if never done before & install git-cliff.

On the release PR do

  1. Generate changelog with git cliff --bump -o CHANGELOG.md and update version number in Cargo.toml and package.json

On main (after merge of the release PR) do

  1. git tag vX.Y.Z and git push --tags
  2. npm publish

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

About

Replaces translation key usages with imports from file

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Packages

No packages published