Skip to content

Commit 40adcfb

Browse files
committed
Rolling it way back
1 parent aa09ad9 commit 40adcfb

File tree

208 files changed

+21884
-8681
lines changed

Some content is hidden

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

208 files changed

+21884
-8681
lines changed

.eslintrc.cjs

Lines changed: 29 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,31 @@
11
/** @type { import("eslint").Linter.Config } */
22
module.exports = {
3-
root: true,
4-
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:svelte/recommended', 'prettier'],
5-
parser: '@typescript-eslint/parser',
6-
plugins: ['@typescript-eslint'],
7-
parserOptions: {
8-
sourceType: 'module',
9-
ecmaVersion: 2020,
10-
extraFileExtensions: ['.svelte']
11-
},
12-
env: {
13-
browser: true,
14-
es2017: true,
15-
node: true
16-
},
17-
overrides: [
18-
{
19-
files: ['*.svelte'],
20-
parser: 'svelte-eslint-parser',
21-
parserOptions: {
22-
parser: '@typescript-eslint/parser'
23-
}
24-
}
25-
]
26-
}
3+
root: true,
4+
extends: [
5+
'eslint:recommended',
6+
'plugin:@typescript-eslint/recommended',
7+
'plugin:svelte/recommended',
8+
'prettier'
9+
],
10+
parser: '@typescript-eslint/parser',
11+
plugins: ['@typescript-eslint'],
12+
parserOptions: {
13+
sourceType: 'module',
14+
ecmaVersion: 2020,
15+
extraFileExtensions: ['.svelte']
16+
},
17+
env: {
18+
browser: true,
19+
es2017: true,
20+
node: true
21+
},
22+
overrides: [
23+
{
24+
files: ['*.svelte'],
25+
parser: 'svelte-eslint-parser',
26+
parserOptions: {
27+
parser: '@typescript-eslint/parser'
28+
}
29+
}
30+
]
31+
};

.github/workflows/coverage.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
name: coveralls test coverage
22

33
on:
4-
push:
5-
branches:
6-
- main
7-
pull_request:
8-
release:
9-
types:
10-
- created
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
release:
9+
types:
10+
- created
1111

1212
jobs:
13-
build:
14-
runs-on: ubuntu-latest
15-
steps:
16-
- uses: actions/checkout@v1
17-
- uses: actions/setup-node@v1
18-
with:
19-
node-version: 18
20-
- run: npm i svelte
21-
- run: npm ci
22-
- run: npm test
23-
- uses: coverallsapp/github-action@master
24-
with:
25-
github-token: ${{ secrets.GITHUB_TOKEN }}
13+
build:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v1
17+
- uses: actions/setup-node@v1
18+
with:
19+
node-version: 18
20+
- run: npm i svelte
21+
- run: npm ci
22+
- run: npm test
23+
- uses: coverallsapp/github-action@master
24+
with:
25+
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/publish.yml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -4,31 +4,31 @@
44
name: publish
55

66
on:
7-
release:
8-
types: [published]
7+
release:
8+
types: [published]
99

1010
jobs:
11-
build:
12-
runs-on: ubuntu-latest
13-
steps:
14-
- uses: actions/checkout@v2
15-
- uses: actions/setup-node@v1
16-
with:
17-
node-version: 18
18-
- run: npm ci
19-
- run: npm test
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: actions/setup-node@v1
16+
with:
17+
node-version: 18
18+
- run: npm ci
19+
- run: npm test
2020

21-
publish-npm:
22-
needs: build
23-
runs-on: ubuntu-latest
24-
steps:
25-
- uses: actions/checkout@v2
26-
- uses: actions/setup-node@v1
27-
with:
28-
node-version: 18
29-
registry-url: https://registry.npmjs.org/
30-
- run: npm ci
31-
- run: npm run package
32-
- run: npm publish .
33-
env:
34-
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
21+
publish-npm:
22+
needs: build
23+
runs-on: ubuntu-latest
24+
steps:
25+
- uses: actions/checkout@v2
26+
- uses: actions/setup-node@v1
27+
with:
28+
node-version: 18
29+
registry-url: https://registry.npmjs.org/
30+
- run: npm ci
31+
- run: npm run package
32+
- run: npm publish .
33+
env:
34+
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

.npmrc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
engine-strict=true
2-
@humanspeak:registry=https://npm.pkg.github.com

.prettierrc

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,7 @@
11
{
2-
"useTabs": false,
3-
"trailingComma": "none",
4-
"printWidth": 200,
5-
"tabWidth": 4,
6-
"semi": false,
7-
"singleQuote": true,
8-
"plugins": ["prettier-plugin-svelte"],
9-
"overrides": [
10-
{
11-
"files": "*.svelte",
12-
"options": {
13-
"parser": "svelte"
14-
}
15-
}
16-
]
2+
"useTabs": true,
3+
"singleQuote": true,
4+
"printWidth": 100,
5+
"plugins": ["prettier-plugin-svelte"],
6+
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
177
}

.trunk/actions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/Users/jasonkummerl/.cache/trunk/repos/73e5578e7d1118cc31b2adc6cfa7a35b/actions

.trunk/logs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/Users/jasonkummerl/.cache/trunk/repos/73e5578e7d1118cc31b2adc6cfa7a35b/logs

.trunk/notifications

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/Users/jasonkummerl/.cache/trunk/repos/73e5578e7d1118cc31b2adc6cfa7a35b/notifications

.trunk/out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/Users/jasonkummerl/.cache/trunk/repos/73e5578e7d1118cc31b2adc6cfa7a35b/out

.trunk/plugins/trunk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/Users/jasonkummerl/.cache/trunk/plugins/https---github-com-trunk-io-plugins/v1.6.6-4ebadccd80b22638

0 commit comments

Comments
 (0)