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

chore: update packages #265

Merged
merged 36 commits into from
Oct 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
ff99583
update packages
DaveSkender May 25, 2023
3dc1fb8
update build
DaveSkender May 25, 2023
4c81371
update packages (broken)
DaveSkender Jun 22, 2023
9b785e2
Merge branch 'main' into fin
DaveSkender Jun 22, 2023
6388ff7
update packages
DaveSkender Jul 29, 2023
4c706a6
update audit fixes
DaveSkender Jul 29, 2023
977d477
fix color theming
DaveSkender Jul 30, 2023
24e24ce
misc cleanup
DaveSkender Jul 30, 2023
ea32063
update ng packages
DaveSkender Aug 20, 2023
22bf29f
misc style updates
DaveSkender Sep 24, 2023
177a1c6
update .NET packages
DaveSkender Oct 6, 2023
4fbf20f
update ng packages
DaveSkender Oct 7, 2023
b5d5a54
Merge branch 'main' into fin
DaveSkender Oct 7, 2023
be88a2f
fix: display deletes
DaveSkender Oct 8, 2023
bef0603
refactor: module layout
DaveSkender Oct 8, 2023
d7227aa
fix theme toggle styles
DaveSkender Oct 8, 2023
aec2373
fix color picker
DaveSkender Oct 8, 2023
32d878b
fix indicator configuration mobile views
DaveSkender Oct 8, 2023
eccec4a
update meta information
DaveSkender Oct 9, 2023
e020c05
refactor theme switcher and stylesheets
DaveSkender Oct 9, 2023
495f11f
tweak theme styles
DaveSkender Oct 9, 2023
2b96c7e
update npm packages
DaveSkender Oct 9, 2023
753bfde
fix chartjs-financial JS axis, padding
DaveSkender Oct 9, 2023
79b6b31
cleanup chart styles
DaveSkender Oct 9, 2023
f635d42
update scrollbar styles
DaveSkender Oct 9, 2023
d884f1d
fix annotation placements
DaveSkender Oct 9, 2023
064907f
fix line cutoff on charts
DaveSkender Oct 9, 2023
bea0ed4
add minor padding between charts
DaveSkender Oct 10, 2023
13b26ab
add missing server favicon
DaveSkender Oct 10, 2023
09296d0
update WebAPI to .NET 7.0
DaveSkender Oct 10, 2023
dd54dac
upgrade Functions to .NET 7.0
DaveSkender Oct 10, 2023
1150d3c
simplify codeQL
DaveSkender Oct 10, 2023
9181597
update build to use .NET 7 and Node v18.18
DaveSkender Oct 10, 2023
15c5fb0
cadacy cleanup I
DaveSkender Oct 11, 2023
e2de07d
codacy cleanup II
DaveSkender Oct 11, 2023
d91a874
Codacy cleanup III
DaveSkender Oct 11, 2023
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
9 changes: 4 additions & 5 deletions .github/build.main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
tokenSuffix: __

- task: UseDotNet@2
displayName: Use .Net SDK 6.x
displayName: Use .Net SDK 7.x
continueOnError: True
inputs:
version: 6.x
version: 7.x

- task: DotNetCoreCLI@2
displayName: dotnet restore
Expand Down Expand Up @@ -75,14 +75,13 @@ jobs:
- task: UseNode@1
displayName: Use Node 18.x
inputs:
version: 18.16.x
version: 18.18.x

- task: Npm@1
displayName: Install packages
inputs:
command: 'custom'
command: 'install'
workingDir: 'Client'
customCommand: 'install --legacy-peer-deps'

- task: qetza.replacetokens.replacetokens-task.replacetokens@3
displayName: Update GA tag
Expand Down
17 changes: 11 additions & 6 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,13 @@ on:
jobs:
analyze:
name: Analyze
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
# Runner size impacts CodeQL analysis time. To learn more, please see:
# - https://gh.io/recommended-hardware-resources-for-running-codeql
# - https://gh.io/supported-runners-and-hardware-resources
# - https://gh.io/using-larger-runners
# Consider using larger runners for possible analysis time improvements.
runs-on: 'ubuntu-latest'
timeout-minutes: 360
permissions:
actions: read
contents: read
Expand All @@ -33,10 +38,10 @@ jobs:
strategy:
fail-fast: false
matrix:
language: [ 'csharp', 'javascript' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby', 'swift' ]
# Use only 'java' to analyze code written in Java, Kotlin or both
# Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
language: [ 'csharp', 'javascript-typescript' ]
# CodeQL supports [ 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift' ]
# Use only 'java-kotlin' to analyze code written in Java, Kotlin or both
# Use only 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support

steps:
Expand Down
5 changes: 5 additions & 0 deletions Client/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,18 @@
"editor.guides.bracketPairs": "active",
"editor.formatOnSave": true,
"cSpell.words": [
"apidata",
"browserconfig",
"chartjs",
"colorpicker",
"devkit",
"ecoysystem",
"linetype",
"linewidth",
"lookback",
"MACD",
"matero",
"maxwidth",
"noselect",
"Ohlc",
"SUPERTREND",
Expand Down
24 changes: 16 additions & 8 deletions Client/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,28 @@
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"assets": [
"src/icons",
"src/assets",
"src/favicon.ico",
"src/browserconfig.xml",
"src/ecoysystem.config.js"
{
"glob": "**/*",
"input": "src/assets",
"output": "/assets"
}
],
"styles": [
"src/app/styles-theme.scss",
"src/app/styles.scss"
"src/styles.scss",
{
"inject": false,
"input": "src/styles/theme-light.scss",
"bundleName": "theme-light"
}
],
"stylePreprocessorOptions": {
"includePaths": ["node_modules", "src", "src/styles"]
},
"scripts": [],
"allowedCommonJsDependencies": [
"chart.js",
"chartjs-plugin-crosshair"
"src/assets/js/chartjs-chart-financial",
"guid-typescript"
],
"vendorChunk": false,
"extractLicenses": false,
Expand Down
10 changes: 0 additions & 10 deletions Client/ecoysystem.config.js

This file was deleted.

Loading