Skip to content

Commit c77eba6

Browse files
committed
v7 beta
1 parent a97f714 commit c77eba6

File tree

271 files changed

+10260
-74284
lines changed

Some content is hidden

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

271 files changed

+10260
-74284
lines changed

.babelrc

Lines changed: 0 additions & 22 deletions
This file was deleted.

.esdoc.json

Lines changed: 0 additions & 51 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 59 deletions
This file was deleted.

.eslintrc.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es2021": true
5+
},
6+
"extends": [
7+
"eslint:recommended",
8+
"plugin:@typescript-eslint/recommended",
9+
"prettier",
10+
"plugin:prettier/recommended"
11+
],
12+
"overrides": [
13+
],
14+
"parser": "@typescript-eslint/parser",
15+
"parserOptions": {
16+
"ecmaVersion": "latest",
17+
"sourceType": "module"
18+
},
19+
"plugins": [
20+
"@typescript-eslint"
21+
],
22+
"rules": {
23+
},
24+
"ignorePatterns": ["cypress", "examples", "tutorial", "src/plugins/spectrogram*"]
25+
}

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github: [thijstriemstra, katspaugh]
1+
github: [katspaugh]

.github/workflows/build/action.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: 'Build'
2+
3+
description: 'Build the app'
4+
5+
runs:
6+
using: 'composite'
7+
steps:
8+
- name: Build
9+
shell: bash
10+
run: yarn build

.github/workflows/e2e.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: e2e
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
e2e:
8+
runs-on: ubuntu-latest
9+
name: E2E tests
10+
steps:
11+
- uses: actions/checkout@v3
12+
13+
- uses: ./.github/workflows/yarn
14+
15+
- name: Install Cypress
16+
run: |
17+
./node_modules/.bin/cypress install
18+
19+
- uses: ./.github/workflows/build
20+
21+
- uses: cypress-io/github-action@v4
22+
with:
23+
spec: cypress/e2e/*.cy.js
24+
browser: chrome
25+
record: false
26+
27+
- uses: actions/upload-artifact@v3
28+
if: failure()
29+
with:
30+
name: cypress-screenshots
31+
path: cypress/screenshots

.github/workflows/lint.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Lint
2+
on: [pull_request]
3+
4+
jobs:
5+
eslint:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v3
9+
10+
- uses: ./.github/workflows/yarn
11+
12+
- uses: Maggi64/eslint-plus-action@master
13+
with:
14+
npmInstall: false

.github/workflows/main.yml

Lines changed: 0 additions & 51 deletions
This file was deleted.

.github/workflows/publish.yml

Lines changed: 0 additions & 64 deletions
This file was deleted.

0 commit comments

Comments
 (0)