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

Fix some internal peer dependency warnings #7939

Merged
merged 3 commits into from Apr 15, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -39,6 +39,7 @@
"@babel/core": "^7.12.0",
"@khanacademy/flow-to-ts": "^0.5.2",
"@napi-rs/cli": "1.0.4",
"@parcel/babel-register": "2.4.1",
"@types/node": "^15.12.4",
"cross-env": "^7.0.0",
"eslint": "^7.20.0",
Expand Down
3 changes: 3 additions & 0 deletions packages/configs/webextension/package.json
Expand Up @@ -20,5 +20,8 @@
"@parcel/runtime-webextension": "2.4.1",
"@parcel/transformer-raw": "2.4.1",
"@parcel/transformer-webextension": "2.4.1"
},
"peerDependencies": {
"@parcel/core": "^2.4.1"
}
}
1 change: 1 addition & 0 deletions packages/core/parcel/package.json
Expand Up @@ -37,6 +37,7 @@
"v8-compile-cache": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@parcel/babel-register": "2.4.1"
}
}
1 change: 0 additions & 1 deletion packages/core/utils/package.json
Expand Up @@ -42,7 +42,6 @@
"chalk": "^4.1.0"
},
"devDependencies": {
"@babel/plugin-transform-flow-strip-types": "^7.2.0",
"@iarna/toml": "^2.2.0",
"ansi-html-community": "0.0.8",
"clone": "^2.1.1",
Expand Down
3 changes: 3 additions & 0 deletions packages/dev/babel-register/package.json
Expand Up @@ -12,5 +12,8 @@
"@babel/register": "^7.4.4",
"@parcel/babel-preset": "2.4.1",
"resolve": "^1.12.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
}
4 changes: 4 additions & 0 deletions packages/dev/eslint-config-browser/package.json
Expand Up @@ -4,5 +4,9 @@
"version": "2.4.1",
"dependencies": {
"@parcel/eslint-config": "2.4.1"
},
"peerDependencies": {
"@babel/core": "^7.0.0",
"eslint": ">= 7.0.0"
}
}
4 changes: 4 additions & 0 deletions packages/dev/eslint-config/package.json
Expand Up @@ -11,5 +11,9 @@
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-monorepo": "^0.3.2",
"eslint-plugin-react": "^7.22.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0",
"eslint": ">= 7.0.0"
}
}
1 change: 1 addition & 0 deletions packages/dev/eslint-plugin/package.json
Expand Up @@ -8,6 +8,7 @@
"read-pkg-up": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/eslint-parser": "^7.12.1",
"eslint": "^7.20.0"
}
Expand Down
1 change: 1 addition & 0 deletions packages/dev/esm-fuzzer/package.json
Expand Up @@ -6,6 +6,7 @@
"test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules -r @parcel/babel-register index.js"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/generator": "^7.9.0",
"@babel/template": "^7.8.6",
"@babel/types": "^7.9.0",
Expand Down
4 changes: 3 additions & 1 deletion packages/examples/eslint-example/package.json
Expand Up @@ -17,8 +17,10 @@
}
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@parcel/babel-register": "2.4.1",
"@parcel/core": "2.4.1",
"@parcel/validator-eslint": "2.4.1"
"@parcel/validator-eslint": "2.4.1",
"parcel": "2.4.1"
}
}
1 change: 1 addition & 0 deletions packages/examples/html/package.json
Expand Up @@ -12,6 +12,7 @@
"not firefox < 67"
],
"devDependencies": {
"@babel/core": "^7.0.0",
"@parcel/babel-register": "2.4.1",
"parcel": "2.4.1"
},
Expand Down
2 changes: 2 additions & 0 deletions packages/examples/kitchen-sink/package.json
Expand Up @@ -8,8 +8,10 @@
"build": "rm -rf dist && parcel build src/index.html --no-cache"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@parcel/babel-register": "2.4.1",
"@parcel/config-default": "2.4.1",
"@parcel/core": "2.4.1",
"@parcel/optimizer-esbuild": "2.4.1",
"@parcel/reporter-sourcemap-visualiser": "2.4.1",
"parcel": "2.4.1"
Expand Down
1 change: 1 addition & 0 deletions packages/examples/react-refresh/package.json
Expand Up @@ -7,6 +7,7 @@
"start": "parcel src/index.html"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@parcel/babel-register": "2.4.1",
"@parcel/core": "2.4.1"
},
Expand Down
1 change: 1 addition & 0 deletions packages/examples/simple/package.json
Expand Up @@ -8,6 +8,7 @@
"clean-demo": "rm -rf .parcel-cache dist && yarn demo"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@parcel/babel-register": "2.4.1",
"@parcel/core": "2.4.1"
},
Expand Down
2 changes: 2 additions & 0 deletions packages/examples/three/package.json
Expand Up @@ -28,6 +28,8 @@
},
"devDependencies": {
"@parcel/config-default": "2.4.1",
"@parcel/core": "2.4.1",
"@parcel/optimizer-esbuild": "2.4.1",
"parcel": "2.4.1"
}
}
1 change: 1 addition & 0 deletions packages/examples/ts-example/package.json
Expand Up @@ -7,6 +7,7 @@
"demo": "parcel build src/index.ts --no-cache"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@parcel/babel-register": "2.4.1",
"@parcel/core": "2.4.1"
},
Expand Down
1 change: 1 addition & 0 deletions packages/examples/ts-typecheck-example/package.json
Expand Up @@ -17,6 +17,7 @@
}
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@parcel/babel-register": "2.4.1",
"@parcel/core": "2.4.1",
"@parcel/validator-typescript": "2.4.1"
Expand Down
1 change: 1 addition & 0 deletions packages/utils/create-react-app/package.json
Expand Up @@ -31,6 +31,7 @@
"v8-compile-cache": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@parcel/babel-register": "2.4.1"
}
}
4 changes: 2 additions & 2 deletions yarn.lock
Expand Up @@ -43,7 +43,7 @@
semver "^5.4.1"
source-map "^0.5.0"

"@babel/core@^7.12.0", "@babel/core@^7.12.2", "@babel/core@^7.15.5":
"@babel/core@^7.0.0", "@babel/core@^7.12.0", "@babel/core@^7.12.2", "@babel/core@^7.15.5":
version "7.16.7"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.16.7.tgz#db990f931f6d40cb9b87a0dc7d2adc749f1dcbcf"
integrity sha512-aeLaqcqThRNZYmbMqtulsetOQZ/5gbR/dWruUCJcpas4Qoyy+QeagfDsPdMrqwsPRDNxJvBlRiZxxX7THO7qtA==
Expand Down Expand Up @@ -639,7 +639,7 @@
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.12.13"
"@babel/helper-plugin-utils" "^7.12.13"

"@babel/plugin-transform-flow-strip-types@^7.13.0", "@babel/plugin-transform-flow-strip-types@^7.2.0":
"@babel/plugin-transform-flow-strip-types@^7.13.0":
version "7.13.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.13.0.tgz#58177a48c209971e8234e99906cb6bd1122addd3"
integrity sha512-EXAGFMJgSX8gxWD7PZtW/P6M+z74jpx3wm/+9pn+c2dOawPpBkUX7BrfyPvo6ZpXbgRIEuwgwDb/MGlKvu2pOg==
Expand Down