GithubHelp home page GithubHelp logo

gen-i18n-ts's People

Contributors

exkazuu avatar reminjp avatar renovate-bot avatar renovate[bot] avatar willbooster-bot avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

gen-i18n-ts's Issues

The automated release is failing 🚨

🚨 The automated release from the main branch failed. 🚨

I recommend you give this issue a high priority, so other packages depending on you can benefit from your bug fixes and new features again.

You can find below the list of errors reported by semantic-release. Each one of them has to be resolved in order to automatically publish your package. I’m sure you can fix this 💪.

Errors are usually caused by a misconfiguration or an authentication problem. With each error reported below you will find explanation and guidance to help you to resolve it.

Once all the errors are resolved, semantic-release will release your package the next time you push a commit to the main branch. You can also manually restart the failed CI job that runs semantic-release.

If you are not sure how to resolve this, here are some links that can help you:

If those don’t help, or if this issue is reporting something you think isn’t right, you can always ask the humans behind semantic-release.


Invalid npm token.

The npm token configured in the NPM_TOKEN environment variable must be a valid token allowing to publish to the registry https://registry.npmjs.org/.

If you are using Two Factor Authentication for your account, set its level to "Authorization only" in your account settings. semantic-release cannot publish with the default "
Authorization and writes" level.

Please make sure to set the NPM_TOKEN environment variable in your CI with the exact value of the npm token.


Good luck with your project ✨

Your semantic-release bot 📦🚀

feat: support lack of keys

if a key is in the default language file but not in a non-default language file

  • key-value pair in default should be added to the non-default
  • some warning message should be shown

if a key is in a non-default language file but not in the default language file

  • the key will be ignored in the output object
  • some warning message should be shown

fix: support argument ${XXX}

ja.json

{
  test: ${a} and ${b}
}

output object

{
   test: function (a: string, b: string) => string
}

test("${b}", "foo") will be "foo and foo" though "${b} and foo" is expected

The automated release is failing 🚨

🚨 The automated release from the release branch failed. 🚨

I recommend you give this issue a high priority, so other packages depending on you could benefit from your bug fixes and new features.

You can find below the list of errors reported by semantic-release. Each one of them has to be resolved in order to automatically publish your package. I’m sure you can resolve this 💪.

Errors are usually caused by a misconfiguration or an authentication problem. With each error reported below you will find explanation and guidance to help you to resolve it.

Once all the errors are resolved, semantic-release will release your package the next time you push a commit to the release branch. You can also manually restart the failed CI job that runs semantic-release.

If you are not sure how to resolve this, here is some links that can help you:

If those don’t help, or if this issue is reporting something you think isn’t right, you can always ask the humans behind semantic-release.


No npm token specified.

An npm token must be created and set in the NPM_TOKEN environment variable on your CI environment.

Please make sure to create an npm token and to set it in the NPM_TOKEN environment variable on your CI environment. The token must allow to publish to the registry https://registry.npmjs.org/.


Good luck with your project ✨

Your semantic-release bot 📦🚀

Dependency Dashboard

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

Warning

These dependencies are deprecated:

Datasource Name Replacement PR?
npm @babel/plugin-proposal-class-properties Unavailable
npm @babel/plugin-proposal-numeric-separator Unavailable

Awaiting Schedule

These updates are awaiting their schedule. Click on a checkbox to get an update now.

  • chore(deps): update all non-major dependencies (@types/node, @typescript-eslint/eslint-plugin, @typescript-eslint/parser)
  • chore(deps): lock file maintenance

Open

These updates have all been created already. Click a checkbox below to force a retry/rebase of any.

Detected dependencies

github-actions
.github/workflows/add-issue-to-project.yml
.github/workflows/add-ready-issue-to-project.yml
.github/workflows/close-comment.yml
.github/workflows/notify-ready.yml
.github/workflows/release.yml
.github/workflows/semantic-pr.yml
.github/workflows/test.yml
.github/workflows/wbfy-merge.yml
.github/workflows/wbfy.yml
npm
.yarn/sdks/eslint/package.json
.yarn/sdks/prettier/package.json
.yarn/sdks/typescript/package.json
package.json
  • js-yaml 4.1.0
  • yargs 17.7.2
  • @babel/core 7.24.7
  • @babel/helper-plugin-utils 7.24.7
  • @babel/node 7.24.7
  • @babel/plugin-proposal-class-properties 7.18.6
  • @babel/plugin-proposal-numeric-separator 7.18.6
  • @babel/preset-env 7.24.7
  • @babel/preset-typescript 7.24.7
  • @types/eslint 8.56.10
  • @types/jest 29.5.12
  • @types/js-yaml 4.0.9
  • @types/micromatch 4.0.7
  • @types/node 20.14.2
  • @types/yargs 17.0.32
  • @typescript-eslint/eslint-plugin 7.13.0
  • @typescript-eslint/parser 7.13.0
  • @willbooster/babel-configs 1.3.1
  • @willbooster/eslint-config-ts 10.6.0
  • @willbooster/prettier-config 9.1.2
  • babel-jest 29.7.0
  • babel-plugin-transform-remove-console 6.9.4
  • build-ts 12.1.0
  • eslint 8.57.0
  • eslint-config-prettier 9.1.0
  • eslint-import-resolver-typescript 3.6.1
  • eslint-plugin-import 2.29.1
  • eslint-plugin-sort-class-members 1.20.0
  • eslint-plugin-sort-destructure-keys 2.0.0
  • eslint-plugin-unicorn 54.0.0
  • husky 9.0.11
  • jest 29.7.0
  • lint-staged 15.2.7
  • micromatch 4.0.7
  • pinst 3.0.0
  • prettier 3.3.2
  • semantic-release 23.1.1
  • sort-package-json 2.10.0
  • typescript 5.4.5
  • node >=18
  • yarn 4.3.0

  • Check this box to trigger a request for Renovate to run again on this repository

feat: support difference of function params

params of functions in output object should be merged.
ja.json (default)

{
  hello: "こんにちは、${name}さん!"
}

en.json

{
  hello: "Hello, ${userName}!"
}

fr.json

{
  hello: "Bonjour!"
}

output:

 hello: (name: string, userName: string) => string

Action Required: Fix Renovate Configuration

There is an error with this repository's Renovate configuration that needs to be fixed. As a precaution, Renovate will stop PRs until it is resolved.

Error type: undefined. Note: this is a nested preset so please contact the preset author if you are unable to fix it yourself.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.