Skip to content

Commit 59e1c27

Browse files
committed
feat: add unstable schema renderer
1 parent a431e95 commit 59e1c27

36 files changed

+2797
-275
lines changed

gulpfile.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ function compileTs(modules = false) {
2727
'!src/**/__stories__/**/*',
2828
'!src/**/__tests__/**/*',
2929
'!src/**/__snapshots__/**/*',
30+
'!src/lib/unstable/**/*',
3031
])
3132
.pipe(
3233
replace(/import '.+\.scss';/g, (match) =>
@@ -52,7 +53,12 @@ task('copy-i18n', () => {
5253
});
5354

5455
task('styles-components', () => {
55-
return src(['src/**/*.scss', '!src/**/__stories__/**/*', '!src/stories/**/*'])
56+
return src([
57+
'src/**/*.scss',
58+
'!src/**/__stories__/**/*',
59+
'!src/stories/**/*',
60+
'!src/lib/unstable/**/*',
61+
])
5662
.pipe(sass().on('error', sass.logError))
5763
.pipe(dest(path.resolve(BUILD_DIR, 'esm')))
5864
.pipe(dest(path.resolve(BUILD_DIR, 'cjs')));

0 commit comments

Comments
 (0)