Skip to content

Commit

Permalink
Update gulp clean list (#838)
Browse files Browse the repository at this point in the history
  • Loading branch information
EzioLi01 authored Jan 11, 2023
1 parent 8fdcd4b commit 8733fcf
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions gulp_scripts/cleaner.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@ const del = require("del");

const clean = () => {
const pathsToDelete = [
"../src/**/*.js",
"src/**/*.js",
"src/**/*.js.map",
"test/**/*.js",
"test/**/*.js.map",
"out/",
"dist",
"!test/resources/testCordovaProject/**/*.js",
"!test/resources/testCordovaProject/**/*.js.map",
".vscode-test/",
"src/**/*nls.*.json",
"nls.*.json",
"!test/smoke/**/*",
];
return del(pathsToDelete, { force: true });
Expand Down

0 comments on commit 8733fcf

Please sign in to comment.