Commit 7bfe5f753d77620027248a6238bccd8a23f7ad7c

Authored by vben
1 parent 4cb3784f

fix: style error

.github/release-drafter.yml deleted 100644 โ†’ 0
1   -name-template: 'release-v$NEXT_PATCH_VERSION'
2   -tag-template: 'release-v$NEXT_PATCH_VERSION'
3   -categories:
4   - - title: 'Features'
5   - labels:
6   - - 'feat'
7   - - title: 'Bug Fixes'
8   - labels:
9   - - 'fix'
10   - - 'bugfix'
11   - - 'bug'
12   - - title: 'Performance'
13   - labels:
14   - - 'chore'
15   - - 'perf'
16   - - 'style'
17   - - 'refactor'
18   - - 'revert'
19   - - 'wip'
20   - - title: 'Ci'
21   - labels:
22   - - 'ci'
23   - - 'build'
24   - - 'init'
25   - - title: 'Docs'
26   - labels:
27   - - 'docs'
28   - - 'build'
29   - - 'init'
30   - - 'workflow'
31   -change-template: '- $TITLE (#$NUMBER) @$AUTHOR'
32   -template: |
33   - # What's Changed
34   - $CHANGES
.github/workflows/release-drafter.yml deleted 100644 โ†’ 0
1   -name: Release Drafter
2   -
3   -on:
4   - push:
5   - branches:
6   - - main
7   -
8   -jobs:
9   - draft_release:
10   - name: Draft release
11   - runs-on: ubuntu-latest
12   - steps:
13   - - uses: release-drafter/release-drafter@v5.11.0
14   - name: Draft
15   - env:
16   - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
.github/workflows/release.yml 0 โ†’ 100644
  1 +name: Release
  2 +
  3 +on:
  4 + push:
  5 + tags:
  6 + - v*
  7 +
  8 +jobs:
  9 + release:
  10 + runs-on: ubuntu-latest
  11 + steps:
  12 + - uses: actions/checkout@v2
  13 + - run: npx conventional-github-releaser -p angular
  14 + env:
  15 + CONVENTIONAL_GITHUB_RELEASER_TOKEN: ${{secrets.GITHUB_TOKEN}}
... ...
.vscode/settings.json
... ... @@ -64,7 +64,14 @@
64 64 "**/.idea": true,
65 65 "**/.vscode": false,
66 66 "**/yarn.lock": true,
67   - "**/tmp": true
  67 + "**/tmp": true,
  68 + "out": true,
  69 + "dist": true,
  70 + "node_modules": true,
  71 + "CHANGELOG.md": true,
  72 + "examples": true,
  73 + "res": true,
  74 + "screenshots": true
68 75 },
69 76 "files.exclude": {
70 77 "**/bower_components": true,
... ... @@ -157,7 +164,7 @@
157 164 "editor.defaultFormatter": "esbenp.prettier-vscode"
158 165 },
159 166 "[json]": {
160   - "editor.defaultFormatter": "esbenp.prettier-vscode"
  167 + "editor.defaultFormatter": "vscode.json-language-features"
161 168 },
162 169 "[jsonc]": {
163 170 "editor.defaultFormatter": "vscode.json-language-features"
... ... @@ -186,9 +193,10 @@
186 193 "i18n-ally.keystyle": "nested",
187 194 "i18n-ally.sortKeys": true,
188 195 "i18n-ally.namespace": true,
189   - "i18n-ally.pathMatcher":"{locale}/{namespaces}.{ext}",
  196 + "i18n-ally.pathMatcher": "{locale}/{namespaces}.{ext}",
190 197 "i18n-ally.enabledParsers": [
191 198 "ts"
192 199 ],
193   - "i18n-ally.sourceLanguage": "zh"
  200 + "i18n-ally.sourceLanguage": "zh",
  201 + "i18n-ally.enabledFrameworks":["vue","react"]
194 202 }
195 203 \ No newline at end of file
... ...
src/layouts/default/multitabs/index.less
... ... @@ -115,15 +115,15 @@
115 115 }
116 116 }
117 117 }
118   -}
119 118  
120   -.ant-tabs-extra-content {
121   - margin-top: 2px;
122   - line-height: @multiple-height !important;
123   -}
  119 + .ant-tabs-extra-content {
  120 + margin-top: 2px;
  121 + line-height: @multiple-height !important;
  122 + }
124 123  
125   -.ant-dropdown-trigger {
126   - display: inline-flex;
  124 + .ant-dropdown-trigger {
  125 + display: inline-flex;
  126 + }
127 127 }
128 128  
129 129 .multiple-tabs-content {
... ...