Skip to content

Commit

Permalink
build: update artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
daiyam committed Aug 14, 2022
1 parent e23ad78 commit 9d1a510
Show file tree
Hide file tree
Showing 6 changed files with 13,630 additions and 12,300 deletions.
6 changes: 3 additions & 3 deletions .artifactrc.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
artifacts:
- name: "@daiyam/artifact-base"
version: 0.3.0
version: 0.5.0
- name: "@daiyam/artifact-lang-ts"
version: 0.2.2
version: 0.4.0
- name: "@daiyam/artifact-vsx-ts"
version: 0.3.0
version: 0.5.1
- name: "@daiyam/artifact-vsx-zokugun"
version: 0.2.0
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/setup-node@v2
with:
node-version: 14
node-version: 16
- run: npm ci
- name: Publish to Open VSX Registry
uses: HaaLeo/publish-vscode-extension@v0
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v14.17.6
v16.16.0
39 changes: 39 additions & 0 deletions .xo-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"test/fixtures"
],
"rules": {
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/brace-style": [
"error",
"stroustrup"
Expand Down Expand Up @@ -31,6 +32,38 @@
}
}
],
"@typescript-eslint/member-ordering": [
"error",
{
"default": [
"field",
"constructor",
"get",
"set",
"method"
]
}
],
"@typescript-eslint/naming-convention": [
"error",
{
"selector": "variable",
"modifiers": [
"const",
"global"
],
"format": [
"camelCase",
"UPPER_CASE"
]
},
{
"selector": "variable",
"format": [
"camelCase"
]
}
],
"@typescript-eslint/no-confusing-void-expression": "off",
"@typescript-eslint/no-dynamic-delete": "off",
"@typescript-eslint/no-inferrable-types": "off",
Expand All @@ -46,6 +79,10 @@
"capitalized-comments": "off",
"complexity": "off",
"default-case": "off",
"import/extensions": [
"error",
"never"
],
"import/order": [
"error",
{
Expand Down Expand Up @@ -82,6 +119,8 @@
],
"unicorn/empty-brace-spaces": "off",
"unicorn/no-array-callback-reference": "off",
"unicorn/no-object-as-default-parameter": "off",
"unicorn/prefer-json-parse-buffer": "off",
"unicorn/prefer-module": "off",
"unicorn/prefer-node-protocol": "off",
"unicorn/prefer-switch": "off",
Expand Down
Loading

0 comments on commit 9d1a510

Please sign in to comment.