├── .editorconfig ├── .github └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .nvmrc ├── .yarn └── releases │ └── yarn-3.5.0.cjs ├── .yarnrc.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── README_ja.md ├── package.json ├── src ├── descriptive.ts ├── index.ts └── suggestive.ts ├── tests └── index.ts ├── tsconfig.json ├── vitest.config.ts └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocka/yup-locale-ja/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocka/yup-locale-ja/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocka/yup-locale-ja/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocka/yup-locale-ja/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18.15.0 2 | -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.5.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocka/yup-locale-ja/HEAD/.yarn/releases/yarn-3.5.0.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocka/yup-locale-ja/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocka/yup-locale-ja/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocka/yup-locale-ja/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocka/yup-locale-ja/HEAD/README.md -------------------------------------------------------------------------------- /README_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocka/yup-locale-ja/HEAD/README_ja.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocka/yup-locale-ja/HEAD/package.json -------------------------------------------------------------------------------- /src/descriptive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocka/yup-locale-ja/HEAD/src/descriptive.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocka/yup-locale-ja/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/suggestive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocka/yup-locale-ja/HEAD/src/suggestive.ts -------------------------------------------------------------------------------- /tests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocka/yup-locale-ja/HEAD/tests/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocka/yup-locale-ja/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocka/yup-locale-ja/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocka/yup-locale-ja/HEAD/yarn.lock --------------------------------------------------------------------------------