Skip to content

Commit

Permalink
🐛 Do bundle asset gallery into packaged apps
Browse files Browse the repository at this point in the history
  • Loading branch information
CosmoMyzrailGorynych committed Mar 27, 2022
1 parent 306f876 commit 5ea3ee6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -592,6 +592,9 @@ const examples = () => gulp.src('./src/examples/**/*')
const templates = () => gulp.src('./src/projectTemplates/**/*')
.pipe(gulp.dest('./app/templates'));

const gallery = () => gulp.src('./bundledAssets/**/*')
.pipe(gulp.dest('./app/bundledAssets'));

// eslint-disable-next-line valid-jsdoc
/**
* @see https://stackoverflow.com/a/22907134
Expand Down Expand Up @@ -622,7 +625,8 @@ const packages = gulp.series([
docs,
patronsCache,
examples,
templates
templates,
gallery
]),
bakePackages,
// fixSymlinks,
Expand Down

0 comments on commit 5ea3ee6

Please sign in to comment.