Skip to content

Commit 9ebcb95

Browse files
committed
feat(web): add web generator
1 parent 97b3495 commit 9ebcb95

30 files changed

+4508
-430
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: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,10 @@ 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/client/**/*',
80+
],
7881
languageOptions: { globals: { ...globals.browser } },
7982
},
8083
];

0 commit comments

Comments
 (0)