Skip to content

fix(deps): move execa to prod #283

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

Merged
merged 1 commit into from
May 10, 2021
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
1 change: 0 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ module.exports = {
'no-await-in-loop': 0,
'node/exports-style': 0,
'node/global-require': 0,
'node/no-unpublished-require': 0,
'node/prefer-global/process': 0,
'no-magic-numbers': 0,
'no-promise-executor-return': 0,
Expand Down
11 changes: 2 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
"chokidar": "^3.5.1",
"commander": "^7.1.0",
"debounce-fn": "^4.0.0",
"execa": "^5.0.0",
"find-cache-dir": "^3.3.1",
"find-up": "^5.0.0",
"fs-extra": "^9.1.0",
Expand All @@ -72,7 +73,6 @@
"@netlify/eslint-config-node": "^2.6.5",
"cpy": "^8.1.1",
"cypress": "^7.0.0",
"execa": "^5.0.0",
"folder-hash": "^4.0.0",
"husky": "^4.3.0",
"jest": "^26.6.1",
Expand Down
1 change: 1 addition & 0 deletions src/lib/helpers/getSortedRedirects.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const getSortedRedirects = (redirects) => {
// We cannot load `next` at the top-level because we validate whether the
// site is using `next` inside `onPreBuild`.
// Sort the "naked" routes
// eslint-disable-next-line node/no-unpublished-require
const { getSortedRoutes } = require('next/dist/next-server/lib/router/utils/sorted-routes')
const sortedRoutes = getSortedRoutes(routesWithoutExtensions)

Expand Down