Skip to content

Commit

Permalink
fix(less): added missing less files in published module
Browse files Browse the repository at this point in the history
  • Loading branch information
mjancarik committed Jun 19, 2018
1 parent e787bc5 commit 4ce31e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var vendors = {
};

var less = [
'./node_modules/ima-ui-atoms/*.less',
'./node_modules/ima-ui-atoms/dist/*.less',
];

/*
Expand Down
5 changes: 3 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ let gulpConfig = {

exports.build = gulp.series(
clean,
compile
compile,
copy
);
exports.copy = copy;

Expand Down Expand Up @@ -86,7 +87,7 @@ function less() {

function copy() {
return gulp
.src(['./src/**/*.less', './package.json', './README.md'])
.src(['./src/**/*.less'])
.pipe(gulp.dest('./dist'));
}

Expand Down

0 comments on commit 4ce31e3

Please sign in to comment.