i18n: langnostic@0.0.9
This commit is contained in:
parent
d016767917
commit
15bb7d3a54
|
|
@ -1,4 +1,5 @@
|
||||||
import { ConfigType } from 'langnostic';
|
import { ConfigType } from 'langnostic';
|
||||||
|
import MdxPlugin from '@langnostic/plugin-mdx';
|
||||||
|
|
||||||
const config: ConfigType = {
|
const config: ConfigType = {
|
||||||
ai: {
|
ai: {
|
||||||
|
|
@ -11,7 +12,7 @@ const config: ConfigType = {
|
||||||
groups: [
|
groups: [
|
||||||
{
|
{
|
||||||
name: 'quiz',
|
name: 'quiz',
|
||||||
plugin: 'mdx',
|
plugin: MdxPlugin(),
|
||||||
paths: [
|
paths: [
|
||||||
{
|
{
|
||||||
source: './packages/quiz/**/en-US.mdx',
|
source: './packages/quiz/**/en-US.mdx',
|
||||||
|
|
@ -21,7 +22,7 @@ const config: ConfigType = {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'guidebooks',
|
name: 'guidebooks',
|
||||||
plugin: 'mdx',
|
plugin: MdxPlugin(),
|
||||||
paths: [
|
paths: [
|
||||||
{
|
{
|
||||||
source: './packages/behavioral-interview-guidebook/**/en-US.mdx',
|
source: './packages/behavioral-interview-guidebook/**/en-US.mdx',
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -3,10 +3,9 @@
|
||||||
"format-mdx": "prettier --write \"packages/**/en-US.{md,mdx}\"",
|
"format-mdx": "prettier --write \"packages/**/en-US.{md,mdx}\"",
|
||||||
"i18n": "langnostic translate"
|
"i18n": "langnostic translate"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
|
||||||
"langnostic": "^0.0.7"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"langnostic": "^0.0.9",
|
||||||
|
"@langnostic/plugin-mdx": "^0.0.9",
|
||||||
"prettier": "^3.5.3",
|
"prettier": "^3.5.3",
|
||||||
"typescript": "^5.8.2"
|
"typescript": "^5.8.2"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue