Skip to content
Merged
Show file tree
Hide file tree
Changes from 33 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
cd11e95
start refactor
brian-lou Nov 4, 2025
f44ae68
update
brian-lou Nov 4, 2025
338ba4c
Deprecate various functions in core
brian-lou Nov 4, 2025
92b1596
Remove stuffs
brian-lou Nov 4, 2025
38e8376
Merge branch 'main' into b/branching
brian-lou Nov 4, 2025
dfcc122
fix
brian-lou Nov 4, 2025
befa0ab
create queryFileData
brian-lou Nov 4, 2025
f18a4b9
update api
brian-lou Nov 5, 2025
431c8b6
fix tests
brian-lou Nov 5, 2025
50d7fea
wip
brian-lou Nov 6, 2025
f6ffa9f
Fix builds
brian-lou Nov 6, 2025
09fa14f
fix
brian-lou Nov 6, 2025
068006c
wip
brian-lou Nov 6, 2025
c24d56f
add
brian-lou Nov 6, 2025
da2d0db
fix bugs
brian-lou Nov 6, 2025
755e854
Update UI
brian-lou Nov 6, 2025
ef8aea8
fix tests
brian-lou Nov 6, 2025
0079f1e
add errors
brian-lou Nov 7, 2025
6dc608b
update
brian-lou Nov 7, 2025
e0ef685
bruh
brian-lou Nov 7, 2025
f8d1cd7
update branches
brian-lou Nov 7, 2025
506ae18
update sanity
brian-lou Nov 7, 2025
dee1530
update branching
brian-lou Nov 7, 2025
d2d31f5
fix branch logic
brian-lou Nov 7, 2025
37027de
update
brian-lou Nov 7, 2025
449b9c6
remove logs
brian-lou Nov 7, 2025
6f5cc68
fix sanity plugin
brian-lou Nov 8, 2025
9b5e5f7
Merge branch 'main' into b/branching
brian-lou Nov 8, 2025
bd8b912
fix test
brian-lou Nov 8, 2025
df2ce50
update type
brian-lou Nov 8, 2025
3ca6ddc
Merge branch 'main' into b/branching
brian-lou Nov 8, 2025
791d116
fix types
brian-lou Nov 8, 2025
642e1eb
remove
brian-lou Nov 8, 2025
814d4f3
changeset
brian-lou Nov 10, 2025
c22f3f8
edit
brian-lou Nov 10, 2025
0bc57f8
address comments
brian-lou Nov 11, 2025
2fe385f
update
brian-lou Nov 11, 2025
e22de38
fix
brian-lou Nov 11, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
"@babel/parser": "^7.25.7",
"@babel/plugin-transform-react-jsx": "^7.25.9",
"@babel/traverse": "^7.25.7",
"@clack/prompts": "^1.0.0-alpha.1",
"@clack/prompts": "^1.0.0-alpha.6",
"@formatjs/icu-messageformat-parser": "^2.11.4",
"chalk": "^5.4.1",
"commander": "^12.1.0",
Expand All @@ -98,7 +98,6 @@
"mdast-util-find-and-replace": "^3.0.2",
"micromatch": "^4.0.8",
"open": "^10.1.1",
"ora": "^8.2.0",
"remark-frontmatter": "^5.0.0",
"remark-mdx": "^3.1.0",
"remark-parse": "^11.0.0",
Expand Down
10 changes: 9 additions & 1 deletion packages/cli/src/api/__mocks__/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export const createMockSettings = (
overrides: Partial<Settings> = {}
): Settings => {
const defaultSettings = {
configDirectory: '',
configDirectory: '/mock/.gt',
publish: false,
baseUrl: '',
dashboardUrl: '',
Expand All @@ -19,6 +19,14 @@ export const createMockSettings = (
placeholderPaths: {},
transformPaths: {},
},
parsingOptions: {
conditionNames: [],
},
branchOptions: {
currentBranch: '',
autoDetectBranches: false,
remoteName: 'origin',
},
stageTranslations: false,
src: [],
};
Expand Down
245 changes: 0 additions & 245 deletions packages/cli/src/api/__tests__/checkFileTranslations.test.ts

This file was deleted.

Loading
Loading