mirror of
https://github.com/denoland/deno.git
synced 2025-01-03 04:48:52 -05:00
build: remove eslint (#8232)
This commit updates "third_party" submodule to remove "eslint" and its dependencies. In result "tools/package.json" has been removed.
This commit is contained in:
parent
8e914be742
commit
ef641a07b8
3 changed files with 1 additions and 24 deletions
|
@ -1 +1 @@
|
|||
Subproject commit 5ed809d56efa48f9d655b7b5333ccefdc7a1c7d7
|
||||
Subproject commit 5f601d94ad223e69aa171a78ae95b464b9bf1054
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"name": "deno",
|
||||
"private": true,
|
||||
"devDependencies": {
|
||||
"@typescript-eslint/eslint-plugin": "2.5.0",
|
||||
"@typescript-eslint/parser": "2.5.0",
|
||||
"eslint": "5.15.1",
|
||||
"eslint-config-prettier": "4.1.0",
|
||||
"magic-string": "0.25.2",
|
||||
"typescript": "3.6.3"
|
||||
}
|
||||
}
|
|
@ -44,17 +44,6 @@ def python_env(env=None, merge_env=None):
|
|||
return env
|
||||
|
||||
|
||||
# Run Yarn to install JavaScript dependencies.
|
||||
def run_yarn():
|
||||
node_modules_path = os.path.join(third_party_path, "node_modules")
|
||||
# Note to keep the root directory clean, we keep package.json is in tools/.
|
||||
run([
|
||||
"yarn", "install", "--no-lockfile",
|
||||
"--modules-folder=" + node_modules_path
|
||||
],
|
||||
cwd=os.path.join(root_path, "tools"))
|
||||
|
||||
|
||||
# Install python packages with pip.
|
||||
def run_pip():
|
||||
# Install an recent version of pip into a temporary directory. The version
|
||||
|
|
Loading…
Reference in a new issue