-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
147 changed files
with
5,555 additions
and
22,946 deletions.
There are no files selected for viewing
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,5 @@ | ||
--- | ||
'svelte-hmr': minor | ||
--- | ||
|
||
Rewrite tests to get rid of old vulnerable (dev) dependencies, and update CI setup |
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 @@ | ||
*.ts |
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,15 @@ | ||
parserOptions: | ||
sourceType: module | ||
ecmaVersion: latest | ||
|
||
# overrides: | ||
# - files: | ||
# - "packages/svelte-hmr/index.js" | ||
# - "packages/svelte-hmr/lib/**/*" | ||
# - "**/rollup.config.js" | ||
# env: | ||
# node: true | ||
|
||
env: | ||
node: true | ||
# es2022: true |
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
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 |
---|---|---|
|
@@ -45,3 +45,6 @@ pnpm-lock.yaml | |
*.bak.* | ||
*.bak | ||
*.orig | ||
|
||
# temporary playground files | ||
/playground-*/ |
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,3 +1,6 @@ | ||
plugins: | ||
- prettier-plugin-jsdoc | ||
|
||
semi: false | ||
singleQuote: true | ||
trailingComma: es5 |
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,14 @@ | ||
{ | ||
"extends": "@tsconfig/svelte/tsconfig.json", | ||
"include": ["packages/**/*", "playground/**/*"], | ||
"exclude": ["node_modules", "**/*.bak"], | ||
"compilerOptions": { | ||
"checkJs": true, | ||
"moduleResolution": "node16", | ||
"module": "es2022", | ||
"resolveJsonModule": true, | ||
"skipLibCheck": true, | ||
//"noUnusedLocals": true, | ||
//"types": [] | ||
} | ||
} |
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,22 @@ | ||
#!/bin/bash | ||
|
||
# Mount a tmpfs on playground-tmp directory. | ||
# | ||
# This is entirely optional. The point is to save write cycles on your disk. | ||
# | ||
# Usage: | ||
# | ||
# export TMP_PLAYGROUND_DIR=playground-tmp | ||
# ./mount-tmp-playground.sh | ||
# cd playground | ||
# pnpm test | ||
# | ||
|
||
TMP_PLAYGROUND_DIR=${TMP_PLAYGROUND_DIR:-"playground-tmp"} | ||
|
||
if [ "$1" == "-u" ] || [ "$1" == "--unmount" ]; then | ||
umount "$TMP_PLAYGROUND_DIR" | ||
else | ||
mkdir -p "$TMP_PLAYGROUND_DIR" | ||
mount -o size=16G -t tmpfs none playground-tmp | ||
fi |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.