-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: angular 19 * feat: angular cdk upgrade * fix: sass refactor * fix: update peer dependencies * fix: CHANGELOG * feat: rename color files for consistency * feat: new color files * feat: version bump * feat: Indeterminate Checkbox (#1083) * fix: position of check mark when checked set to true * fix: upgrade ng2-file-upload * feat: migrate to yarn * fix: moment issues * fix: ngx-time * fix: format and lint * fix: tests
- Loading branch information
Showing
317 changed files
with
18,859 additions
and
27,989 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1,46 @@ | ||
|
||
module.exports = { | ||
'root': true, | ||
root: true, | ||
|
||
ignorePatterns: [ | ||
'projects/**/*', | ||
'dist/**/*', | ||
'cypress/**/*' | ||
], | ||
ignorePatterns: ['dist/**/*', 'cypress/**/*'], | ||
|
||
extends: [ | ||
'@swimlane', | ||
'prettier' | ||
], | ||
extends: ['@swimlane', 'prettier'], | ||
|
||
rules: { | ||
}, | ||
rules: {}, | ||
|
||
overrides: [ | ||
{ | ||
files: [ | ||
'*.ts' | ||
], | ||
parser: '@typescript-eslint/parser', | ||
files: ['*.ts'], | ||
parserOptions: { | ||
project: [ | ||
'tsconfig.json' | ||
], | ||
createDefaultProgram: true | ||
allowAutomaticSingleRunInference: true, | ||
project: ['tsconfig.json', 'tsconfig.app.json', 'tsconfig.spec.json', 'cypress/tsconfig.json'], | ||
tsconfigRootDir: __dirname | ||
}, | ||
extends: [ | ||
'@swimlane/eslint-config/typescript', | ||
'plugin:@angular-eslint/recommended', | ||
'plugin:@angular-eslint/template/process-inline-templates', | ||
'plugin:@typescript-eslint/recommended', | ||
'prettier' | ||
], | ||
rules: { | ||
// off for demo packages | ||
'no-console': 'off', | ||
|
||
// fix these in this repo, off for now | ||
'guard-for-in': 'off', | ||
'@angular-eslint/no-host-metadata-property': 'off', | ||
'@angular-eslint/no-output-native': 'off', | ||
'@angular-eslint/component-class-suffix': 'off', | ||
'@angular-eslint/directive-class-suffix': 'off', | ||
'@angular-eslint/no-output-on-prefix': 'off', | ||
'@angular-eslint/prefer-standalone': 'off', | ||
'@typescript-eslint/explicit-module-boundary-types': 'off', | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
'@typescript-eslint/no-explicit-any': 'off' | ||
} | ||
}, | ||
{ | ||
'files': [ | ||
'*.html' | ||
], | ||
'extends': [ | ||
'plugin:@angular-eslint/template/recommended' | ||
], | ||
'rules': {} | ||
files: ['*.html'], | ||
extends: ['plugin:@angular-eslint/template/recommended'], | ||
rules: {} | ||
} | ||
] | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
name: Build, Test, and Deploy | ||
|
||
env: | ||
NODE_LATEST: 18.x | ||
NODE_OPTIONS: --max_old_space_size=6144 | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Use Node.js ${{ env.NODE_LATEST }} | ||
uses: actions/[email protected] | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ env.NODE_LATEST }} | ||
node-version: 20.17.0 | ||
|
||
- name: Install | ||
uses: bahmutov/npm-install@v1 | ||
with: | ||
install-command: npm ci --legacy-peer-deps | ||
- name: Enable Corepack | ||
run: corepack enable | ||
|
||
- name: Install Yarn | ||
run: corepack prepare [email protected] --activate | ||
|
||
- name: Install dependencies | ||
run: yarn install --immutable | ||
|
||
- name: Build | ||
run: | | ||
npm run build | ||
yarn build | ||
env: | ||
CI: true | ||
|
||
- name: Test | ||
run: | | ||
npm run test --if-present | ||
yarn test | ||
env: | ||
CI: true | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,3 +45,4 @@ cypress/screenshots | |
|
||
.angular/* | ||
.nx/* | ||
.yarn/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
checksumBehavior: update | ||
|
||
defaultSemverRangePrefix: '' | ||
|
||
nodeLinker: node-modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.