Skip to content

Commit 3eeac39

Browse files
committed
feat(web): add web generator
1 parent 97b3495 commit 3eeac39

34 files changed

+4766
-490
lines changed

.prettierignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
# Tests files
22
src/generators/api-links/test/fixtures/
33
*.snapshot
4+
5+
# Templates
6+
src/generators/web/template.html
7+
8+
# Output
9+
out/

eslint.config.mjs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,11 @@ export default [
7474
},
7575
},
7676
{
77-
files: ['src/generators/legacy-html/assets/*.js'],
77+
files: [
78+
'src/generators/legacy-html/assets/*.js',
79+
'src/generators/web/hooks/*',
80+
'src/generators/web/components/*',
81+
],
7882
languageOptions: { globals: { ...globals.browser } },
7983
},
8084
];

0 commit comments

Comments
 (0)