Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

stage for beta release #313

Merged
merged 14 commits into from
Aug 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"env": {
"NODE_NO_WARNINGS": "1"
},
"envFile": "${workspaceFolder}/.vscode/test.env"
"envFile": "${workspaceFolder}/.vscode/private.env"
}, {
"name": "Run API Tests",
"type": "node",
Expand Down Expand Up @@ -66,7 +66,7 @@
"--runInBand",
"--config", "jest.config.json",
//"--detectOpenHandles",
"test/unit/sync-engine.test.ts"
"test/unit/photos-library.test.ts"
],
"env": {
"NODE_NO_WARNINGS": "1"
Expand Down
2 changes: 1 addition & 1 deletion app/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ bin/
node_modules/
docs/
coverage/
src/lib/resource-manager/schemas/
src/lib/resources/schemas/
2 changes: 1 addition & 1 deletion app/build/schema.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This script is used to build the various json schema from ts files

CMD="npx ts-json-schema-generator -f tsconfig.json"
TARGET_FOLDER="src/lib/resource-manager/schemas"
TARGET_FOLDER="src/lib/resources/schemas"

if [ ! -d "$TARGET_FOLDER" ]; then
mkdir -p "$TARGET_FOLDER"
Expand Down
2 changes: 1 addition & 1 deletion app/jest.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts",
"!src/app/main.ts",
"!src/main.ts",
"!src/app/event/**/*",
"!src/app/error/**/*",
"!src/lib/package.ts",
Expand Down
4 changes: 4 additions & 0 deletions app/knip.config.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,9 @@
"ts-json-schema-generator", // Loaded by 'build-schema' script
"typedoc-plugin-markdown", // Loaded by 'typedoc' script
"typedoc-github-wiki-theme" // Loaded by 'typedoc' script
],
"ignoreBinaries": [ // Not sure why they are reported as unused
"eslint.config.json",
"package.json"
]
}
Loading
Loading