Skip to content

chore(deps): Bump @lunariajs/core from 0.1.1 to 0.2.0 - #173

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/lunariajs/core-0.2.0
Open

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/lunariajs/core-0.2.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 18, 2026

Copy link
Copy Markdown
Contributor

Bumps @lunariajs/core from 0.1.1 to 0.2.0.

Release notes

Sourced from @​lunariajs/core's releases.

@​lunariajs/core@​0.2.0

Minor Changes

  • 12d67bf Thanks @​yanthomasdev! - Replaces the lunaria.config.json file with a JavaScript or TypeScript configuration file.

    Lunaria now loads a lunaria.config.mjs file (or .js, .ts, .mts, .cjs, .cts) exporting your configuration, which can be wrapped with the new defineConfig() helper from @lunariajs/core/config for type hints.

    // lunaria.config.mjs
    import { defineConfig } from '@lunariajs/core/config';
    export default defineConfig({
    repository: {
    name: 'me/cool-docs',
    },
    sourceLocale: { label: 'English', lang: 'en' },
    locales: [{ label: 'Português', lang: 'pt' }],
    files: [
    {
    include: ['content/en/**/*.md'],
    pattern: 'content/@lang/@​path',
    type: 'universal',
    },
    ],
    });

  • 12d67bf Thanks @​yanthomasdev! - Renames and restructures several configuration properties:

    • defaultLocale is now sourceLocale.
    • files[].location is now files[].include, an array of glob patterns matching only the source files, and files[].ignore is now files[].exclude.
    • ignoreKeywords and localizableProperty are now tracking.ignoredKeywords and tracking.localizableProperty.
    • renderer now receives the renderer configuration object directly, instead of the path to a renderer configuration file.
    • optionalKeys of dictionary file entries now mirrors the structure of the dictionary, e.g. { footer: true, sidebar: { search: true } }, and applies to every file matched by the entry, instead of being a record of shared paths with an array of top-level keys.
  • 12d67bf Thanks @​yanthomasdev! - The @lang placeholder is now required in files patterns and strictly matches the lang of the configured locales, while the @locales placeholder has been removed.

    Projects where the source and localized files follow different structures, e.g. source files in the root of the content directory and localizations in a directory per locale, can now set pattern to an object with a source and a locales pattern:

    files: [
      {
        include: ['src/content/docs/**/*.mdx'],
        exclude: ['src/content/docs/pt/**/*.mdx'],
        pattern: {
          source: 'src/content/docs/@path',
          locales: 'src/content/docs/@lang/@path',
        },
        type: 'universal',
      },

... (truncated)

Changelog

Sourced from @​lunariajs/core's changelog.

0.2.0

Minor Changes

  • 12d67bf Thanks @​yanthomasdev! - Replaces the lunaria.config.json file with a JavaScript or TypeScript configuration file.

    Lunaria now loads a lunaria.config.mjs file (or .js, .ts, .mts, .cjs, .cts) exporting your configuration, which can be wrapped with the new defineConfig() helper from @lunariajs/core/config for type hints.

    // lunaria.config.mjs
    import { defineConfig } from '@lunariajs/core/config';
    export default defineConfig({
    repository: {
    name: 'me/cool-docs',
    },
    sourceLocale: { label: 'English', lang: 'en' },
    locales: [{ label: 'Português', lang: 'pt' }],
    files: [
    {
    include: ['content/en/**/*.md'],
    pattern: 'content/@lang/@​path',
    type: 'universal',
    },
    ],
    });

  • 12d67bf Thanks @​yanthomasdev! - Renames and restructures several configuration properties:

    • defaultLocale is now sourceLocale.
    • files[].location is now files[].include, an array of glob patterns matching only the source files, and files[].ignore is now files[].exclude.
    • ignoreKeywords and localizableProperty are now tracking.ignoredKeywords and tracking.localizableProperty.
    • renderer now receives the renderer configuration object directly, instead of the path to a renderer configuration file.
    • optionalKeys of dictionary file entries now mirrors the structure of the dictionary, e.g. { footer: true, sidebar: { search: true } }, and applies to every file matched by the entry, instead of being a record of shared paths with an array of top-level keys.
  • 12d67bf Thanks @​yanthomasdev! - The @lang placeholder is now required in files patterns and strictly matches the lang of the configured locales, while the @locales placeholder has been removed.

    Projects where the source and localized files follow different structures, e.g. source files in the root of the content directory and localizations in a directory per locale, can now set pattern to an object with a source and a locales pattern:

    files: [
      {
        include: ['src/content/docs/**/*.mdx'],
        exclude: ['src/content/docs/pt/**/*.mdx'],
        pattern: {
          source: 'src/content/docs/@path',
          locales: 'src/content/docs/@lang/@path',
        },
        type: 'universal',

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​lunariajs/core since your current version.


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@lunariajs/core](https://github.com/lunariajs/lunaria/tree/HEAD/packages/core) from 0.1.1 to 0.2.0.
- [Release notes](https://github.com/lunariajs/lunaria/releases)
- [Changelog](https://github.com/lunariajs/lunaria/blob/main/packages/core/CHANGELOG.md)
- [Commits](https://github.com/lunariajs/lunaria/commits/@lunariajs/core@0.2.0/packages/core)

---
updated-dependencies:
- dependency-name: "@lunariajs/core"
  dependency-version: 0.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 18, 2026
@cloudflare-workers-and-pages

Copy link
Copy Markdown

Deploying with  Cloudflare Workers  Cloudflare Workers

The latest updates on your project. Learn more about integrating Git with Workers.

Status Name Latest Commit Preview URL Updated (UTC)
✅ Deployment successful!
View logs
terra-docs 08126ec Commit Preview URL

Branch Preview URL
Sep 18 2026, 04:37 PM

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants