microsoft/vscode-react-native

Public

mirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
d7d9e9d59c499b0ff4c512d0499aad1899bbcbc2

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

gulp_scripts/cleaner.js

21lines · modecode

1const del = require("del");
2
3function clean() {
4 const pathsToDelete = [
5 "src/**/*.js",
6 "src/**/*.js.map",
7 "test/**/*.js",
8 "test/**/*.js.map",
9 "out/",
10 "dist",
11 "!test/resources/sampleReactNativeProject/**/*.js",
12 ".vscode-test/",
13 "nls.*.json",
14 "!test/smoke/**/*",
15 ];
16 return del(pathsToDelete, { force: true });
17}
18
19module.exports = {
20 clean,
21};
22