Skip to content

Commit

Permalink
feat: v2 UI
Browse files Browse the repository at this point in the history
  • Loading branch information
mnsinri committed Oct 14, 2024
1 parent 94159b9 commit e4c9511
Show file tree
Hide file tree
Showing 126 changed files with 2,544 additions and 2,336 deletions.
28 changes: 28 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
module.exports = {
root: true,
env: {
es6: true,
node: true,
},
extends: [
"eslint:recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
],
parser: "@typescript-eslint/parser",
parserOptions: {
tsconfigRootDir: __dirname,
project: ["tsconfig.json"],
sourceType: "module",
},
ignorePatterns: ["/lib/**/*"],
plugins: ["@typescript-eslint", "import"],
rules: {
quotes: ["error", "double"],
"import/no-unresolved": "off",
"no-case-declarations": "off"
},
};
2 changes: 2 additions & 0 deletions .github/workflows/firebase-hosting-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ env:
REACT_APP_MESSAGING_SENDER_ID: ${{secrets.REACT_APP_MESSAGING_SENDER_ID}}
REACT_APP_APP_ID: ${{secrets.REACT_APP_APP_ID}}
REACT_APP_DB_DATA_PATH: ${{secrets.REACT_APP_DB_DATA_PATH}}
REACT_APP_STREAM_COLLECTION_NAME: ${{secrets.REACT_APP_STREAM_COLLECTION_NAME}}
REACT_APP_STREAMER_COLLECTION_NAME: ${{secrets.REACT_APP_STREAMER_COLLECTION_NAME}}
CI: false

jobs:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/firebase-hosting-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ env:
REACT_APP_MESSAGING_SENDER_ID: ${{secrets.REACT_APP_MESSAGING_SENDER_ID}}
REACT_APP_APP_ID: ${{secrets.REACT_APP_APP_ID}}
REACT_APP_DB_DATA_PATH: ${{secrets.REACT_APP_DB_DATA_PATH}}
REACT_APP_STREAM_COLLECTION_NAME: ${{secrets.REACT_APP_STREAM_COLLECTION_NAME}}
REACT_APP_STREAMER_COLLECTION_NAME: ${{secrets.REACT_APP_STREAMER_COLLECTION_NAME}}
CI: false

jobs:
Expand Down
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,4 @@

npm-debug.log*
yarn-debug.log*
yarn-error.log*
*.log
yarn-error.log*
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
},
"files.eol": "\n",
"cSpell.words": [
"easings",
"Firestore",
"HHMM",
"hoverable",
"Vspo",
"vssdb"
]
}
18 changes: 0 additions & 18 deletions @types/index.d.ts

This file was deleted.

3 changes: 2 additions & 1 deletion firebase.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
"**/node_modules/**",
"**/functions/**"
]
},
"emulators": {
Expand Down
Loading

0 comments on commit e4c9511

Please sign in to comment.