-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Components are now written in TypeScript, avoiding the need to maintain and test separate type definitions. * Migrated docs site to use SvelteKit and Bootstrap 5. * Switched from Prism to Highlight.js for code syntax highlighting. * Enabled Prettier to autoformat code. * Switched from Jest to Vitest for tests. * Separate `gh-pages` branch is now used to deploy docs so autogenerated files don't have to be committed to master branch. * Added contributing instructions file. These changes should make it a lot easier to build and test the project, lowering the barrier for contributions and future maintenance. Closes #313, closes #311
- Loading branch information
1 parent
805dda7
commit ae61934
Showing
84 changed files
with
1,392 additions
and
6,029 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/** @type { import("eslint").Linter.Config } */ | ||
module.exports = { | ||
root: true, | ||
extends: [ | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:svelte/recommended", | ||
"prettier", | ||
], | ||
parser: "@typescript-eslint/parser", | ||
plugins: ["@typescript-eslint"], | ||
parserOptions: { | ||
sourceType: "module", | ||
ecmaVersion: 2020, | ||
extraFileExtensions: [".svelte"], | ||
}, | ||
env: { | ||
browser: true, | ||
es2017: true, | ||
node: true, | ||
}, | ||
overrides: [ | ||
{ | ||
files: ["*.svelte"], | ||
parser: "svelte-eslint-parser", | ||
parserOptions: { | ||
parser: "@typescript-eslint/parser", | ||
}, | ||
}, | ||
], | ||
}; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,10 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: npm | ||
directory: "/" | ||
schedule: | ||
interval: weekly | ||
time: "21:00" | ||
open-pull-requests-limit: 10 | ||
reviewers: | ||
- Cweili | ||
ignore: | ||
- dependency-name: eslint | ||
versions: | ||
- 7.18.0 | ||
- 7.19.0 | ||
- 7.20.0 | ||
- 7.21.0 | ||
- 7.22.0 | ||
- 7.23.0 | ||
- 7.24.0 | ||
- package-ecosystem: npm | ||
directory: "/" | ||
schedule: | ||
interval: weekly | ||
time: "21:00" | ||
open-pull-requests-limit: 10 | ||
reviewers: | ||
- Cweili |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,17 @@ | ||
# Temporary | ||
.tmp | ||
*.tmp | ||
|
||
# Logs | ||
logs | ||
*.log* | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# Compiled binary addons (http://nodejs.org/api/addons.html) | ||
build/Release | ||
|
||
# Dependency directory | ||
# Commenting this out is preferred by some people, see | ||
# https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git | ||
node_modules | ||
bower_components | ||
|
||
# Users Environment Variables | ||
.lock-wscript | ||
package-lock.json | ||
|
||
# IDE configs | ||
.idea | ||
|
||
# Distributions | ||
/build | ||
/dist | ||
/.svelte-kit | ||
/package | ||
vite.config.js.timestamp-* | ||
vite.config.ts.timestamp-* |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
node_modules | ||
/build | ||
/.svelte-kit | ||
/package | ||
package-lock.json | ||
*.md |
Oops, something went wrong.