Skip to content

Commit 0152341

Browse files
committed
Updated gulpfile
1 parent 552b0ce commit 0152341

File tree

16 files changed

+8
-30
lines changed

16 files changed

+8
-30
lines changed

components/base/gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ gulp.task('styles', function (done) {
4848
/**
4949
* Build ts and scss files
5050
*/
51-
gulp.task('build', gulp.series('scripts'));
51+
gulp.task('build', gulp.series('scripts', 'styles'));
5252

components/base/tsconfig.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525
"./node_modules/@testing-library"
2626
], // Specify root directory for type declarations.
2727
"types": [
28-
"jest",
29-
"jest-dom",
3028
"node",
3129
"react",
3230
"react-dom"

components/buttons/gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ gulp.task('styles', function (done) {
4848
/**
4949
* Build ts and scss files
5050
*/
51-
gulp.task('build', gulp.series('scripts'));
51+
gulp.task('build', gulp.series('scripts', 'styles'));
5252

components/buttons/tsconfig.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,7 @@
2121
"sourceMap": true, // Generate source maps.
2222
"target": "ES2020", // Set ECMAScript version to ES2020.
2323
"types": [
24-
"jest",
25-
"@testing-library/jest-dom",
2624
"node",
27-
"requirejs",
2825
"react",
2926
"react-dom"
3027
], // Include type declarations.

components/icons/gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ gulp.task('styles', function (done) {
4848
/**
4949
* Build ts and scss files
5050
*/
51-
gulp.task('build', gulp.series('scripts'));
51+
gulp.task('build', gulp.series('scripts', 'styles'));
5252

components/icons/tsconfig.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525
"./node_modules/@testing-library"
2626
], // Specify root directory for type declarations.
2727
"types": [
28-
"jest",
29-
"jest-dom",
3028
"node",
3129
"react",
3230
"react-dom"

components/inputs/gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ gulp.task('styles', function (done) {
4848
/**
4949
* Build ts and scss files
5050
*/
51-
gulp.task('build', gulp.series('scripts'));
51+
gulp.task('build', gulp.series('scripts', 'styles'));
5252

components/inputs/tsconfig.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,7 @@
2121
"sourceMap": true, // Generate source maps.
2222
"target": "ES2020", // Set ECMAScript version to ES2020.
2323
"types": [
24-
"jest",
25-
"@testing-library/jest-dom",
2624
"node",
27-
"requirejs",
2825
"react",
2926
"react-dom"
3027
], // Include type declarations.

components/navigations/gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ gulp.task('styles', function (done) {
4848
/**
4949
* Build ts and scss files
5050
*/
51-
gulp.task('build', gulp.series('scripts'));
51+
gulp.task('build', gulp.series('scripts', 'styles'));
5252

components/navigations/tsconfig.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,7 @@
2121
"sourceMap": true, // Generate source maps.
2222
"target": "ES2020", // Set ECMAScript version to ES2020.
2323
"types": [
24-
"jest",
25-
"@testing-library/jest-dom",
2624
"node",
27-
"requirejs",
2825
"react",
2926
"react-dom"
3027
], // Include type declarations.

0 commit comments

Comments
 (0)