Skip to content

Commit

Permalink
chore: update packages (#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveSkender authored Oct 11, 2023
1 parent 63ddb02 commit 9466b34
Show file tree
Hide file tree
Showing 70 changed files with 7,560 additions and 15,990 deletions.
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

0 comments on commit 9466b34

Please sign in to comment.