Skip to content

Commit

Permalink
Merge branch 'main' into feat/general-tokens-get-function
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverschuerch committed Sep 6, 2024
2 parents 34568ba + 2dd2915 commit ae227f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/documentation/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export default {
'@storybook/theming',
'@storybook/addon-links',
],
exclude: ['@swisspost/design-system-styles'],
},
css: {
preprocessorOptions: {
Expand Down
4 changes: 2 additions & 2 deletions packages/styles/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ gulp.task('build-components', () => {
*/
gulp.task('sass:dev', () => {
return gulp
.src('./src/*.scss', { since: gulp.lastRun('sass:dev') })
.src('./src/*.scss')
.pipe(
gulpSass({
includePaths: options.includePaths,
Expand Down Expand Up @@ -183,7 +183,7 @@ gulp.task('sass:tests', () => {
gulp.task(
'watch',
gulp.series('temporarily-copy-token-files', () => {
return gulp.watch('./src/**/*.scss', gulp.series('copy'));
return gulp.watch('./src/**/*.scss', gulp.series('copy', 'sass:dev'));
}),
);

Expand Down

0 comments on commit ae227f3

Please sign in to comment.