Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanatkn committed Oct 4, 2024
1 parent 26c4855 commit f0cf823
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/lib/gro_plugin_moss_css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ export interface Options {

export const gro_plugin_moss_css = ({
include_classes = null,
outfile = 'src/routes/moss.css', // TODO BLOCK what about multiple files using file filters to check where to collect them?
filter_file = null, //(p) => !p.includes('.test.'),
outfile = 'src/routes/moss.css', // TODO maybe support multiple files using file filters to check where to collect them?
filter_file = (p) => !p.includes('.test.') && !p.includes('/test/'),
flush_debounce_delay = FLUSH_DEBOUNCE_DELAY,
}: Options = EMPTY_OBJECT): Plugin => {
const css_classes = new Css_Classes(
Expand Down
2 changes: 1 addition & 1 deletion svelte.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ export default {
kit: {
adapter: adapter(),
paths: {relative: false}, // use root-absolute paths: https://kit.svelte.dev/docs/configuration#paths
alias: {$routes: 'src/routes', $fixtures: 'src/fixtures'},
alias: {$routes: 'src/routes'},
},
};

0 comments on commit f0cf823

Please sign in to comment.