Skip to content

Commit 8400d60

Browse files
Merge branch 'main' into tabbar-overwrite-fix
2 parents 3639392 + 403ae24 commit 8400d60

179 files changed

Lines changed: 990 additions & 124 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.architecture.eslintrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"plugins": [
33
"boundaries"
44
],
5-
"ignorePatterns": ["codex-ui"],
5+
"ignorePatterns": ["@codexteam/ui"],
66
"settings": {
77
"boundaries/elements": [
88
/**
@@ -112,7 +112,7 @@
112112
*/
113113
{
114114
"type": "CodeX UI",
115-
"pattern": "**/codex-ui/**/*",
115+
"pattern": "**/@codexteam/ui/**/*",
116116
"mode": "file"
117117
}
118118
],

.dockerignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
!vite.config.ts
1919
!postcss.config.js
2020
!.yarn/releases
21-
!codex-ui
21+
!@codexteam/ui/
2222

2323
# Ignore unnecessary files inside allowed directories
2424
**/*~

.github/workflows/eslint-check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
- name: Run ESLint
2323
run: yarn lint
2424

25-
- name: Install codex-ui dependencies
25+
- name: Install @codexteam/ui dependencies
2626
run: |
2727
yarn install
28-
working-directory: ./codex-ui
28+
working-directory: ./@codexteam/ui
2929

30-
- name: Run ESLint on codex-ui
30+
- name: Run ESLint on @codexteam/ui
3131
run: yarn lint
32-
working-directory: ./codex-ui
32+
working-directory: ./@codexteam/ui

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"eslint.workingDirectories": ["./", "./codex-ui"],
2+
"eslint.workingDirectories": ["./", "./@codexteam/ui"],
33

44
// Enable the ESlint flat config support
55
"eslint.experimental.useFlatConfig": true,

@codexteam/ui/.npmignore

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
dev/
2+
node_modules/
3+
src/
4+
*.log
5+
*.lock
6+
.npmrc
7+
.git/
8+
.gitignore
9+
.github/
10+
.idea/
11+
.vscode/
12+
13+
tsconfig.json
14+
tsconfig.dts.json
15+
eslint.config.mjs
16+
postcss.config.js
17+
vite.config.ts
18+
19+
README.md
Lines changed: 4 additions & 4 deletions
File renamed without changes.

0 commit comments

Comments
 (0)