Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/copilot-instructions.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
- Make the most minimal changes necessary to implement any request.
- Prefer Svelte idioms and best practices.
- Maintain organized imports and code style in line with the surrounding context or any changes.
- Use https://www.conventionalcommits.org/en/v1.0.0/ style commit messages.
- Use https://www.conventionalcommits.org/en/v1.0.0/ style commit messages.
- Create commits for each logical change. For example, if you run into an issue with lint, building, or testing that are external to a change, then fix those issues in separate commits before committing your main changes with an explanatory message of why they were necessary.
45 changes: 0 additions & 45 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-livereload": "2.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-svelte": "7.1.0",
"rollup-plugin-terser": "7.0.2",
"sirv-cli": "1.0.6",
Expand Down
4 changes: 2 additions & 2 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { terser } from 'rollup-plugin-terser';
import commonjs from 'rollup-plugin-commonjs';
import pkg from './package.json';
import resolve from 'rollup-plugin-node-resolve';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import svelte from 'rollup-plugin-svelte';

const name = pkg.name
Expand All @@ -17,7 +17,7 @@ export default {
],
plugins: [
svelte(),
resolve({
nodeResolve({
browser: true,
dedupe: (importee) =>
importee === 'svelte' || importee.startsWith('svelte/'),
Expand Down
6 changes: 3 additions & 3 deletions rollup.config.showcase.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import replace from '@rollup/plugin-replace';
import pkg from './package.json';
import commonjs from 'rollup-plugin-commonjs';
import livereload from 'rollup-plugin-livereload';
import resolve from 'rollup-plugin-node-resolve';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import svelte from 'rollup-plugin-svelte';

const production = !process.env.ROLLUP_WATCH;
Expand All @@ -21,8 +21,8 @@ export default {
'process.env.OIDC_POST_LOGOUT_REDIRECT_URI': process.env.OIDC_POST_LOGOUT_REDIRECT_URI || defaultPostLogoutRedirectUri,
'pkg.version': pkg.version
}),
svelte({ dev: true }),
resolve({
svelte({ compilerOptions: { dev: true } }),
nodeResolve({
browser: true,
dedupe: (importee) =>
importee === 'svelte' || importee.startsWith('svelte/'),
Expand Down