microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
test-microbuild1

Branches

Tags

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

Clone

HTTPS

Download ZIP

gulp_scripts/cleaner.js

22lines · 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 "!test/resources/newVersionReactNativeProject/**/*.js",
13 ".vscode-test/",
14 "nls.*.json",
15 "!test/smoke/**/*",
16 ];
17 return del(pathsToDelete, { force: true });
18}
19
20module.exports = {
21 clean,
22};
23