-
Notifications
You must be signed in to change notification settings - Fork 672
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: merge branch 'master' into issues-2333
- Loading branch information
Showing
782 changed files
with
11,265 additions
and
7,550 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 |
---|---|---|
|
@@ -38,3 +38,5 @@ node_modules/ | |
|
||
# yarn v2 | ||
.yarn | ||
|
||
**/src/index.html |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,16 +8,11 @@ jobs: | |
runs-on: ubuntu-latest | ||
environment: prod | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16.15.0 | ||
|
||
- name: checkout | ||
uses: actions/checkout@v4 | ||
|
||
- uses: borales/[email protected] | ||
with: | ||
cmd: install | ||
node-version-file: '.nvmrc' | ||
- run: yarn install | ||
|
||
- name: build | ||
run: | | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# https://pnpm.io/npmrc#node-linker | ||
node-linker=hoisted |
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 +1 @@ | ||
16.15.0 | ||
18.13.0 |
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
**/test.ts | ||
src/index.html | ||
|
||
.stylelintrc | ||
.stylelintrc.js | ||
.prettierrc | ||
|
||
_nginx/ | ||
|
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 was deleted.
Oops, something went wrong.
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,88 @@ | ||
const { propertyGroups } = require('stylelint-config-clean-order'); | ||
|
||
const propertiesOrder = propertyGroups.map(properties => ({ | ||
noEmptyLineBetween: true, | ||
emptyLineBefore: 'never', | ||
properties | ||
})); | ||
|
||
module.exports = { | ||
extends: ['stylelint-config-standard'], | ||
customSyntax: 'postcss-less', | ||
plugins: ['stylelint-order', 'stylelint-declaration-block-no-ignored-properties'], | ||
rules: { | ||
'function-name-case': ['lower', { ignoreFunctions: ['/colorPalette/'] }], | ||
'function-no-unknown': [ | ||
true, | ||
{ | ||
ignoreFunctions: [ | ||
'fade', | ||
'tint', | ||
'darken', | ||
'ceil', | ||
'fadein', | ||
'floor', | ||
'unit', | ||
'shade', | ||
'lighten', | ||
'percentage', | ||
'-', | ||
'~`colorPalette', | ||
'snaplist', | ||
'fade-out' | ||
] | ||
} | ||
], | ||
'no-descending-specificity': null, | ||
'no-invalid-position-at-import-rule': null, | ||
'declaration-empty-line-before': null, | ||
'keyframes-name-pattern': null, | ||
'custom-property-pattern': null, | ||
'number-max-precision': 8, | ||
'alpha-value-notation': 'number', | ||
'color-function-notation': 'legacy', | ||
'selector-class-pattern': null, | ||
'selector-id-pattern': null, | ||
'plugin/declaration-block-no-ignored-properties': true, | ||
'selector-type-no-unknown': null, | ||
'selector-pseudo-element-no-unknown': [ | ||
true, | ||
{ | ||
ignorePseudoElements: ['ng-deep'] | ||
} | ||
], | ||
'no-invalid-double-slash-comments': null, | ||
'import-notation': 'string', | ||
'media-feature-range-notation': 'prefix', | ||
'media-query-no-invalid': null, | ||
'order/order': [ | ||
[ | ||
'dollar-variables', | ||
'at-variables', | ||
"custom-properties", | ||
{ type: 'at-rule', name: 'custom-media' }, | ||
{ type: 'at-rule', name: 'function' }, | ||
{ type: 'at-rule', name: 'mixin' }, | ||
{ type: 'at-rule', name: 'extend' }, | ||
{ type: 'at-rule', name: 'include' }, | ||
'declarations', | ||
'less-mixins', | ||
{ | ||
type: 'rule', | ||
selector: /^&::[\w-]+/, | ||
hasBlock: true | ||
}, | ||
'rules', | ||
{ type: 'at-rule', name: 'media', hasBlock: true } | ||
], | ||
{ severity: 'warning' } | ||
], | ||
'order/properties-order': [ | ||
propertiesOrder, | ||
{ | ||
severity: 'warning', | ||
unspecified: 'bottomAlphabetical' | ||
} | ||
] | ||
} | ||
}; |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 @@ | ||
enableImmutableInstalls: false | ||
|
||
nodeLinker: node-modules | ||
|
||
yarnPath: .yarn/releases/yarn-4.0.1.cjs |
Oops, something went wrong.