Skip to content

Commit 623d6da

Browse files
committed
ci: update
1 parent 6fa6533 commit 623d6da

File tree

1,842 files changed

+37852
-53231
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,842 files changed

+37852
-53231
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
Please check if your PR fulfills the following requirements:
44

5-
- [ ] The commit message follows our guidelines: https://github.com/ngxs/store/blob/master/CONTRIBUTING.md#commit
6-
- [ ] Tests for the changes have been added (for bug fixes / features)
7-
- [ ] Docs have been added / updated (for bug fixes / features)
5+
- [ ] The commit message follows our guidelines: https://github.com/ngxs/store/blob/master/CONTRIBUTING.md#commit
6+
- [ ] Tests for the changes have been added (for bug fixes / features)
7+
- [ ] Docs have been added / updated (for bug fixes / features)
88

99
## PR Type
1010

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,6 @@ junit.xml
2020
# cache
2121
.angular
2222
**/.cache**/
23+
24+
.nx/cache
25+
.nx/workspace-data

.global/commitlint.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
const { projects } = require('../workspace.json');
1+
const {projects} = require('../workspace.json');
22

33
module.exports = {
44
extends: [require('path').resolve(__dirname, '../libs/commitlint/index.js')],
5-
rules: { 'scope-enum': () => [2, 'always', [...Object.keys(projects), 'release']] }
5+
rules: {'scope-enum': () => [2, 'always', [...Object.keys(projects), 'release']]},
66
};

.global/integration-app.style.scss

Lines changed: 29 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,44 @@
11
@use '@angular/material' as mat;
2-
@include mat.core();
32

4-
$ng-app-variable-primary: mat.define-palette(mat.$indigo-palette);
5-
$ng-app-variable-accent: mat.define-palette(mat.$pink-palette, A200, A100, A400);
6-
$ng-app-variable-warn: mat.define-palette(mat.$red-palette);
7-
$ng-app-variable-theme: mat.define-light-theme(
8-
$ng-app-variable-primary,
9-
$ng-app-variable-accent,
10-
$ng-app-variable-warn
3+
$theme: mat.define-theme(
4+
(
5+
color: (
6+
theme-type: dark,
7+
primary: mat.$violet-palette,
8+
),
9+
typography: (
10+
brand-family: 'Comic Sans',
11+
bold-weight: 900,
12+
),
13+
density: (
14+
scale: -1,
15+
),
16+
)
1117
);
1218

13-
@include mat.all-component-themes($ng-app-variable-theme);
19+
@include mat.core();
1420

1521
html,
1622
body {
1723
height: 100%;
24+
25+
@include mat.core-theme($theme);
26+
@include mat.button-theme($theme);
27+
@include mat.core-color($theme);
28+
@include mat.button-color($theme);
1829
}
1930

2031
body {
2132
margin: 0;
22-
font-family: pfhighway, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
33+
font-family:
34+
pfhighway,
35+
-apple-system,
36+
BlinkMacSystemFont,
37+
Segoe UI,
38+
Roboto,
39+
Helvetica,
40+
Arial,
41+
sans-serif;
2342
}
2443

2544
a {

.npmrc

Lines changed: 0 additions & 4 deletions
This file was deleted.

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@ typescript.bad.ts
1010
typescript.good.ts
1111
package-lock.json
1212
.angular
13+
14+
/.nx/cache
15+
/.nx/workspace-data

.versionrc.json

Lines changed: 0 additions & 45 deletions
This file was deleted.

LICENSE

Lines changed: 0 additions & 21 deletions
This file was deleted.
Lines changed: 37 additions & 13 deletions
Loading
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { NgEnvironment } from '@angular-ru/cdk/typings';
1+
import {NgEnvironment} from '@angular-ru/cdk/typings';
22

33
export const environment: NgEnvironment = {
4-
production: true
4+
production: true,
55
};

0 commit comments

Comments
 (0)