Skip to content

Commit

Permalink
Remove RFCs and Test from packaging (#388)
Browse files Browse the repository at this point in the history
  • Loading branch information
thsmi authored Sep 12, 2020
1 parent 0e95926 commit d651091
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions gulp/gulpfile.wx.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,11 +236,16 @@ function packageLibManageSieve() {
*/
function packageLibSieve() {

const BASE_LIB_DIR_WX = path.join(BASE_DIR_WX, "libs", "libSieve");
const BASE_LIB_DIR_COMMON = path.join(common.BASE_DIR_COMMON, "libSieve");

return common.src2(BASE_LIB_DIR_WX)
.pipe(common.src2(BASE_LIB_DIR_COMMON))
const files = [
"./**",
"!./**/rfc*.txt",
"!./**/tests/",
"!./**/tests/**"
];

return common.src2(BASE_LIB_DIR_COMMON, files)
.pipe(new TransposeMjsToJs())
.pipe(dest(path.join(BUILD_DIR_WX_LIBS, "libSieve")));

Expand Down

0 comments on commit d651091

Please sign in to comment.