-
Notifications
You must be signed in to change notification settings - Fork 1
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
35 changed files
with
2,782 additions
and
40 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
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 |
---|---|---|
|
@@ -13,11 +13,11 @@ | |
"app:start": "MOZ_ENABLE_WAYLAND=1 ./.store/rt/quark-runtime -no-remote", | ||
"app:startX": "./.store/rt/quark-runtime -no-remote", | ||
"build": "rm -rf dist && concurrently -c auto pnpm:build-*", | ||
"build-content": "webpack --mode production -c ./.config/webpack.config.cjs", | ||
"build-content": "webpack --mode production -c ./.config/webpack.config.js", | ||
"build-modules": "tsc -p ./tsconfigs/tsconfig.modules.json", | ||
"build-actors": "tsc -p ./tsconfigs/tsconfig.actors.json", | ||
"dev": "concurrently -c auto pnpm:dev-*", | ||
"dev-content": "webpack serve --mode development -c ./.config/webpack.config.cjs", | ||
"dev-content": "webpack serve --mode development -c ./.config/webpack.config.js", | ||
"dev-modules": "tsc -w -p ./tsconfigs/tsconfig.modules.json", | ||
"dev-actors": "tsc -w -p ./tsconfigs/tsconfig.actors.json", | ||
"rt:slink": "rm --force ./.store/artifact.tar.bz2 && ln -s ../../experiment-runtime/dist/experiment-runtime-1.0.0.en-US.linux-x86_64.tar.bz2 ./.store/artifact.tar.bz2", | ||
|
@@ -30,6 +30,8 @@ | |
"author": "", | ||
"license": "ISC", | ||
"devDependencies": { | ||
"@melt-ui/pp": "^0.1.4", | ||
"@melt-ui/svelte": "^0.64.0", | ||
"@tinyhttp/app": "^2.2.1", | ||
"@trivago/prettier-plugin-sort-imports": "^4.3.0", | ||
"@tsconfig/svelte": "^5.0.2", | ||
|
@@ -54,6 +56,7 @@ | |
"svelte": "^4.2.1", | ||
"svelte-loader": "^3.1.9", | ||
"svelte-preprocess": "^5.0.4", | ||
"svelte-sequential-preprocessor": "^2.0.1", | ||
"ts-loader": "^9.5.0", | ||
"typescript": "^5.2.2", | ||
"webpack": "^5.89.0", | ||
|
@@ -72,7 +75,9 @@ | |
}, | ||
"pnpm": { | ||
"patchedDependencies": { | ||
"[email protected]": "patches/[email protected]" | ||
"[email protected]": "patches/[email protected]", | ||
"[email protected]": "patches/[email protected]", | ||
"@melt-ui/[email protected]": "patches/@[email protected]" | ||
} | ||
}, | ||
"prettier": { | ||
|
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 @@ | ||
diff --git a/package.json b/package.json | ||
index 9b7faa1b796b3fd8ac90b3364450f57896d866c0..b852ad9188adb271ad2b3b07b2e61bbb6ff124a0 100644 | ||
--- a/package.json | ||
+++ b/package.json | ||
@@ -7,7 +7,8 @@ | ||
"exports": { | ||
".": { | ||
"types": "./dist/index.d.ts", | ||
- "svelte": "./dist/index.js" | ||
+ "svelte": "./dist/index.js", | ||
+ "import": "./dist/index.js" | ||
}, | ||
"./internal/*": { | ||
"types": "./dist/internal/*/index.d.ts", | ||
@@ -130,7 +131,6 @@ | ||
"svelte": "./dist/index.js", | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
- "type": "module", | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"dev": "vite dev", |
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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 |
---|---|---|
|
@@ -52,3 +52,9 @@ | |
</div> | ||
{/each} | ||
{/await} | ||
|
||
<style> | ||
:global(body) { | ||
overflow: scroll; | ||
} | ||
</style> |
Oops, something went wrong.