Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move rimraf to dev dep #1479

Merged
merged 3 commits into from
May 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -641,6 +641,7 @@
"gulp": "^4.0.2",
"mocha": "^8.2.1",
"recursive-readdir": "^2.2.2",
"rimraf": "3.0.2",
"shelljs": "^0.8.5",
"source-map-support": "^0.5.12",
"ts-node": "^8.10.2",
Expand All @@ -660,7 +661,6 @@
"moment": "^2.29.3",
"nuget": "^2.0.2",
"opn": "^5.5.0",
"rimraf": "2.6.3",
"strip-json-comments": "^3.1.1",
"vscode-azureextensionui": "^0.36.0",
"vscode-jsonrpc": "^6.0.0",
Expand Down
4 changes: 2 additions & 2 deletions test/global.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
* Licensed under the MIT License. See LICENSE.md in the project root for license information.
*--------------------------------------------------------------------------------------------*/

// tslint:disable:no-console no-function-expression no-implicit-dependencies

import * as fse from 'fs-extra';
import * as mocha from 'mocha';
import * as path from 'path';
Expand All @@ -19,8 +21,6 @@ import { useTestSnippets } from './support/TestSnippets';
import { logsFolder } from './testConstants';
import { useTestFunctionMetadata } from "./TestData";

// tslint:disable:no-console no-function-expression

let previousSettings = {
autoDetectJsonTemplates: <boolean | undefined>undefined,
fileAssociations: <{ [key: string]: string }>{}
Expand Down
2 changes: 2 additions & 0 deletions test/support/cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
* Licensed under the MIT License. See License.md in the project root for license information.
*--------------------------------------------------------------------------------------------*/

// tslint:disable: no-implicit-dependencies

import * as fse from 'fs-extra';
import * as os from 'os';
import * as path from 'path';
Expand Down