Skip to content

Commit

Permalink
add setup job action
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardoperra committed Sep 14, 2024
1 parent 3cc0e36 commit ac17f69
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion apps/website/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
"paths": {
"~/*": ["./src/*"]
}
}
},
}
4 changes: 4 additions & 0 deletions packages/highlight/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ export default defineConfig({
entryFileNames: source => {
const path = normalize(source.facadeModuleId).replaceAll('\\', '/');
if (source.isEntry) {
if (source.name === 'index') {
return '[name].js';
}

const theme = themes.find(_ => path.includes(`lib/themes/${_}`));
if (theme) {
return `lib/themes/${theme}/index.js`
Expand Down
14 changes: 7 additions & 7 deletions pnpm-lock.yaml

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

0 comments on commit ac17f69

Please sign in to comment.