Skip to content

Commit 8c0d7a8

Browse files
committed
1.1.0 before release
1 parent e36bbd0 commit 8c0d7a8

File tree

14 files changed

+693
-389
lines changed

14 files changed

+693
-389
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ root = true
22

33
[*]
44
end_of_line = lf
5-
indent_style = space
5+
indent_style = tab
66
indent_size = 2
77
insert_final_newline = true

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,11 @@ jobs:
2828
run: pnpm i
2929

3030
- name: Build
31-
run: pnpm build --skip-user-input
31+
run: pnpm build -q -p
3232

3333
- name: Create Release
3434
uses: ncipollo/release-action@v1.14.0
3535
with:
36-
artifacts: "dist/*"
37-
makeLatest: true
36+
artifacts: "dist/*.zip"
37+
bodyFile: "dist/patch_notes.txt"
38+
makeLatest: true

.prettierrc.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"printWidth": 100,
3-
"tabWidth": 2,
4-
"useTabs": false,
5-
"semi": true,
6-
"singleQuote": false,
7-
"quoteProps": "as-needed",
8-
"jsxSingleQuote": false,
9-
"trailingComma": "all",
10-
"bracketSpacing": true,
11-
"bracketSameLine": true,
12-
"arrowParens": "always",
13-
"proseWrap": "always"
2+
"printWidth": 100,
3+
"tabWidth": 2,
4+
"useTabs": true,
5+
"semi": true,
6+
"singleQuote": false,
7+
"quoteProps": "as-needed",
8+
"jsxSingleQuote": false,
9+
"trailingComma": "all",
10+
"bracketSpacing": true,
11+
"bracketSameLine": true,
12+
"arrowParens": "always",
13+
"proseWrap": "always"
1414
}

0 commit comments

Comments
 (0)